/* Global Styles */
:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #C5A028;
    --dark-bg: #121212;
    --card-bg: #1E1E1E;
    --text-light: #F5F5F5;
    --text-gray: #B0B0B0;
    --darker-bg: #0a0a0a;
    --font-main: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Header & Navigation */
header {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-gold);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.btn-primary {
    background-color: var(--primary-gold);
    color: #000;
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-primary:hover {
    background-color: var(--text-light);
    color: #000;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('./images/hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content {
    max-width: 900px;
    padding: 20px;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin: 30px;
    font-weight: 300;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #fff;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-outline:hover {
    background-color: var(--primary-gold);
    color: #000;
}

/* Intro Section */
.intro {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.intro-text h2 {
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 2rem;
}

.intro-text p {
    margin-bottom: 15px;
    color: var(--text-gray);
}

.intro-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

/* Features */
.features {
    padding: 80px 0;
    background-color: var(--card-bg);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--dark-bg);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    fill: var(--primary-gold);
}

.feature-card h3 {
    color: var(--text-light);
    margin-bottom: 15px;
}

/* Profiles */
.profiles {
    padding: 80px 0;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.profile-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.profile-img {
    height: 400px;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.profile-card:hover .profile-img img {
    transform: scale(1.05);
}

.profile-info {
    padding: 20px;
}

.profile-name {
    font-size: 1.2rem;
    color: var(--primary-gold);
    margin-bottom: 5px;
    display: flex;
    justify-content: space-between;
}

.profile-location {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.profile-bio {
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 15px;
}

/* How It Works */
.steps {
    padding: 80px 0;
    background-color: var(--card-bg);
}

.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.step-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: bold;
    color: rgba(212, 175, 55, 0.1);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step-content {
    position: relative;
    z-index: 1;
    padding-top: 20px;
}

.step-content h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
}

/* Cities */
.cities {
    padding: 80px 0;
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.city-card {
    position: relative;
    height: 250px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.city-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.city-card:hover img {
    transform: scale(1.1);
}

.city-name {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text-light);
}

.city-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 5px;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background-color: var(--card-bg);
}

.pricing-table {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.price-card {
    background-color: var(--dark-bg);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.price-card.featured {
    border-color: var(--primary-gold);
    transform: scale(1.05);
}

.price-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

.price-amount {
    font-size: 2.5rem;
    color: var(--primary-gold);
    font-weight: bold;
    margin-bottom: 10px;
}

.price-list {
    margin: 30px 0;
    text-align: left;
}

.price-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.price-list li::before {
    content: "✓";
    color: var(--primary-gold);
    position: absolute;
    left: 0;
}

/* Reviews */
.reviews {
    padding: 80px 0;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 8px;
    font-style: italic;
    border-left: 3px solid var(--primary-gold);
}

.review-author {
    margin-top: 20px;
    font-weight: bold;
    color: var(--primary-gold);
    font-style: normal;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background-color: var(--card-bg);
}

.faq-item {
    margin-bottom: 20px;
    background-color: var(--dark-bg);
    padding: 20px;
    border-radius: 4px;
}

.faq-question {
    font-weight: bold;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

/* Blog */
.blog {
    padding: 80px 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    margin-bottom: 10px;
    color: var(--text-light);
}

.blog-content p {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

/* Footer */
footer {
    background-color: #000;
    padding: 50px 0 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Mobile Navigation Toggle */
.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--primary-gold);
    height: 2px;
    width: 25px;
    position: relative;
    transition: all 0.3s ease-in-out;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before { bottom: 8px; }
.nav-toggle-label span::after { top: 8px; }

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem; /* Reduced from 2.2rem to prevent overflow */
        line-height: 1.3;
        word-wrap: break-word;
        padding: 0 10px;
    }
    
    .hero {
        padding-top: 110px; /* Fix H1 covered by header */
        height: auto; /* Allow content to expand */
        min-height: 100vh;
        padding-bottom: 50px;
    }

    .hero.hero-cta {
        min-height: 60vh;
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .hero-cta h2 {
        font-size: 1.8rem; /* Reduced from 2rem */
        word-wrap: break-word;
        padding: 0 10px;
    }

    .nav-toggle-label {
        display: block;
        z-index: 1001; /* Above everything */
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(18, 18, 18, 0.98);
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
        border-bottom: 1px solid var(--primary-gold);
        z-index: 1000;
    }
    
    .nav-links a {
        padding: 15px;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    #nav-toggle:checked ~ .nav-links {
        display: flex;
    }

    .intro-grid, .sugar-row {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    
    .sugar-row .sugar-image, 
    .sugar-row .sugar-content {
        width: 100%;
    }
    
    .sugar-row {
        flex-direction: column-reverse; /* Image on top on mobile? Or standard column */
    }

    /* Fix Pricing Split on Mobile */
    .pricing-split {
        flex-direction: column;
    }
    .pricing-column {
        width: 100%;
        min-width: auto;
    }
}

/* Sugar Categories - Row Layout */
.sugar-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 15px;
}

.sugar-row:last-child {
    margin-bottom: 0;
}

.sugar-row.reverse {
    flex-direction: row-reverse;
}

.sugar-content {
    flex: 1;
}

.sugar-image {
    flex: 1;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.sugar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.sugar-row:hover .sugar-image img {
    transform: scale(1.05);
}

/* Updated Pricing Section */
.pricing-split {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.pricing-column {
    flex: 1;
    min-width: 300px;
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}

.pricing-column h3 {
    color: var(--primary-gold);
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0,0,0,0.2);
    border-radius: 5px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.pricing-item:hover {
    border-color: var(--primary-gold);
}

.pricing-duration {
    font-size: 1.1rem;
    color: var(--text-light);
}

.pricing-cost {
    font-size: 1.3rem;
    color: var(--primary-gold);
    font-weight: bold;
}

.pricing-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.payment-icons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.payment-tag {
    background: rgba(255,255,255,0.1);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Utilities */
.bg-card { background-color: var(--card-bg) !important; }
.bg-dark { background-color: var(--dark-bg) !important; }
.bg-darker { background-color: var(--darker-bg) !important; }
.object-cover { object-fit: cover; }
.mt-30 { margin-top: 30px; }

/* Sugar Categories */
.intro-grid.large-gap { gap: 40px; }

.sugar-card {
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid transparent;
}

.sugar-card h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.sugar-card.daddy {  }

.sugar-card.baby {  }
.sugar-card.baby h2 { color: #ff69b4; }

.sugar-card.mommy {  }
.sugar-card.mommy h2 { color: #9d4edd; }

/* Pricing Details */
.price-period {
    font-size: 1rem;
    color: var(--text-gray);
}

.payment-methods {
    text-align: center;
    margin-top: 20px;
    color: var(--text-gray);
}

/* Final CTA */
.hero.hero-cta {
    height: 60vh;
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('./images/sugardaffd5-1393x750.jpg');
    background-size: cover;
    background-position: center;
    padding-top: 0;
}

.hero-cta h2 {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.hero-cta p {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./images/indiandating459-828x678.jpg') no-repeat center center/cover;
    height: 50vh;
}

.about-content-wrapper {
    padding-top: 50px;
    padding-bottom: 50px;
}

.about-section {
    margin-bottom: 80px;
}

.padding-block {
    padding: 60px 20px;
    border-radius: 8px;
}

.services-list {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
}

.service-item {
    flex: 1;
    min-width: 300px;
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 20px;
}

.service-item h3 {
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.service-item p {
    padding: 0 20px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    color: var(--text-light);
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    border: 1px solid rgba(255,255,255,0.05);
    padding: 20px;
    text-align: center;
}

.comparison-table th {
    background-color: rgba(212, 175, 55, 0.15);
    color: var(--primary-gold);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(255,255,255,0.02);
}

.comparison-table tr:hover {
    background-color: rgba(255,255,255,0.05);
}

@media (max-width: 768px) {
    .about-hero {
        height: 40vh;
    }
    .comparison-table {
        font-size: 0.8rem;
    }
    .comparison-table th, .comparison-table td {
        padding: 10px 5px;
    }
    .chennai-comparison-table,
    .kolkata-comparison-table,
    .ahmedabad-comparison-table,
    .review-feature-table,
    .delhi-comparison-table,
    .meaning-comparison-table,
    .millionaire-comparison-table {
        min-width: 100%;
    }
    .services-list {
        flex-direction: column;
    }
    .service-item {
        width: 100%;
    }
}


/* Testimonials */
.testimonial-card {
    text-align: left;
}
.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
}
.testimonial-author {
    margin-top: 20px;
    color: var(--primary-gold);
    font-size: 1.1rem;
}


/* Pay Page Styles */
.pay-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('./images/sugarbabyindia33-1473x744.png') no-repeat center center/cover;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.pay-section {
    padding: 60px 0;
}

.pay-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.pay-content-wrapper p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

.pay-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.pay-text p {
    margin-bottom: 20px;
    color: var(--text-gray);
}

.pay-image img {
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    width: 100%;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

.benefit-card h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.benefit-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Steps Process */
.steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 40px auto 0;
}

.step-item {
    display: flex;
    gap: 20px;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-gold);
    line-height: 1;
    min-width: 60px;
}

.step-content h3 {
    margin-bottom: 15px;
    color: var(--text-light);
}

.step-content p {
    color: var(--text-gray);
}

.step-item.wide {
    display: block;
}

.step-item.wide .step-number {
    margin-bottom: 20px;
    display: block;
}

/* Pricing Table */
.pricing-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.pricing-column {
    background: var(--dark-bg);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #333;
}

.pricing-header {
    padding: 20px;
    text-align: center;
    color: #fff;
}

.pricing-header.baby-theme {
    background: #E91E63; /* Pink for Baby */
}

.pricing-header.daddy-theme {
    background: var(--primary-gold); /* Gold for Daddy */
    color: #000;
}

.pricing-list {
    padding: 20px;
}

.pricing-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #333;
    flex-wrap: wrap;
}

.pricing-list li:last-child {
    border-bottom: none;
}

.pricing-list .price {
    font-weight: bold;
    color: var(--text-light);
}

.pricing-list .save {
    font-size: 0.8rem;
    background: green;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 10px;
}

.payment-methods {
    list-style: disc inside;
    margin: 20px 0;
    color: var(--text-gray);
}

.payment-note-box {
    background: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--primary-gold);
    padding: 15px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.custom-list {
    list-style: decimal inside;
    margin: 20px 0;
    color: var(--text-gray);
}

.custom-list li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .pay-grid {
        grid-template-columns: 1fr;
    }
    .pricing-container {
        grid-template-columns: 1fr;
    }
    .step-item {
        flex-direction: column;
    }
}


.pricing-list li.best-value {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--primary-gold);
}

/* Pay Page Styles */
.pay-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./images/perfectsugardaddyindia-925x534.jpg') no-repeat center center/cover;
    height: 40vh;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.pricing-highlight-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.pricing-highlight-list li {
    background: rgba(255, 215, 0, 0.1);
    padding: 10px 15px;
    margin-bottom: 10px;
    border-left: 3px solid var(--primary-gold);
    border-radius: 4px;
}

/* Benefits Grid */
.pay-benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

/* Pricing Cards */
.pricing-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    width: 300px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-gold);
}

.pricing-card.popular {
    border: 2px solid var(--primary-gold);
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.1), var(--bg-card));
    transform: scale(1.05);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.popular::before {
    content: 'BEST VALUE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: #000;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.plan-name {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.plan-price {
    font-size: 2rem;
    color: var(--primary-gold);
    font-weight: bold;
    margin-bottom: 15px;
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Pay Steps */
.pay-step {
    margin-bottom: 25px;
    padding-left: 20px;
    border-left: 2px solid var(--primary-gold);
}

.pay-step h3 {
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* Notes Grid */
.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.note-item h3 {
    color: var(--text-light);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .pricing-card.popular {
        transform: scale(1);
        margin-bottom: 20px;
    }
    .pricing-card {
        width: 100%;
    }
}


/* Safety Page Styles */
.safety-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./images/videochatindian-651x586.jpg') no-repeat center center/cover;
    height: 40vh;
}

.safety-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.safety-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    color: var(--text-gray);
}

.safety-list li::before {
    content: '';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-weight: bold;
}

.safety-content {
    max-width: 900px;
    margin: 0 auto;
}

.safety-content p {
    margin-bottom: 20px;
    color: var(--text-gray);
    line-height: 1.8;
}

.safety-box {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-gold);
}

.safety-box.warning {
    border-color: #ff4757;
    background: rgba(255, 71, 87, 0.1);
}

.safety-box h3 {
    color: var(--text-light);
    margin-bottom: 15px;
}

.safety-box ul {
    list-style: none;
    padding: 0;
}

.safety-box ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: var(--text-light);
}

.safety-box ul li::before {
    content: '';
    color: var(--primary-gold);
    position: absolute;
    left: 0;
}

.warning-box {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    margin: 30px 0;
}

.warning-box h3 {
    color: #ff4757;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.warning-box ul {
    text-align: left;
    display: inline-block;
    margin-top: 20px;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.safety-card {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
}

.safety-card h3 {
    color: var(--primary-gold);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.safety-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.action-steps {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--primary-gold);
}

.action-steps h3 {
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.action-steps ol {
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.action-steps ol li {
    margin-bottom: 10px;
}

.safety-photo-grid {
    margin-top: 30px;
}

.safety-photo {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.safety-cta {
    text-align: center;
    margin-top: 30px;
}

.mumbai-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./images/sugardaffd5-1393x750.jpg') no-repeat center center/cover;
    height: 40vh;
}

.mumbai-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.mumbai-list {
    list-style: disc;
    margin-left: 20px;
    color: var(--text-gray);
}

.mumbai-list li {
    margin-bottom: 10px;
}

.mumbai-faq-list {
    max-width: 900px;
    margin: 20px auto 0;
}

.mumbai-faq-item {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.08);
}

.mumbai-faq-item h3 {
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.mumbai-faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.mumbai-cta {
    text-align: center;
    margin-top: 30px;
}

.delhi-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./images/dlhiindia-696x277.jpg') no-repeat center center/cover;
    height: auto;
    min-height: 50vh;
    padding-bottom: 40px;
}

.delhi-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.delhi-list {
    list-style: disc;
    margin-left: 20px;
    color: var(--text-gray);
}

.delhi-list li {
    margin-bottom: 10px;
}

.delhi-faq-list {
    max-width: 900px;
    margin: 20px auto 0;
}

.delhi-faq-item {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 20px 25px;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.08);
}

.delhi-faq-item h3 {
    color: var(--primary-gold);
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.delhi-faq-item p {
    color: var(--text-gray);
    line-height: 1.7;
}

.delhi-cta {
    text-align: center;
    margin-top: 30px;
}

.bangalore-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./images/sugarmommabanlore-696x279.jpg') no-repeat center center/cover;
    height: auto;
    min-height: 50vh;
    padding-bottom: 40px;
}

.bangalore-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.bangalore-list {
    list-style: disc;
    margin-left: 20px;
    color: var(--text-gray);
}

.bangalore-list li {
    margin-bottom: 10px;
}

.bangalore-cta {
    text-align: center;
    margin-top: 30px;
}

.hyderabad-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./images/hyderbands-696x264.jpg') no-repeat center center/cover;
    height: auto;
    min-height: 50vh;
    padding-bottom: 40px;
}

.hyderabad-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.hyderabad-list {
    list-style: disc;
    margin-left: 20px;
    color: var(--text-gray);
}

.hyderabad-list li {
    margin-bottom: 10px;
}

.hyderabad-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
}

.hyderabad-cta {
    text-align: center;
    margin-top: 30px;
}

.pune-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./images/punneindia-696x307.jpg') no-repeat center center/cover;
    height: auto;
    min-height: 50vh;
    padding-bottom: 40px;
}

.pune-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.pune-list {
    list-style: disc;
    margin-left: 20px;
    color: var(--text-gray);
}

.pune-list li {
    margin-bottom: 10px;
}

.pune-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
}

