/* Global Styles */
:root {
    --primary-color: #8E244D; /* Deep Magenta/Burgundy similar to reference */
    --secondary-color: #D4AF37; /* Gold for luxury accents */
    --text-color: #333333;
    --light-bg: #f9f9f9;
    --white: #ffffff;
    --dark-bg: #1a1a1a;
    --border-color: #e0e0e0;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 15px;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 15px auto 0;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #555;
}

.text-center {
    text-align: center;
}

.section-padding {
    padding: 80px 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.logo img {
    height: 50px;
    margin-right: 10px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: #333;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.nav-cta {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 25px;
}

.nav-cta:hover {
    background-color: #6a1b39;
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    color: #f0f0f0;
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Stats Section */
.stats-bar {
    background-color: var(--light-bg);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
}

.stat-item h3 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Members Section */
.members-section {
    background-color: var(--light-bg);
}

.member-type {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.member-type.reverse {
    direction: rtl;
}

.member-type.reverse .member-content {
    direction: ltr;
}

.member-content ul {
    margin-top: 20px;
}

.member-content li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.member-content li::before {
    content: '✓';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.member-img img {
    border-radius: 10px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Features/Why Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    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;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    fill: var(--primary-color);
}

/* How It Works */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    counter-reset: step;
}

.step-card {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Featured Profiles */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.profile-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-img {
    height: 300px;
    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.1);
}

.profile-info {
    padding: 20px;
}

.profile-name {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.profile-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 10px;
}

/* Locations & Pricing */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.location-card {
    background: var(--light-bg);
    padding: 0;
    padding-bottom: 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border-color);
    overflow: hidden;
    height: 100%;
}

/* Specific styling for text-only cards in Terms section */
#terms .location-card {
    padding: 30px 20px;
}

.location-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
}

.location-card h4, .location-card p {
    padding: 0 20px;
}

#terms .location-card h4, #terms .location-card p {
    padding: 0; /* Reset padding since container has it */
}

.pricing-table {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.pricing-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 300px;
    text-align: center;
    border-top: 5px solid var(--primary-color);
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 20px 0;
}

.plan-name {
    font-size: 1.2rem;
    font-weight: bold;
    text-transform: uppercase;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    font-style: italic;
}

.testimonial-author {
    margin-top: 20px;
    font-weight: bold;
    font-style: normal;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Blog & FAQ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

.blog-card img {
    border-radius: 10px;
    margin-bottom: 15px;
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.faq-question {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 10px;
    cursor: pointer;
    color: #333;
}

/* Footer */
footer {
    background-color: #111;
    color: #aaa;
    padding: 60px 0 20px;
}

.footer-grid {
    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;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 0.9rem;
}

/* Enhanced Pricing Section */
.pricing-section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin: 40px 0 30px;
    color: #2c2c2c;
}

.pricing-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pricing-col {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    border: 1px solid #eee;
    transition: transform 0.3s ease;
}

.pricing-col:hover {
    transform: translateY(-5px);
}

.pricing-header {
    padding: 20px;
    color: white;
    text-align: center;
}

.pricing-header.basic {
    background-color: #8e244d; /* Teal */
}

.pricing-header.popular {
    background-color: #1a1a1a; /* Black */
    position: relative;
}

.pricing-header.best-deal {
    background-color: #8e244d; /* Teal */
}

.pricing-header h3 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.weekly-price {
    font-size: 1.2rem;
    margin-top: 5px;
    opacity: 0.9;
}

.pricing-body {
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.billed-text {
    font-size: 0.95rem;
    color: #9a7706;
    margin-bottom: 20px;
    font-weight: bold;
}

.save-text {
    color: #e91e63;
    font-size: 0.9rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
    color: #555;
    font-size: 0.95rem;
}

.features-list li:last-child {
    border-bottom: none;
}

.btn-dark {
    background-color: #1a1a1a;
    color: white;
    border: none;
    width: 100%;
    border-radius: 5px;
    padding: 15px;
    font-size: 1rem;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-dark:hover {
    background-color: #333;
    color: white;
}

.safety-tips-box {
    margin-top: 50px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; } /* Adjusted font size */
    h2 { font-size: 1.8rem; }
    
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70%;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: transform 0.3s ease-in-out;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }
    
    .about-grid, .member-type {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .locations-grid {
        grid-template-columns: 1fr;
    }

    .member-type.reverse {
        direction: ltr;
    }
    
    .hero {
        min-height: 60vh;
        height: auto;
        padding: 100px 20px 40px; /* Add top padding to prevent header overlap */
    }

    .hero-buttons {
        flex-wrap: wrap;
    }
    
    .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    .pricing-card {
        width: 100%;
    }
}

/* Privacy Page Styles */
.privacy-page-container {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.privacy-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.privacy-content h1 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.privacy-content h2 {
    color: #2c2c2c;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.privacy-content h3 {
    color: #444;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.privacy-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.privacy-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style: disc;
}

.privacy-content li {
    margin-bottom: 10px;
    color: #555;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 0.95rem;
}

.privacy-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 30px 0;
    border: 1px solid #eee;
    border-radius: 8px;
}

.privacy-table th, .privacy-table td {
    border: 1px solid #eee;
    padding: 15px;
    text-align: left;
}

.privacy-table th {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 600;
}

.privacy-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.privacy-img-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 40px 0;
}

.privacy-img-row img {
    width: 32%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.privacy-img-row img:hover {
    transform: scale(1.05);
}

.privacy-cta {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: var(--light-bg);
    border-radius: 10px;
}

.privacy-cta h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .privacy-content {
        padding: 20px;
    }
    
    .privacy-img-row {
        flex-direction: column;
    }
    
    .privacy-img-row img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }

    .privacy-table th, .privacy-table td {
        min-width: 120px;
        font-size: 0.9rem;
        padding: 10px;
    }
}

/* Delhi Dating Page Styles */
.delhi-dating-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/richwomnindia-1545x858.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 50px;
}

.delhi-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.delhi-hero-content p {
    font-size: 1.4rem;
    color: #f0f0f0;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.delhi-dating-content h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.dating-section {
    margin-bottom: 80px;
}

.dating-section.alt-bg {
    background-color: #f9f9f9;
    padding: 60px 20px;
    border-radius: 10px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555;
    font-size: 1.1rem;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
}

.content-wrapper.reverse {
    flex-direction: row-reverse;
}

.text-block {
    flex: 1;
}

.image-block {
    flex: 1;
}

.image-block img {
    width: 100%;
    height: 400px; /* Uniform height */
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.reason-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
}