.pune-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.pune-gallery-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.pune-gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.pune-cta {
    text-align: center;
    margin-top: 30px;
}

.blog-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./images/richfdgs-522x521.jpg') no-repeat center center/cover;
    height: auto;
    min-height: 60vh;
    padding-bottom: 40px;
}

.blog-page .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.blog-content-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
}

.blog-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.blog-list {
    list-style: disc;
    margin-left: 20px;
    color: var(--text-gray);
}

.blog-list li {
    margin-bottom: 10px;
}

.blog-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
}

.blog-card-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.blog-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.blog-gallery-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.blog-gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.blog-cta {
    text-align: center;
    margin-top: 30px;
}

.millionaire-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./images/richmanss-538x926.jpg') no-repeat center center/cover;
    height: auto;
    min-height: 60vh;
    padding-bottom: 40px;
}

.millionaire-page .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.millionaire-content-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
}

.millionaire-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.millionaire-list {
    list-style: disc;
    margin-left: 20px;
    color: var(--text-gray);
}

.millionaire-list li {
    margin-bottom: 10px;
}

.millionaire-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
}

.millionaire-comparison-table {
    min-width: 700px;
}

.millionaire-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.millionaire-gallery-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.millionaire-gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.millionaire-cta {
    text-align: center;
    margin-top: 30px;
}