.reason-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.reason-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.locations-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.location-item {
    background: var(--white);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.location-item h4 {
    color: #2c2c2c;
    margin-bottom: 10px;
}

.dos-donts-wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.list-col {
    flex: 1;
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.list-col h3 {
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.list-col ul {
    list-style: none;
}

.list-col li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.6;
}

.list-col li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

.image-centered {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.image-centered img {
    max-width: 800px;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.cta-box {
    margin-top: 30px;
    text-align: left;
}

.final-cta-section {
    background-color: var(--secondary-color);
    padding: 80px 20px;
    text-align: center;
    color: var(--white);
}

.final-cta-section h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.final-cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

/* Delhi Dating Responsive Styles */
@media (max-width: 992px) {
    .content-wrapper, .content-wrapper.reverse {
        flex-direction: column;
    }

    .image-block img {
        height: 300px;
    }
    
    .dos-donts-wrapper {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .delhi-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .delhi-hero-content p {
        font-size: 1.1rem;
    }
    
    .delhi-dating-hero {
        height: auto;
        min-height: 60vh;
        padding: 120px 20px 60px; /* Increased top padding to prevent header overlap */
        margin-top: 0;
    }

    .section-padding {
        padding: 50px 0;
    }

    .content-wrapper > div {
        width: 100%;
        margin-bottom: 30px;
    }

    .content-wrapper > div:last-child {
        margin-bottom: 0;
    }
    
    .cta-box {
        text-align: center;
        margin-top: 40px;
    }
    
    .image-centered img {
        height: 250px;
    }
    
    .dating-section {
        margin-bottom: 50px;
    }
    
    .delhi-dating-content .text-block {
        padding: 0 15px;
    }

    .delhi-dating-content p {
        line-height: 1.8;
        margin-bottom: 25px;
    }
}
.safety-page-container {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.safety-content {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.safety-content h1 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-size: 2.5rem;
}

.safety-content h2 {
    color: #2c2c2c;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.8rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.safety-content h3 {
    color: #444;
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.safety-content p {
    margin-bottom: 15px;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.safety-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style: disc;
}

.safety-content li {
    margin-bottom: 10px;
    color: #555;
}

/* Sugar Baby Page Styles */

.sugar-baby-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/sugarbabyindia33-1473x744.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: -85px; /* Pull up behind transparent header if needed, but header is sticky white, so maybe 0 */
}

/* Fix for sticky header overlap if header is white background */
.sugar-baby-hero {
    margin-top: 0; 
}

.sb-hero-content {
    max-width: 800px;
    padding: 20px;
    z-index: 2;
}

.sb-hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.sb-hero-content p {
    font-size: 1.3rem;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.sb-section {
    padding: 60px 0;
}

.alt-bg {
    background-color: #f9f9f9;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Reasons List */
.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.reason-item img {
    width: 40%;
    height: 300px;
    object-fit: cover;
}

.reason-text {
    padding: 30px;
    width: 60%;
}

.reason-text h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Steps */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Dos and Donts */
.dos-donts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.dos-col, .donts-col {
    padding: 30px;
    border-radius: 10px;
}

.dos-col {
    background-color: rgba(76, 175, 80, 0.1);
    border-left: 5px solid #4CAF50;
}

.donts-col {
    background-color: rgba(244, 67, 54, 0.1);
    border-left: 5px solid #F44336;
}

.dos-col h3 { color: #2E7D32; }
.donts-col h3 { color: #C62828; }

.dos-col ul, .donts-col ul {
    list-style: none;
    padding-left: 0;
}

.dos-col li, .donts-col li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.dos-col li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
}

.donts-col li::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #F44336;
    font-weight: bold;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Sugar Baby Page Responsive */
@media (max-width: 992px) {
    .reason-item {
        flex-direction: column;
    }
    .reason-item img, .reason-text {
        width: 100%;
    }
    .reason-item img {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .sugar-baby-hero {
        height: auto;
        min-height: 60vh;
        padding: 120px 20px 60px;
    }
    
    .sb-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .dos-donts-grid {
        grid-template-columns: 1fr;
    }
    
    .sb-page-content .text-block {
        padding: 0 15px; /* Apply spacing fix */
    }
    
    .sb-page-content p {
        line-height: 1.8;
        margin-bottom: 25px;
    }
}

/* Common Utilities for Night Club Page */
.bg-light {
    background-color: var(--light-bg);
}

.bg-dark {
    background-color: var(--dark-bg);
    color: var(--white);
}

.bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark p, .bg-dark li {
    color: var(--white);
}

.section-title-wrapper {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.nightclub-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-image: url('images/hero.jpg'); /* Fallback */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.nightclub-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8));
    z-index: 1;
}

.nightclub-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
}

.nightclub-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.nightclub-hero p {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.btn-hero {
    font-size: 1.2rem;
    padding: 15px 40px;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(142, 36, 77, 0.4);
}

.btn-hero:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

/* Introduction Section */
.nightclub-intro {
    padding: 80px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-img-col img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Role Grid */
.nightclub-role {
    padding: 80px 0;
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.role-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border-bottom: 3px solid var(--primary-color);
}

.role-card:hover {
    transform: translateY(-5px);
}

.role-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Expect Section */
.nightclub-expect {
    padding: 80px 0;
}

.expect-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    text-align: center;
}

/* Vibe Guide */
.nightclub-vibe-guide {
    padding: 80px 0;
}

.vibe-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vibe-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.vibe-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    text-align: center;
}

.vibe-header h4 {
    margin: 0;
    color: var(--white);
    font-size: 1.4rem;
}

.vibe-body {
    padding: 25px;
}

.vibe-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.vibe-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.vibe-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 5px;
    font-weight: bold;
}

.vibe-value {
    display: block;
    font-size: 1rem;
    color: #333;
}

/* Top Clubs List */
.nightclub-top-list {
    padding: 80px 0;
}

.club-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.club-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.club-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    background: rgba(255,255,255,0.1);
    border-color: var(--secondary-color);
}

.club-header {
    background: linear-gradient(45deg, var(--primary-color), #6a1b39);
    padding: 15px 20px;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--white);
}

.club-location {
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--secondary-color);
    background: rgba(0,0,0,0.3);
    font-style: italic;
}

.club-body {
    padding: 20px;
}

.club-body p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #ddd;
}

.club-body strong {
    color: var(--white);
}

/* Fashion Tips */
.nightclub-fashion {
    padding: 80px 0;
}

.fashion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.fashion-col {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.fashion-col h3 {
    text-align: center;
    color: var(--primary-color);
    border-bottom: 2px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.fashion-list {
    list-style: none;
}

.fashion-list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
}

.fashion-list li::before {
    content: '•';
    color: var(--primary-color);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* Sugar Baby/Daddy Guide */
.nightclub-guide {
    padding: 80px 0;
}

.guide-box {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 40px;
    border-left: 5px solid var(--primary-color);
}

.guide-box h3 {
    color: var(--primary-color);
}

/* Safety Section */
.nightclub-safety {
    padding: 80px 0;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.safety-item {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.safety-item:hover {
    transform: translateY(-5px);
}

.safety-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

/* Conclusion */
.nightclub-conclusion {
    padding: 80px 0;
    text-align: center;
}

.conclusion-box {
    max-width: 800px;
    margin: 0 auto;
    background: var(--primary-color);
    color: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(142, 36, 77, 0.3);
}

.conclusion-box h2 {
    color: var(--white);
}

.conclusion-box p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.conclusion-box h2::after {
    background: var(--white);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .nightclub-hero h1 {
        font-size: 2.2rem;
    }
    
    .intro-grid, .fashion-grid {
        grid-template-columns: 1fr;
    }
    
    .club-grid {
        grid-template-columns: 1fr;
    }
}

.safety-img-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 40px 0;
}

@media (max-width: 768px) {
    .safety-img-row {
        flex-direction: column;
    }
    .safety-img-row img {
        width: 100%;
        height: auto;
        margin-bottom: 20px;
    }
}

/* Nightclub Page Styles - Enhanced for Landing Page Feel */
.nightclub-hero {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.7)), url('images/hero1.jpg');
    background-size: cover;
    background-position: center;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-bottom: 0;
}

.nightclub-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.nightclub-hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.nightclub-hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.8);
    line-height: 1.1;
    letter-spacing: -1px;
}

.nightclub-hero-content p {
    color: #f0f0f0;
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 300;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.8);
}

.btn-hero {
    background-color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    color: #000;
    font-size: 1.1rem;
    padding: 16px 45px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-hero:hover {
    background-color: transparent;
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Section Common Styles */
.nightclub-intro, .nightclub-role, .nightclub-expect, .nightclub-top-list, .nightclub-tips, .nightclub-safety, .nightclub-vibe-guide, .nightclub-vip, .nightclub-fashion, .nightclub-baby-guide, .nightclub-spotting, .nightclub-cta-section {
    padding: 100px 0;
}

.bg-light { background-color: #f8f9fa; }
.bg-dark { background-color: #121212; color: #e0e0e0; }

.section-title-wrapper {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.bg-dark .section-title-wrapper h2 { color: var(--secondary-color); }
.bg-dark .section-title-wrapper p { color: #aaa; }

/* Intro Section */
.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.intro-text-col p {
    font-size: 1.15rem;
    margin-bottom: 25px;
    color: #444;
}

.intro-img-col img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.intro-img-col img:hover {
    transform: scale(1.02);
}

/* Role Cards */
.role-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.role-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.4s ease;
    border-bottom: 3px solid transparent;
}

.role-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-bottom-color: var(--secondary-color);
}

.role-card h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 20px;
}

/* Expect Content */
.expect-content {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.expect-content::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 150px;
    color: rgba(142, 36, 77, 0.05);
    font-family: serif;
}

/* Vibe Guide */
.vibe-guide-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.vibe-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.vibe-card:hover {
    transform: translateY(-10px);
}

.vibe-header {
    background: var(--primary-color);
    padding: 25px;
    text-align: center;
}

.vibe-header h4 {
    color: white;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.vibe-body {
    padding: 30px;
}

.vibe-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.vibe-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.vibe-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.vibe-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

/* Top 6 Clubs Grid */
.club-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.club-card {
    background: #1e1e1e;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #333;
    display: flex;
    flex-direction: column;
}

.club-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border-color: var(--secondary-color);
}

.club-header {
    padding: 25px;
    background: linear-gradient(45deg, var(--secondary-color), #f9d976);
    color: #000;
    font-weight: 800;
    font-size: 1.5rem;
    text-align: center;
    letter-spacing: 0.5px;
}

.club-location {
    padding: 12px 20px;
    background: #000;
    color: var(--secondary-color);
    font-size: 0.9rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #333;
}

.club-body {
    padding: 30px;
    color: #ccc;
    flex-grow: 1;
}

.club-body p {
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1rem;
}

.club-body strong {
    color: white;
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

/* Fashion Tips */
.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.tips-col {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.tips-col h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 15px;
}

/* Safety Grid */
.safety-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.safety-item {
    background: white;
    padding: 35px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-left: 5px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.safety-item:hover {
    transform: translateX(10px);
}

.safety-item h4 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .nightclub-hero-content h1 { font-size: 2.8rem; }
    .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .tips-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nightclub-hero { height: 70vh; }
    .nightclub-hero-content h1 { font-size: 2.2rem; }
    .section-title-wrapper h2 { font-size: 2rem; }
    .role-grid, .club-grid, .vibe-guide-grid, .safety-grid { grid-template-columns: 1fr; }
    .nightclub-intro, .nightclub-role, .nightclub-expect, .nightclub-top-list { padding: 60px 0; }
}

/* Gay Chat Page Styles */

.gc-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/sugardaffd5-1393x750.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
}

.gc-hero-content {
    max-width: 900px;
    padding: 20px;
    z-index: 2;
}

.gc-hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.gc-hero-content p {
    font-size: 1.3rem;
    color: #f0f0f0;
    margin-bottom: 30px;
}

.gc-section {
    padding: 60px 0;
}

/* Roles Grid */
.roles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.role-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.role-card:hover {
    transform: translateY(-10px);
}

.role-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.role-card h3 {
    color: var(--primary-color);
    margin: 20px 0 10px;
    font-size: 1.5rem;
}

.role-card p {
    padding: 0 20px 30px;
    color: var(--text-color);
}

/* Steps List */
.steps-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.step-item {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step-content h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.benefits-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.benefits-list li::before {
    content: '★';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    top: 2px;
}

/* Safety Card */
.safety-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border-top: 4px solid var(--secondary-color);
}

.safety-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

/* Gay Chat Responsive */
@media (max-width: 992px) {
    .gc-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .safety-grid {
        grid-template-columns: 1fr; /* Override existing grid for mobile if needed */
    }
}

@media (max-width: 768px) {
    .gc-hero {
        height: auto;
        min-height: 60vh;
        padding: 120px 20px 60px;
    }
    
    .gc-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .gc-section {
        padding: 40px 0;
    }
    
    .steps-list {
        grid-template-columns: 1fr;
    }
    
    /* Ensure content wrapper stacking works (inherited from global styles but good to check) */
    .content-wrapper, .content-wrapper.reverse {
        flex-direction: column;
    }
    
    .text-block, .image-block {
        width: 100%;
    }
    
    .gc-page-content .text-block {
        padding: 0 15px; /* Added spacing for better readability on mobile */
    }

    .gc-page-content p {
        line-height: 1.8; /* Improved line height for readability */
        margin-bottom: 25px; /* Increased paragraph spacing */
        font-size: 1.05rem; /* Slightly larger text for mobile */
    }

    .image-block {
        margin-top: 30px;
    }
    
    .content-wrapper.reverse .image-block {
        margin-top: 0;
        margin-bottom: 30px;
    }
}

/* About Page Styles */

.about-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/sugarmommychat.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
}

.about-hero-content {
    max-width: 800px;
    padding: 20px;
    z-index: 2;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-hero-content p {
    font-size: 1.4rem;
    color: #f0f0f0;
}

.about-section {
    padding: 60px 0;
}

/* History Content */
.history-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.history-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Features Grid (About) */
.features-grid-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item-about {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-item-about:hover {
    transform: translateY(-5px);
}

.feature-item-about img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 3px solid var(--primary-color);
}

.feature-item-about h3 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

/* Services List */
.services-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.services-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    font-size: 1.1rem;
}

.services-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Stories Grid */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.story-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.story-img img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.story-text {
    padding: 25px;
}

.story-text h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.story-text p {
    font-style: italic;
    color: #555;
}

/* Guidelines */
.guidelines-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.guidelines-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.guidelines-list li {
    margin-bottom: 15px;
    padding-left: 20px;
    border-left: 4px solid var(--primary-color);
}

.guidelines-list strong {
    color: var(--secondary-color);
}

/* About Page Responsive */
@media (max-width: 992px) {
    .about-hero-content h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .about-hero {
        height: auto;
        min-height: 50vh;
        padding: 120px 20px 60px;
    }
    
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-section {
        padding: 40px 0;
    }
    
    .about-page-content .text-block {
        padding: 0 15px;
    }

    .about-page-content p, .history-content p {
        line-height: 1.8;
        margin-bottom: 25px;
        font-size: 1.05rem;
    }
    
    .guidelines-content {
        padding: 25px;
    }
    
    /* Reuse content wrapper stacking logic from global styles */
}

/* Blog Detail Page Styles (Dos and Donts) */

.blog-hero {
    position: relative;
    height: 50vh; /* Reduced height for blog feel */
    min-height: 350px;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/sugarbabymeanig-756x438.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 0;
}

.blog-hero-content {
    max-width: 900px;
    padding: 20px;
    z-index: 2;
}

.blog-hero-content h1 {
    font-size: 2.8rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.blog-hero-content p {
    font-size: 1.3rem;
    color: #f0f0f0;
}

/* Breadcrumb Styles */
.breadcrumb-nav {
    max-width: 800px;
    margin: 20px auto 40px; /* Increased margin */
    font-size: 1rem; /* Increased font size */
    background: #f8f8f8; /* Light background */
    padding: 15px 20px; /* Added padding */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 5px rgba(0,0,0,0.05); /* Subtle shadow */
}

.breadcrumb {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    color: #555; /* Darker text */
    font-weight: 500;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '›'; /* Changed separator */
    margin: 0 12px;
    color: #999;
    font-size: 1.2rem;
    line-height: 1;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}

.breadcrumb a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* First Date Blog Specific Styles */
.first-date-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.first-date-table th {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    text-align: left;
}

.first-date-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    background: white;
}

.first-date-table tr:last-child td {
    border-bottom: none;
}

.first-date-table tr:nth-child(even) td {
    background: #fcfcfc;
}

.tip-card {
    background: #fff;
    border-left: 4px solid var(--secondary-color);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-radius: 0 8px 8px 0;
}

.tip-card h3 {
    color: var(--secondary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* Tip Number Badge */
.tip-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: bold;
}

/* First Gift Ideas Blog Specific Styles */
.gift-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
    overflow: hidden;
}

.gift-table th {
    background: #333; /* Darker header for luxury feel */
    color: white;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.gift-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    background: white;
    color: #555;
}

.gift-table tr:last-child td {
    border-bottom: none;
}

.gift-table tr:nth-child(even) td {
    background: #f9f9f9;
}

.gift-ideas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin: 40px 0;
}

.gift-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gift-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    border-color: var(--secondary-color);
}

.gift-card h3 {
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.3rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
}

.gift-card p {
    margin-bottom: 0;
    flex-grow: 1;
    font-size: 0.95rem;
    color: #666;
}

@media (max-width: 768px) {
    .gift-ideas-grid {
        grid-template-columns: 1fr;
    }
    
    .gift-table {
        display: block;
        overflow-x: auto;
    }
}
    color: var(--secondary-color);
    text-decoration: underline;
}

.breadcrumb li:last-child {
    color: #333;
    font-weight: 500;
}

/* Blog Content Layout */
.blog-post-body {
    padding-bottom: 60px;
}

.content-wrapper.single-column {
    display: block;
    max-width: 800px;
    margin: 0 auto;
}

.text-block.full-width-text {
    width: 100%;
}

.text-block.full-width-text h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin: 40px 0 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.text-block.full-width-text h2:first-child {
    margin-top: 0;
}

.text-block.full-width-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #444;
    font-size: 1.1rem;
}

/* Inline Images */
.blog-inline-image {
    margin: 40px 0;
    text-align: center;
}

.blog-inline-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* Simple List Styles for Do's and Don'ts */
.blog-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.blog-list li {
    margin-bottom: 30px;
    padding-left: 0;
    position: relative;
}

.blog-list h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.blog-list p {
    margin-left: 0; /* Reset */
}

/* Do's Specific */
.dos-list h3 {
    color: #2e7d32;
}

.dos-list h3::before {
    content: '✓';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #e8f5e9;
    color: #2e7d32;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 14px;
    flex-shrink: 0;
}

/* Don'ts Specific */
.donts-list-simple h3 {
    color: #c62828;
}

.donts-list-simple h3::before {
    content: '✕';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background-color: #ffebee;
    color: #c62828;
    border-radius: 50%;
    margin-right: 12px;
    font-size: 14px;
    flex-shrink: 0;
}

/* CTA Wrapper */
.cta-wrapper {
    margin-top: 40px;
    text-align: center;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
}

/* Bio Samples Grid */
.bio-samples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.bio-sample-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 4px solid var(--primary-color);
    transition: transform 0.3s ease;
}

.bio-sample-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Blog Index Page Styles */
.blog-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/blog.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.blog-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: #f0f0f0;
}

.blog-index-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.blog-index-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-index-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.blog-card-img-link {
    display: block;
    overflow: hidden;
    height: 220px;
}

.blog-index-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-index-card:hover img {
    transform: scale(1.05);
}

.blog-index-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-index-card-content h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-index-card-content h2 a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-index-card-content h2 a:hover {
    color: var(--primary-color);
}

.blog-index-card-content p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.read-more-btn {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.read-more-btn:hover {
    text-decoration: underline;
}

/* Responsive Blog Index */
@media (max-width: 992px) {
    .blog-index-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-index-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-hero {
        padding: 60px 0;
    }
    
    .blog-hero h1 {
        font-size: 2.2rem;
    }
}

.bio-sample-card h4 {
    margin-top: 0;
    margin-bottom: 15px;
    color: #333;
    font-size: 1.2rem;
}

.bio-sample-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Blog Page Responsive */
@media (max-width: 992px) {
    .blog-hero-content h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        height: auto;
        min-height: 50vh;
        padding: 120px 20px 60px;
    }
    
    .blog-hero-content h1 {
        font-size: 2rem;
    }
    
    .blog-section {
        padding: 40px 0;
    }
    
    .blog-page-content .text-block {
        padding: 0 15px;
    }
}