.meaning-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./images/sugarbabymeanig-756x438.jpg') no-repeat center center/cover;
    height: auto;
    min-height: 50vh;
    padding-bottom: 40px;
}

.meaning-page .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.meaning-content-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
}

.meaning-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.meaning-list {
    list-style: disc;
    margin-left: 20px;
    color: var(--text-gray);
}

.meaning-list li {
    margin-bottom: 10px;
}

.meaning-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
}

.meaning-comparison-table {
    min-width: 700px;
}

.meaning-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.meaning-gallery-item {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.meaning-gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.meaning-cta {
    text-align: center;
    margin-top: 30px;
}

.ahmedabad-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./images/ahmedabad00-675x378.jpg') no-repeat center center/cover;
    height: auto;
    min-height: 50vh;
    padding-bottom: 40px;
}

.ahmedabad-page .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.ahmedabad-content-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
}

.ahmedabad-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.ahmedabad-list {
    list-style: disc;
    margin-left: 20px;
    color: var(--text-gray);
}

.ahmedabad-list li {
    margin-bottom: 10px;
}

.ahmedabad-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
}

.ahmedabad-comparison-table {
    min-width: 700px;
}

.ahmedabad-cta {
    text-align: center;
    margin-top: 30px;
}

.chennai-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./images/chennai-696x261.jpg') no-repeat center center/cover;
    height: auto;
    min-height: 50vh;
    padding-bottom: 40px;
}

.chennai-page .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.chennai-content-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
}

.chennai-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.chennai-list {
    list-style: disc;
    margin-left: 20px;
    color: var(--text-gray);
}

.chennai-list li {
    margin-bottom: 10px;
}

.chennai-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
}

.chennai-comparison-table {
    min-width: 700px;
}

.chennai-cta {
    text-align: center;
    margin-top: 30px;
}

.kolkata-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./images/kolkata10-657x421.jpg') no-repeat center center/cover;
    height: auto;
    min-height: 50vh;
    padding-bottom: 40px;
}

.kolkata-page .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.kolkata-content-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
}

.kolkata-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.kolkata-list {
    list-style: disc;
    margin-left: 20px;
    color: var(--text-gray);
}

.kolkata-list li {
    margin-bottom: 10px;
}

.kolkata-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
}

.kolkata-comparison-table {
    min-width: 700px;
}

.kolkata-cta {
    text-align: center;
    margin-top: 30px;
}

.review-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('./images/perfectsugardaddyindia-925x534.jpg') no-repeat center center/cover;
    height: auto;
    min-height: 50vh;
    padding-bottom: 40px;
}

.review-page .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.review-content-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
}

.review-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 10px;
}

.review-list {
    list-style: disc;
    margin-left: 20px;
    color: var(--text-gray);
}

.review-list li {
    margin-bottom: 10px;
}

.review-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
}

.review-feature-table {
    min-width: 700px;
}

.review-platform-title {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-gold);
    font-size: 1.3rem;
}

.review-user {
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-light);
}

.review-rating {
    font-size: 0.95rem;
    color: var(--primary-gold);
    margin-bottom: 10px;
}

.review-summary-box {
    margin-top: 40px;
    background: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.05);
}

.review-summary-box h3 {
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.review-cta {
    text-align: center;
    margin-top: 30px;
}

.delhi-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 10px;
}

.delhi-comparison-table {
    min-width: 700px;
}

.delhi-table-image {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.delhi-table-photo {
    width: 100%;
    max-width: 520px;
    height: 340px;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .delhi-table-photo {
        height: 260px;
    }
}

