/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.nav-logo:hover {
    text-decoration: none;
    color: inherit;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover {
    color: #ffd700;
    background-color: rgba(255,255,255,0.1);
}

.cta-nav {
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white !important;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.cta-nav:hover {
    transform: translateY(-2px);
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    margin-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: nowrap;
}

@media (max-width: 767px) {
    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;

    min-width: 120px;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    margin: 20px 0;
}

.hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
}

.hero-benefits {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.benefit-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 767px) {
    .hero-benefits {
        gap: 10px;
    }
    
    .benefit-text {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}

.hero-guarantee {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Generic Bullet List (used across informational pages) */
.bullet-list {
    list-style: none;
    margin: 1.5rem 0 0;
    padding: 0;
    display: grid;
    gap: 0.8rem;
}

.bullet-list li {
    position: relative;
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-left: 5px solid #667eea;
    border-radius: 12px;
    padding: 1rem 1.25rem 1rem 2.5rem;
    color: #555;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.bullet-list li::before {
    content: '✓';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 4px 10px rgba(102,126,234,0.3);
}

.bullet-list li strong {
    color: #333;
}

@media (max-width: 768px) {
    .bullet-list li {
        padding: 0.9rem 1rem 0.9rem 2.2rem;
    }
}

/* Numbered Steps (flow-style) */
.numbered-steps {
    counter-reset: step;
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.numbered-steps .step {
    position: relative;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 1.25rem 1rem 3.2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.numbered-steps .step::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* Vertical Timeline (notices) */
.timeline {
    position: relative;
    margin-top: 1.5rem;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.timeline-item {
    position: relative;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 18px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #667eea;
    box-shadow: 0 0 0 4px rgba(102,126,234,0.2);
}

/* Checklist Grid (troubleshooting / best practices) */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.check-card {
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    padding: 1rem 1.25rem 1rem 2.5rem;
    position: relative;
    transition: transform 0.2s ease;
}

.check-card::before {
    content: '✔';
    position: absolute;
    left: 12px;
    top: 14px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.check-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    background: #ffffff;
}

/* City Callouts */
.city-callouts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.callout-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.callout-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

.callout-content {
    padding: 1rem 1.25rem;
}

.callout-content h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.callout-content p {
    color: #666;
    margin-bottom: 0.75rem;
}

.callout-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

.callout-link:hover {
    text-decoration: underline;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    font-weight: 400;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    border-radius: 2px;
}

/* Unique Features Section */
.unique-features {
    padding: 80px 0;
    background-color: white;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-icon {
    margin-bottom: 1rem;
    order: 1;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #333;
    font-weight: 600;
    margin-bottom: 1rem;
    order: 2;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
    order: 3;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.features-list {
    display: grid;
    gap: 3rem;
}

.feature-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.feature-card:nth-child(even) {
    grid-template-columns: 1fr 300px;
}

.feature-card:nth-child(even) .feature-img {
    order: 2;
}

.feature-card:nth-child(even) .feature-content {
    order: 1;
}

.feature-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.feature-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
}

/* Quality Services Section */
.quality-services {
    padding: 80px 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #667eea;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.service-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* Success Stories Section */
.success-stories {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-left: 4px solid #ff6b6b;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.story-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-content {
    padding: 2rem;
}

.story-content p {
    font-style: italic;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.story-author strong {
    color: #333;
    font-size: 1.1rem;
}

.story-author span {
    color: #888;
    font-size: 0.9rem;
    display: block;
    margin-top: 0.5rem;
}

.story-rating {
    color: #ff6b6b;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 10px;
}

.success-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    padding: 40px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    flex-wrap: wrap;
}

.success-stats .stat-item {
    text-align: center;
    color: white;
    min-width: 150px;
    background: transparent;
    border: none;
}

.success-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    color: white;
}

.success-stats .stat-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: flex-start;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

.about-intro {
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.about-mission,
.about-features,
.about-commitment {
    margin-bottom: 2rem;
}

.about-mission h3,
.about-features h3,
.about-commitment h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-mission p,
.about-commitment p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.about-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-features li {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.1rem;
}

.about-features li strong {
    color: #333;
    font-weight: 600;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.stat-item h3 {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #666;
    font-weight: 500;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

/* Member Types Section */
.member-types {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

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

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.type-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.type-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.3rem;
    color: #333;
}

.type-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Top Cities Section */
.top-cities {
    padding: 80px 0;
    background-color: white;
}

.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.city-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.city-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.city-card a:hover {
    text-decoration: none;
    color: inherit;
}

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

.city-card h3 {
    padding: 1rem;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 0.5rem;
}

.city-card p {
    padding: 0 1rem 1.5rem;
    color: #666;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: #f8f9fa;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0;
}

/* Index.html specific FAQ styles - black text */
body.index-page .faq-question h3 {
    color: #000;
}

body.index-page .faq-answer p {
    color: #000;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #667eea;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Join Now Section */
.join-now {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.join-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.join-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.join-benefits-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.benefit-button {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    border: 2px solid transparent;
}

.benefit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
    background: linear-gradient(135deg, #ee5a24, #ff6b6b);
    border-color: rgba(255, 255, 255, 0.3);
}

.benefit-button .benefit-icon {
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Legacy styles for backward compatibility */
.join-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}

.benefit-item .benefit-icon {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.1rem;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 50%;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.benefit-icon {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

.join-cta {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    margin-bottom: 1rem;
}

.join-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.join-subtext {
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

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

.footer-logo-text {
    font-size: 1.5rem;
    font-weight: bold;
}

.footer-section p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #3498db;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 2rem;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        grid-template-columns: 1fr;
    }

    .feature-card:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .feature-card:nth-child(even) .feature-img {
        order: 0;
    }

    .feature-card:nth-child(even) .feature-content {
        order: 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
        text-align: center;
    }
    
    .about-mission h3,
    .about-features h3,
    .about-commitment h3 {
        font-size: 1.2rem;
    }
    
    .about-intro {
        font-size: 1rem;
    }
    
    .about-features li {
        padding-left: 1.2rem;
    }

    .join-content h2 {
        font-size: 2rem;
    }

    .join-content p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .types-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .feature-item {
        padding: 1.5rem;
    }

    .feature-content {
        padding: 1.5rem;
    }

    .service-item {
        padding: 1.5rem;
    }

    .story-content {
        padding: 1.5rem;
    }

    .faq-question {
        padding: 1rem;
    }

    .faq-answer p {
        padding: 0 1rem 1rem;
    }

    .join-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .cities-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.story-card,
.type-card,
.city-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
.nav-link:focus,
.hero-cta:focus,
.join-cta:focus {
    outline: 2px solid #ffd700;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .header,
    .nav-toggle,
    .join-now,
    .footer {
        display: none;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    .hero {
        margin-top: 0;
        padding: 20px 0;
    }

    .section-title {
        font-size: 18pt;
        margin-bottom: 20px;
    }
}

/* Threesome Finder Page Specific Styles */
.threesome-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.threesome-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.threesome-hero .container {
    position: relative;
    z-index: 1001;
}

/* PC Layout for Threesome Hero */
@media (min-width: 768px) {
    .threesome-hero .hero-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
        text-align: left;
        position: relative;
        z-index: 1002;
    }
    
    .threesome-hero .hero-stats {
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
    
    .threesome-hero .hero-benefits {
        justify-content: flex-start;
    }
}

/* Mobile Layout for Threesome Hero */
@media (max-width: 767px) {
    .threesome-hero .hero-container {
        text-align: center;
        position: relative;
        z-index: 1002;
    }
    
    .threesome-hero .hero-content {
        max-width: 800px;
        margin: 0 auto;
    }
    
    .threesome-hero .hero-image {
        margin-top: 40px;
    }
    
    .threesome-hero .hero-img {
        max-width: 600px;
        margin: 0 auto;
        display: block;
    }
}

.threesome-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    flex-wrap: nowrap;
}

@media (max-width: 767px) {
    .threesome-hero .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
}

.threesome-hero .stat-item {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    min-width: 120px;
    transition: transform 0.3s ease;
}

.threesome-hero .stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.25);
}

.threesome-hero .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 5px;
}

.threesome-hero .stat-label {
    display: block;
    font-size: 0.9rem;
    color: #ffffff;
    opacity: 0.9;
}

.threesome-types {
    padding: 80px 0;
    background: #f8f9fa;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.type-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
}

.type-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.type-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.type-stats {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    display: inline-block;
}

.safety-consent {
    padding: 80px 0;
    background: white;
}

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

.safety-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border-left: 5px solid #667eea;
    transition: transform 0.3s ease;
}

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

.safety-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.safety-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.safety-card p {
    color: #666;
    line-height: 1.6;
}

.platform-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.features-list {
    margin-top: 50px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 30px;
}

.feature-img {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    object-fit: cover;
    flex-shrink: 0;
}

.feature-content h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.feature-content ul {
    list-style: none;
    padding: 0;
}

.feature-content li {
    color: #667eea;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.feature-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
}

.cultural-context {
    padding: 80px 0;
    background: white;
}

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

.context-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    padding: 30px;
    transition: transform 0.3s ease;
}

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

.context-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.context-card p {
    line-height: 1.6;
    opacity: 0.9;
}

.success-stories {
    padding: 80px 0;
    background: #f8f9fa;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.story-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.story-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.story-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.story-author strong {
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.story-author span {
    color: #888;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.story-rating {
    color: #667eea;
    font-weight: bold;
}

.success-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.health-safety {
    padding: 80px 0;
    background: white;
}

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

.health-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    border-top: 5px solid #28a745;
    transition: transform 0.3s ease;
}

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

.health-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.health-card p {
    color: #666;
    line-height: 1.6;
}

/* Comprehensive Guide Styles */
.comprehensive-guide {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.guide-sections {
    margin-top: 50px;
}

.guide-section {
    background: white;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guide-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.guide-section h3 {
    color: #6c5ce7;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    border-bottom: 3px solid #6c5ce7;
    padding-bottom: 15px;
}

.guide-content p {
    color: #2d3436;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.guide-tips {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border-radius: 10px;
    padding: 25px;
    margin-top: 25px;
}

.guide-tips li {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.guide-tips li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00b894;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Community Impact Styles */
.community-impact {
    background: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
    border-radius: 15px;
    padding: 40px;
    margin-top: 40px;
    color: white;
}

.community-impact h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
}

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

.impact-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-item strong {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #00b894;
}

.impact-item p {
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* Enhanced CTA Styles */
.cta-section {
    background: linear-gradient(135deg, #2d3436 0%, #636e72 100%);
    padding: 80px 0;
    color: white;
}

.cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.cta-feature {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-icon {
    background: #00b894;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
}

.trust-indicators {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.trust-item strong {
    display: block;
    font-size: 1.5rem;
    color: #00b894;
    margin-bottom: 5px;
}

/* What is a Threesome Section */
.what-is-threesome {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.threesome-definition {
    max-width: 1000px;
    margin: 0 auto;
}

.definition-intro {
    font-size: 1.2rem;
    color: #555;
    text-align: center;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.definition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.definition-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
}

.definition-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.definition-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.definition-item p {
    color: #666;
    line-height: 1.6;
}

.threesome-types-overview {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.threesome-types-overview h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 600;
}

.types-list {
    list-style: none;
    padding: 0;
}

.types-list li {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
    color: #555;
    line-height: 1.6;
}

.types-list li:last-child {
    border-bottom: none;
}

.types-list strong {
    color: #667eea;
    font-weight: 600;
}

/* Gay Clubs in India Section */
.gay-clubs-india {
    padding: 80px 0;
    background-color: white;
}

.clubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.club-card {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.club-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.club-header {
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #667eea;
    padding-bottom: 1rem;
}

.club-header h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.club-location {
    color: #667eea;
    font-weight: 500;
    font-size: 0.95rem;
}

.club-details p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.club-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.feature-tag {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.club-info {
    background: rgba(102, 126, 234, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #667eea;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.club-info strong {
    color: #667eea;
}

.clubs-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 2rem;
}

.clubs-disclaimer p {
    margin: 0;
    color: #856404;
    line-height: 1.6;
}

.clubs-disclaimer strong {
    color: #b8860b;
}

/* Lifestyle Section Styles */
.lifestyle-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.lifestyle-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lifestyle-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.lifestyle-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.lifestyle-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 600;
}

.lifestyle-item p {
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* Tips Section Styles */
.tips-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.tips-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 50px;
    margin-top: 50px;
}

.tips-for-daddies,
.tips-for-younger {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tips-for-daddies h3,
.tips-for-younger h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: #fff;
    font-weight: 700;
}

.tip-item {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.tip-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.tip-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
}

.tip-item p {
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: white;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    flex: 1;
    padding-right: 20px;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6b6b;
    transition: transform 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 25px 30px;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.7;
    color: #e0e0e0;
    font-size: 0.95rem;
}

/* Gay Daddy Page Specific Styles */
.gay-daddy-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    margin-top: 80px;
    padding-top: 40px;
}

.gay-daddy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.gay-daddy-hero .hero-container {
    position: relative;
    z-index: 2;
}

.gay-daddy-hero .hero-title {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .gay-daddy-hero .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }
}

@media (max-width: 480px) {
    .gay-daddy-hero .hero-title {
        font-size: 2rem;
        line-height: 1.4;
    }
}

.gay-daddy-hero .hero-description {
    color: #f8f9fa;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

.gay-daddy-hero .stat-number {
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gay-daddy-hero .stat-label {
    color: #e9ecef;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gay-daddy-hero .benefit-text {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.gay-daddy-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.gay-daddy-features .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gay-daddy-features .feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gay-daddy-features .feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gay-daddy-features .feature-card .feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.gay-daddy-features .feature-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.gay-daddy-features .feature-card p {
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

.personalities-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.personality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 50px;
}

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

.personality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.personality-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.personality-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.3rem;
    color: #333;
}

.personality-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.6;
}

/* Gay Daddy Personalities Section */
.gay-daddy-personalities {
    padding: 80px 0;
    background: #f8f9fa;
}

.personalities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 50px;
}

.gay-daddy-personalities .personality-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gay-daddy-personalities .personality-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.gay-daddy-personalities .personality-card .personality-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.gay-daddy-personalities .personality-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
    padding: 0;
}

.gay-daddy-personalities .personality-card p {
    color: #495057;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

.india-context {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    position: relative;
}

.india-context::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.2);
    z-index: 1;
}

.india-context .container {
    position: relative;
    z-index: 2;
}

.context-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.context-text h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.context-text h4 {
    color: #ffffff;
    margin: 25px 0 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.4);
}

.context-text p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.india-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.safety {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.safety-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.safety-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.safety-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.safety-card h3 {
    color: #1a252f;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.safety-card p {
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

.success-stories {
    padding: 80px 0;
    background: white;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.story-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.story-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-content {
    padding: 30px;
}

.story-content h3 {
    color: #1a252f;
    margin-bottom: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

.story-content p {
    color: #495057;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.story-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.detail {
    background: #667eea;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
}

.community {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.stat-card {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.stat-card h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #ff6b6b;
}

.stat-card p {
    margin: 0;
    font-size: 1.1rem;
    color: #000000;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.community-features {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.feature-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 20px;
}

.feature-icon {
    font-size: 1.5rem;
    margin-top: 5px;
}

.feature-text h4 {
    color: white;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-text p {
    color: #e0e0e0;
    line-height: 1.6;
    margin: 0;
}

/* Community Section Styles */
.community {
    padding: 80px 0;
    background: #f8f9fa;
}

.community-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: flex-start;
}

.community .feature-text h4 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.1rem;
    font-weight: 600;
}

.community .feature-text p {
    color: #495057;
    line-height: 1.6;
    margin: 0;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
}

.cta-content > p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #f0f0f0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.benefit-icon {
    color: #4ade80;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #f5576c;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.cta-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-note {
    color: #ffffff;
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

/* Mobile FAQ Styles */
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
        padding-right: 15px;
    }
    
    /* Gay Daddy Mobile Styles */
    .gay-daddy-hero {
        min-height: 80vh;
        padding: 40px 0;
    }
    
    .context-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .features-grid,
    .personality-grid,
    .safety-grid,
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card,
    .safety-card {
        padding: 30px 20px;
    }
    
    .personality-content,
    .story-content {
        padding: 20px;
    }
    
    .community-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-card {
        padding: 20px 15px;
    }
    
    .stat-card h3 {
        font-size: 2rem;
    }
    
    .community-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .community-stats {
        order: 1;
    }
    
    .community-features {
        padding: 30px 20px;
        order: 2;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefit-item {
        padding: 12px 15px;
    }
    
    .cta-button {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
    
    .faq-item.active .faq-answer {
        padding: 20px;
    }
    
    .faq-answer p {
        font-size: 0.9rem;
    }
}

/* Responsive Design for Threesome Page */
@media (max-width: 768px) {
    .types-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-img {
        width: 100px;
        height: 100px;
    }
    
    .success-stats {
        gap: 30px;
    }
    
    .threesome-hero {
        padding: 100px 0 60px;
    }
    
    .guide-section {
        padding: 25px;
        margin-bottom: 20px;
    }
    
    .guide-section h3 {
        font-size: 1.5rem;
    }
    
    .guide-content p {
        font-size: 1rem;
    }
    
    .community-impact {
        padding: 25px;
    }
    
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .trust-indicators {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    /* Lifestyle Section Mobile */
    .lifestyle-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .lifestyle-item {
        padding: 25px 20px;
    }
    
    .lifestyle-icon {
        font-size: 2.5rem;
    }
    
    /* Tips Section Mobile */
    .tips-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tips-for-daddies,
    .tips-for-younger {
        padding: 30px 20px;
    }
    
    .tips-for-daddies h3,
    .tips-for-younger h3 {
        font-size: 1.5rem;
    }
    
    .tip-item h4 {
        font-size: 1.1rem;
    }
}

/* Gay Daddy Page Specific Styles */
.gay-daddy-hero .hero-stats .stat-number,
.gay-daddy-hero .hero-stats .stat-label {
    color: #000 !important;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Senior Gay Page Specific Styles */
.senior-gay-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.senior-gay-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.senior-gay-hero .hero-stats .stat-number {
    color: #000000 !important;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

.senior-gay-hero .hero-stats .stat-label {
    color: #000000 !important;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
}

/* Senior Gay Community Statistics - Single Row Layout */
.senior-gay-page .stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.senior-gay-page .stat-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.senior-gay-page .stat-card:hover {
    transform: translateY(-5px);
}

.senior-gay-page .stat-card h3 {
    color: #667eea;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.senior-gay-page .stat-card p {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

/* Platform Features Section - White Text */
.platform-features-section p {
    color: #ffffff !important;
}

/* Senior Types Section */
.senior-types-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

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

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

.type-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.type-image {
    height: 200px;
    overflow: hidden;
}

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

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

.type-content {
    padding: 25px;
}

.type-content h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.type-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.type-features {
    list-style: none;
    padding: 0;
}

.type-features li {
    color: #555;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.type-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

/* Safety & Wisdom Section */
.safety-wisdom-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.safety-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

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

.safety-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.safety-card h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.safety-card p {
    color: #666;
    line-height: 1.6;
}

/* Platform Features Section */
.platform-features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.feature-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-item p {
    line-height: 1.6;
    opacity: 0.9;
}

/* Cultural Context Section */
.cultural-context-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cultural-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.cultural-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #667eea;
}

.cultural-card h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.cultural-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Health & Wellness Section */
.health-wellness-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

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

.wellness-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wellness-card h3 {
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.wellness-card p {
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.wellness-card ul {
    list-style: none;
    padding: 0;
}

.wellness-card li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    opacity: 0.9;
}

.wellness-card li:before {
    content: '+';
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
}

/* Senior Venues Section */
.senior-venues-india {
    padding: 80px 0;
    background: #f8f9fa;
}

.venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

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

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

.venue-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
}

.venue-header h3 {
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.venue-location {
    opacity: 0.9;
    font-size: 0.9rem;
}

.venue-details {
    padding: 25px;
}

.venue-details p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.venue-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-tag {
    background: #e3f2fd;
    color: #1976d2;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.venue-info {
    color: #555;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
}

.venues-disclaimer {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 10px;
    padding: 20px;
    margin-top: 40px;
    color: #856404;
}

/* Bisexual Page Hero Stats Color Fix */
.bisexual-hero .hero-stats .stat-number,
.bisexual-hero .hero-stats .stat-label {
    color: #333 !important;
}

/* Modern Bisexual Man Page Styles */
.modern-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.modern-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.gradient-text {
    background: linear-gradient(45deg, #ffd700, #ffeb3b, #fff176);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.enhanced-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.modern-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffeb3b, #fff176);
}

.modern-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.gradient-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #ffd700, #ffeb3b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.modern-features {
    background: #ffffff;
    color: #333;
    padding: 80px 0;
    position: relative;
}

.modern-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.modern-feature-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.modern-feature-card:hover {
    transform: translateY(-5px);
    background: #ffffff;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-color: #667eea;
}

.feature-image-container {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
}

.feature-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.modern-feature-card:hover .feature-image-container img {
    transform: scale(1.05);
}

.modern-support {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
    padding: 80px 0;
    position: relative;
}

.modern-categories {
    margin-top: 50px;
}

.modern-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.modern-tab {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modern-tab.active,
.modern-tab:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffd700;
    color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.modern-stats {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.modern-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>') repeat;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.stats-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.stats-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.modern-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.modern-stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modern-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ffd700, #ffeb3b);
    border-radius: 0 0 10px 10px;
}

.modern-stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ffd700, #ffeb3b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.gradient-number {
    background: linear-gradient(45deg, #ffd700, #ffeb3b, #fff176);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 2.5rem;
    display: block;
    margin-bottom: 10px;
}

/* Responsive Design for Senior Gay Page */
@media (max-width: 768px) {
    .types-grid,
    .safety-grid,
    .features-grid,
    .cultural-grid,
    .wellness-grid,
    .venues-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .type-card,
    .safety-card,
    .feature-item,
    .cultural-card,
    .wellness-card,
    .venue-card {
        margin-bottom: 20px;
    }
    
    .senior-gay-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .senior-gay-hero .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .gradient-text {
        font-size: 2.2rem;
    }
    
    .modern-grid,
    .modern-features-grid,
    .modern-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .modern-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .modern-tab {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* White text utility class */
.white-text {
    color: white !important;
}

/* Black text utility class */
.black-text {
    color: black !important;
}

/* Community Impact Layout - 3 per row */
.modern-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .modern-stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .modern-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Enhanced Understanding Section Styles */
.understanding-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 0;
    position: relative;
}

.understanding-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.understanding-section .container {
    position: relative;
    z-index: 2;
}

.understanding-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.understanding-section .section-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.understanding-section .enhanced-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.understanding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.understanding-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.understanding-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.understanding-card .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.understanding-card .understanding-icon {
    font-size: 2rem;
    margin-right: 1rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.understanding-card h3 {
    color: #333;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.understanding-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

@media (max-width: 768px) {
    .understanding-section .section-title {
        font-size: 2rem;
    }
    
    .understanding-section .enhanced-intro {
        font-size: 1.1rem;
    }
    
    .understanding-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Enhanced Community Support Section Styles */
.community-support-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 5rem 0;
    position: relative;
}

.community-support-section .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.community-support-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.community-support-section .enhanced-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

.modern-categories {
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 3rem;
}

.modern-tabs {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    overflow-x: auto;
}

.modern-tab {
    flex: 1;
    padding: 1.5rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #666;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.modern-tab:hover {
    background: #e9ecef;
    color: #333;
}

.modern-tab.active {
    background: white;
    color: #667eea;
    border-bottom-color: #667eea;
}

.tab-content {
    display: none;
    padding: 3rem;
}

.tab-content.active {
    display: block;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.support-item {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.support-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.support-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    background: white;
}

.support-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.support-item h3 {
    color: #333;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.support-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.support-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-item li {
    color: #555;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.support-item li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
}

.modern-stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 3rem;
    margin-top: 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.modern-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.modern-stats .stats-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.modern-stats .stats-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.modern-stats .stats-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
}

.modern-stats-grid {
    position: relative;
    z-index: 2;
}

.modern-stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.modern-stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.modern-stat-card .stat-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.modern-stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
}

.modern-stat-card .stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
}

.modern-stat-card .stat-description {
    font-size: 0.9rem;
    opacity: 0.8;
    color: #fff;
}

@media (max-width: 768px) {
    .community-support-section .section-title {
        font-size: 2.2rem;
    }
    
    .community-support-section .enhanced-intro {
        font-size: 1.1rem;
    }
    
    .modern-tabs {
        flex-direction: column;
    }
    
    .modern-tab {
        text-align: left;
        padding: 1rem 1.5rem;
    }
    
    .tab-content {
        padding: 2rem 1.5rem;
    }
    
    .support-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .support-item {
        padding: 2rem;
    }
    
    .modern-stats {
        padding: 2rem;
    }
    
    .modern-stats .stats-title {
        font-size: 1.8rem;
    }
}

/* Success Stories Page Styles */
.success-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0 80px;
    text-align: center;
}

.success-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.success-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.success-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.success-hero .stat-item {
    text-align: center;
}

.success-hero .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #000;
}

.success-hero .stat-label {
    font-size: 1rem;
    opacity: 0.9;
    color: #000;
}

/* Success Stories Section */
.success-stories-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.story-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.couple-info h3 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.location {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.3rem;
}

.relationship-type {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
}

.story-duration {
    background: #e8f5e8;
    color: #2d5a2d;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.story-content p {
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.story-highlight {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 1rem;
    margin: 1.5rem 0;
    border-radius: 0 8px 8px 0;
}

.story-highlight strong {
    color: #856404;
}

.story-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.tag {
    background: #e9ecef;
    color: #495057;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
}

/* Success Tips Section */
.success-tips-section {
    padding: 80px 0;
    background: white;
}

.tips-container {
    margin-top: 3rem;
}

.tips-category {
    margin-bottom: 4rem;
}

.tips-category h3 {
    color: #333;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.tips-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.tip-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    background: white;
}

.tip-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.tip-card h4 {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.tip-card p {
    color: #666;
    line-height: 1.5;
    font-size: 0.9rem;
}

/* Community Impact Section */
.community-impact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.15);
}

.stat-card .stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-card .stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-card .stat-description {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Join Community Section */
.join-community-section {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.join-content h2 {
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.join-content p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.join-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 1.2rem;
}

.join-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
}

.btn-secondary:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
}

/* Success Stories Responsive Design */
@media (max-width: 768px) {
    .success-hero h1 {
        font-size: 2rem;
    }
    
    .success-hero .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .story-header {
        flex-direction: column;
        gap: 1rem;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .join-features {
        grid-template-columns: 1fr;
    }
    
    .join-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .success-hero .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .story-card {
        padding: 1.5rem;
    }
    
    .tip-card {
        padding: 1rem;
    }
}

/* Privacy Page Styles */
.privacy-page {
    background: #f8f9fa;
    min-height: 100vh;
    padding-top: 80px;
}

.privacy-header {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    margin-bottom: 60px;
}

.privacy-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.last-updated {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-section {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.privacy-section h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 3px solid #667eea;
    padding-bottom: 10px;
}

.privacy-section h3 {
    color: #555;
    font-size: 1.4rem;
    margin: 25px 0 15px 0;
    font-weight: 600;
}

.privacy-section p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: #666;
}

.privacy-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.privacy-section li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #666;
}

.contact-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    font-weight: 500;
}

.privacy-footer {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 60px;
}

.policy-links {
    margin-top: 20px;
}

.policy-links a {
    display: inline-block;
    margin: 0 15px;
    padding: 10px 20px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.policy-links a:hover {
    background: #5a6fd8;
}

@media (max-width: 768px) {
    .privacy-title {
        font-size: 2.2rem;
    }
    
    .privacy-section {
        padding: 25px 20px;
    }
    
    .privacy-section h2 {
        font-size: 1.6rem;
    }
    
    .policy-links a {
        display: block;
        margin: 10px 0;
    }
}

/* Terms Page Styles */
.terms-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 2rem 0;
}

.terms-header {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.terms-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-align: center;
}

.terms-header .last-updated {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.terms-header .intro {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #444;
    max-width: 800px;
    margin: 0 auto;
}

.terms-content {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 3rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.terms-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.terms-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
}

.terms-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #444;
    margin: 2rem 0 1rem 0;
}

.terms-section p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.terms-section ul {
    margin: 1rem 0 1.5rem 2rem;
}

.terms-section li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0.8rem;
    position: relative;
}

.terms-section li::before {
    content: "•";
    color: #667eea;
    font-weight: bold;
    position: absolute;
    left: -1.5rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.terms-footer {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 2rem;
    margin-top: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Terms Page */
@media (max-width: 768px) {
    .terms-page {
        padding: 1rem 0;
    }
    
    .terms-header {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .terms-title {
        font-size: 2.2rem;
    }
    
    .terms-header .intro {
        font-size: 1.1rem;
    }
    
    .terms-content {
        padding: 2rem 1.5rem;
    }
    
    .terms-section h2 {
        font-size: 1.6rem;
    }
    
    .terms-section h3 {
        font-size: 1.3rem;
    }
    
    .terms-section ul {
        margin-left: 1.5rem;
    }
}

/* Delhi Page Styles */
.delhi-gay-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.delhi-hero {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9)), url('images/dlhiindia-696x277.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: white;
}

.delhi-hero .hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #fff, #f0f8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.delhi-hero .hero-description {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #f0f8ff;
}

.delhi-scene {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.delhi-scene .section-title {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.delhi-scene .scene-intro {
    font-size: 1.2rem;
    color: #34495e;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.scene-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.highlight-item h3 {
    font-size: 1.4rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 600;
}

.highlight-item p {
    color: #555;
    line-height: 1.6;
}

.delhi-areas {
    padding: 80px 0;
    background: white;
}

.delhi-areas .section-title {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.delhi-areas .section-intro {
    font-size: 1.2rem;
    color: #34495e;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.area-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.area-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.area-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.area-card h3 {
    font-size: 1.5rem;
    color: #667eea;
    margin: 1.5rem 1.5rem 1rem;
    font-weight: 600;
}

.area-card p {
    color: #555;
    line-height: 1.6;
    margin: 0 1.5rem 1.5rem;
    font-size: 1rem;
}

.area-stats {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 600;
    text-align: center;
}

.delhi-dating-culture {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.delhi-dating-culture .section-title {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.delhi-dating-culture .section-intro {
    font-size: 1.2rem;
    color: #34495e;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.culture-aspects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.aspect-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.aspect-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.aspect-card h3 {
    font-size: 1.4rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 600;
}

.aspect-card p {
    color: #555;
    line-height: 1.6;
}

.dating-tips {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin-top: 2rem;
}

.dating-tips h3 {
    font-size: 1.8rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    line-height: 1.6;
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list strong {
    color: #667eea;
    font-weight: 600;
}

.success-stories {
    padding: 80px 0;
    background: white;
}

.success-stories .section-title {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.success-stories .section-intro {
    font-size: 1.2rem;
    color: #34495e;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.story-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.story-content {
    padding: 2rem;
}

.story-content h3 {
    font-size: 1.4rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 600;
}

.story-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.story-location {
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}

.safety-privacy {
    padding: 80px 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.safety-privacy .section-title {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.safety-privacy .section-intro {
    font-size: 1.2rem;
    color: #34495e;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.safety-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.safety-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.safety-card h3 {
    font-size: 1.4rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 600;
}

.safety-card p {
    color: #555;
    line-height: 1.6;
}

.join-delhi {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.join-delhi h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.join-delhi > .container > .join-content > p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    color: #f0f8ff;
}

/* Delhi Lifestyle Section */
.delhi-lifestyle {
    padding: 80px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.delhi-lifestyle .section-title {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.delhi-lifestyle .section-intro {
    font-size: 1.2rem;
    color: #34495e;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.lifestyle-aspects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.lifestyle-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

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

.lifestyle-card h3 {
    font-size: 1.5rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 600;
}

.lifestyle-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.lifestyle-card ul {
    list-style: none;
    padding: 0;
}

.lifestyle-card li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.lifestyle-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
}

/* Delhi Events Section */
.delhi-events {
    padding: 80px 0;
    background: white;
}

.delhi-events .section-title {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.delhi-events .section-intro {
    font-size: 1.2rem;
    color: #34495e;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.event-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.event-category:hover {
    transform: translateY(-5px);
}

.event-category h3 {
    font-size: 1.4rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 600;
}

.event-category > p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-details {
    margin-top: 1rem;
}

.event-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
    line-height: 1.5;
}

.event-item:last-child {
    border-bottom: none;
}

.event-item strong {
    color: #667eea;
    font-weight: 600;
}

/* Delhi Dating Tips Section */
.delhi-dating-tips {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

/* Mumbai Page Styles */
.mumbai-gay-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mumbai-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.mumbai-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/mmaidds-696x271.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.mumbai-hero .hero-container {
    position: relative;
    z-index: 2;
}

/* Mumbai Scene Section */
.mumbai-scene {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mumbai-scene .section-title {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mumbai-scene .scene-intro {
    font-size: 1.2rem;
    color: #34495e;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Mumbai Areas Section */
.mumbai-areas {
    padding: 80px 0;
    background: white;
}

.mumbai-areas .section-title {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mumbai-areas .section-intro {
    font-size: 1.2rem;
    color: #34495e;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Mumbai Dating Culture Section */
.mumbai-dating-culture {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
}

.mumbai-dating-culture .section-title {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.culture-aspects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.culture-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.culture-item h3 {
    font-size: 1.4rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 600;
}

.culture-item p {
    color: #555;
    line-height: 1.6;
}

/* Mumbai Lifestyle Section */
.mumbai-lifestyle {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.mumbai-lifestyle .section-title {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mumbai-lifestyle .section-intro {
    font-size: 1.2rem;
    color: #34495e;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Mumbai Events Section */
.mumbai-events {
    padding: 80px 0;
    background: white;
}

.mumbai-events .section-title {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mumbai-events .section-intro {
    font-size: 1.2rem;
    color: #34495e;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Mumbai Dating Tips Section */
.mumbai-dating-tips {
    padding: 80px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.mumbai-dating-tips .section-title {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.mumbai-dating-tips .section-intro {
    font-size: 1.2rem;
    color: #34495e;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Join Mumbai Section */
.join-mumbai {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.join-mumbai .container {
    max-width: 800px;
}

.join-mumbai h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.join-mumbai > .container > .join-content > p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    color: #f0f8ff;
}

.delhi-dating-tips .section-title {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.delhi-dating-tips .section-intro {
    font-size: 1.2rem;
    color: #34495e;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.tips-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.tip-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.tip-category:hover {
    transform: translateY(-5px);
}

.tip-category h3 {
    font-size: 1.4rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.tip-list {
    margin-top: 1rem;
}

.tip-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    line-height: 1.6;
}

.tip-item:last-child {
    border-bottom: none;
}

.tip-item strong {
    color: #667eea;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.join-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255,255,255,0.1);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.benefit-icon {
    color: #4ade80;
    font-weight: bold;
    font-size: 1.2rem;
}

.join-cta-container {
    margin: 3rem 0;
}

.join-cta-main {
    display: inline-block;
    background: linear-gradient(45deg, #4ade80, #22c55e);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.join-cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #22c55e, #16a34a);
}

.join-subtext {
    margin-top: 1rem;
    color: #d1d5db;
    font-size: 1rem;
}

.testimonial-quote {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-quote blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
    color: #111; /* Set quote text to black for better readability on light backgrounds */
}

.testimonial-quote cite {
    color: #333; /* Set citation text to dark gray */
    font-size: 0.9rem;
}

/* Responsive Design for Delhi Page */
@media (max-width: 768px) {
    .delhi-hero .hero-title {
        font-size: 2.2rem;
    }
    
    .delhi-hero .hero-description {
        font-size: 1.1rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .culture-aspects {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .join-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem !important;
    }
    
    .section-intro {
        font-size: 1.1rem !important;
    }
}

/* Bangalore Page Styles */
.bangalore-gay-page {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
}

.bangalore-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.bangalore-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/babat52.jpg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.bangalore-hero .hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.bangalore-hero .hero-content {
    text-align: left;
}

.bangalore-hero .hero-image {
    text-align: center;
}

.bangalore-hero .hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bangalore-hero .hero-title {
    font-size: 3.2em;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.bangalore-hero .hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.bangalore-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin: 50px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bangalore-hero .stat-item {
    text-align: center;
}

.bangalore-hero .stat-number {
    display: block;
    font-size: 2.5em;
    font-weight: 800;
    color: #fff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;
}

.bangalore-hero .stat-label {
    display: block;
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.bangalore-hero .hero-cta {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2em;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bangalore-hero .hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
    background: linear-gradient(45deg, #ee5a24, #ff6b6b);
}

.bangalore-scene {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.bangalore-scene .section-title {
    font-size: 2.8em;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
}

.bangalore-scene .scene-intro {
    font-size: 1.2em;
    color: #495057;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.bangalore-scene .scene-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.bangalore-scene .highlight-item {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border-top: 4px solid #667eea;
    position: relative;
    overflow: hidden;
}

.bangalore-scene .highlight-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.6s ease;
}

.bangalore-scene .highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

.bangalore-scene .highlight-item:hover::before {
    left: 100%;
}

.bangalore-scene .highlight-item h3 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.4em;
    font-weight: 600;
}

.bangalore-scene .highlight-item p {
    color: #495057;
    line-height: 1.7;
    font-size: 1.05em;
}

.bangalore-areas {
    padding: 80px 0;
    background: white;
}

.bangalore-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23667eea" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.bangalore-areas .section-title {
    font-size: 2.8em;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.bangalore-areas .areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.bangalore-areas .area-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 20px;
    border-left: 5px solid #667eea;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.bangalore-areas .area-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), transparent);
    border-radius: 50%;
    transform: translate(50%, -50%);
    transition: all 0.4s ease;
}

.bangalore-areas .area-card:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
    border-left-color: #fff;
}

.bangalore-areas .area-card:hover::after {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.1), transparent);
}

.bangalore-areas .area-card h3 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.5em;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.bangalore-areas .area-card:hover h3 {
    color: white;
}

.bangalore-areas .area-card p {
    color: #495057;
    line-height: 1.7;
    font-size: 1.05em;
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}

.bangalore-areas .area-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

.bangalore-areas .area-features {
    margin-top: 20px;
}

.bangalore-areas .feature-tag {
    display: inline-block;
    background: #667eea;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85em;
    margin: 3px;
}

.bangalore-areas .area-card:hover .feature-tag {
    background: white;
    color: #667eea;
}

.bangalore-dating-culture {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
}



.bangalore-dating-culture .section-title {
    font-size: 2.8em;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.bangalore-dating-culture .culture-aspects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.bangalore-dating-culture .culture-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}



.bangalore-dating-culture .culture-item:hover {
    transform: translateY(-5px);
}



.bangalore-dating-culture .culture-item h3 {
    font-size: 1.4rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 600;
}

.bangalore-dating-culture .culture-item p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.bangalore-lifestyle {
    padding: 80px 0;
    background: #f8f9fa;
}

.bangalore-lifestyle .lifestyle-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.bangalore-lifestyle .lifestyle-item {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.bangalore-lifestyle .lifestyle-item h3 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.bangalore-events {
    padding: 80px 0;
    background: white;
}

.bangalore-events .events-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.bangalore-events .event-category {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 15px;
    border-top: 4px solid #667eea;
    transition: all 0.3s ease;
}

.bangalore-events .event-category:hover {
    background: #667eea;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.bangalore-events .event-category h3 {
    color: #667eea;
    margin-bottom: 20px;
    font-size: 1.3em;
}

.bangalore-events .event-category:hover h3 {
    color: white;
}

.bangalore-dating-tips {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.bangalore-dating-tips .tips-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.bangalore-dating-tips .tip-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.bangalore-dating-tips .tip-item h3 {
    margin-bottom: 15px;
    font-size: 1.2em;
}

.bangalore-join {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.bangalore-join .benefit-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.bangalore-join .benefit-icon {
    font-size: 1.5em;
    margin-right: 15px;
}

.bangalore-join .benefit-text {
    font-weight: 500;
}

/* Responsive Design for Bangalore */
@media (max-width: 1024px) {
    .bangalore-hero .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .bangalore-hero .hero-content {
        text-align: center;
    }
    
    .bangalore-hero .hero-title {
        font-size: 2.5em;
    }
    
    .bangalore-hero .hero-description {
        font-size: 1.1em;
    }
    
    .bangalore-scene .section-title,
    .bangalore-areas .section-title,
    .bangalore-dating-culture .section-title {
        font-size: 2.3em;
    }
}

@media (max-width: 768px) {
    .bangalore-hero {
        padding: 80px 0;
        min-height: 70vh;
    }
    
    .bangalore-hero .hero-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .bangalore-hero .hero-title {
        font-size: 2.2em;
        margin-bottom: 20px;
    }
    
    .bangalore-hero .hero-description {
        font-size: 1.05em;
        margin-bottom: 30px;
    }
    
    .bangalore-hero .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 30px 0;
        padding: 25px;
    }
    
    .bangalore-hero .stat-number {
        font-size: 2em;
    }
    
    .bangalore-hero .stat-label {
        font-size: 1em;
    }
    
    .bangalore-hero .hero-cta {
        padding: 15px 30px;
        font-size: 1.1em;
    }
    
    .bangalore-scene,
    .bangalore-areas,
    .bangalore-dating-culture,
    .bangalore-lifestyle,
    .bangalore-events,
    .bangalore-dating-tips {
        padding: 60px 0;
    }
    
    .bangalore-scene .section-title,
    .bangalore-areas .section-title,
    .bangalore-dating-culture .section-title {
        font-size: 2em;
        margin-bottom: 40px;
    }
    
    .bangalore-scene .scene-intro {
        font-size: 1.1em;
        margin-bottom: 40px;
    }
    
    .bangalore-scene .scene-highlights,
    .bangalore-areas .areas-grid,
    .bangalore-dating-culture .culture-aspects,
    .bangalore-lifestyle .lifestyle-content,
    .bangalore-events .events-content,
    .bangalore-dating-tips .tips-content {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    
    .bangalore-scene .highlight-item,
    .bangalore-areas .area-card,
    .bangalore-dating-culture .culture-item {
        padding: 30px;
    }
    
    .bangalore-join .join-benefits {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .bangalore-hero {
        padding: 60px 0;
    }
    
    .bangalore-hero .hero-title {
        font-size: 1.8em;
    }
    
    .bangalore-hero .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .bangalore-scene .section-title,
    .bangalore-areas .section-title,
    .bangalore-dating-culture .section-title {
        font-size: 1.7em;
    }
    
    .bangalore-scene,
    .bangalore-areas,
    .bangalore-dating-culture {
        padding: 50px 0;
    }
    
    .bangalore-scene .highlight-item,
    .bangalore-areas .area-card,
    .bangalore-dating-culture .culture-item {
        padding: 25px;
    }
}

/* Chennai Page Styles */
.chennai-gay-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.chennai-hero {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    padding: 120px 0 80px;
    color: #2c3e50;
}

.chennai-hero .hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.chennai-hero .hero-description {
    font-size: 1.3rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #34495e;
}

.chennai-scene {
    padding: 80px 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.chennai-scene .section-title {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.chennai-scene .scene-intro {
    font-size: 1.2rem;
    color: #34495e;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.chennai-scene .scene-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.chennai-scene .highlight-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.chennai-scene .highlight-item:hover {
    transform: translateY(-5px);
}

.chennai-scene .highlight-item h3 {
    font-size: 1.4rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 600;
}

.chennai-scene .highlight-item p {
    color: #555;
    line-height: 1.6;
}

.chennai-areas {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.chennai-areas .section-title {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.chennai-dating-culture {
    padding: 80px 0;
    background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
}

.chennai-dating-culture .section-title {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.chennai-dating-culture .section-intro {
    font-size: 1.2rem;
    color: #34495e;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.culture-aspects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.aspect-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.aspect-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.aspect-card h3 {
    font-size: 1.4rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 600;
}

.aspect-card p {
    color: #555;
    line-height: 1.6;
}

.dating-tips {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.dating-tips h3 {
    font-size: 1.6rem;
    color: #667eea;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.tips-list {
    list-style: none;
    padding: 0;
}

.tips-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #555;
    line-height: 1.6;
}

.tips-list li:last-child {
    border-bottom: none;
}

.tips-list strong {
    color: #667eea;
    font-weight: 600;
}

.chennai-lifestyle {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.chennai-lifestyle .section-title {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.chennai-lifestyle .section-intro {
    font-size: 1.2rem;
    color: #34495e;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.lifestyle-aspects {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.lifestyle-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.lifestyle-card h3 {
    font-size: 1.4rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 600;
}

.lifestyle-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.lifestyle-card ul {
    list-style: none;
    padding: 0;
}

.lifestyle-card li {
    padding: 0.5rem 0;
    color: #666;
    border-left: 3px solid #667eea;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
}

.chennai-events {
    padding: 80px 0;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.chennai-events .section-title {
    font-size: 2.8rem;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.chennai-events .section-intro {
    font-size: 1.2rem;
    color: #34495e;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.event-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.event-category:hover {
    transform: translateY(-5px);
}

.event-category h3 {
    font-size: 1.4rem;
    color: #667eea;
    margin-bottom: 1rem;
    font-weight: 600;
}

.event-category p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.event-details {
    border-top: 1px solid #f0f0f0;
    padding-top: 1.5rem;
}

.event-item {
    padding: 0.8rem 0;
    border-bottom: 1px solid #f8f8f8;
    color: #555;
    line-height: 1.5;
}

.event-item:last-child {
    border-bottom: none;
}

.event-item strong {
    color: #667eea;
    font-weight: 600;
}

.join-chennai {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.join-chennai h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.join-chennai p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

.join-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.benefit-icon {
    color: #4ade80;
    font-weight: bold;
    font-size: 1.2rem;
}

.join-cta-container {
    text-align: center;
    margin: 3rem 0;
}

.join-cta-main {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.join-cta-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.join-subtext {
    margin-top: 1rem;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.testimonial-quote {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    backdrop-filter: blur(10px);
}

.testimonial-quote blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
    color: #111; /* Ensure black text in duplicated rule set */
}

.testimonial-quote cite {
    color: #333; /* Ensure dark citation color in duplicated rule set */
    font-size: 0.9rem;
}

/* Chennai Mobile Responsive */
@media (max-width: 768px) {
    .chennai-hero {
        padding: 100px 0 60px;
    }
    
    .chennai-hero .hero-title {
        font-size: 2rem;
    }
    
    .chennai-hero .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }
    
    .chennai-scene .section-title,
    .chennai-areas .section-title,
    .chennai-dating-culture .section-title,
    .chennai-lifestyle .section-title,
    .chennai-events .section-title {
        font-size: 1.8rem;
    }
    
    .chennai-scene,
    .chennai-areas,
    .chennai-dating-culture,
    .chennai-lifestyle,
    .chennai-events {
        padding: 50px 0;
    }
    
    .chennai-scene .highlight-item,
    .aspect-card,
    .lifestyle-card,
    .event-category {
        padding: 1.5rem;
    }
    
    .join-chennai h2 {
        font-size: 2rem;
    }
    
    .join-benefits {
        grid-template-columns: 1fr;
    }
}

/* Help Page Styles */
.help-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: 80px;
}

.help-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.help-hero .container {
    position: relative;
    z-index: 2;
}

.help-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.help-hero .hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.help-hero-img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 2rem;
}

.help-navigation {
    padding: 80px 0;
    background: #f8f9fa;
}

.help-navigation h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.help-nav-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.help-nav-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-decoration: none;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.help-nav-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: #667eea;
}

.help-nav-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #667eea;
}

.help-nav-item p {
    color: #666;
    margin: 0;
}

.help-section {
    padding: 80px 0;
}

.help-section:nth-child(even) {
    background: #f8f9fa;
}

.help-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #333;
}

.help-content {
    max-width: 900px;
    margin: 0 auto;
}

.help-item {
    background: white;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.help-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.help-item p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.help-item ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.help-item li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #555;
}

.help-item li strong {
    color: #333;
}

.contact-support {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-support h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-support > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.support-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.support-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.support-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.support-item p {
    margin: 0.5rem 0;
    opacity: 0.9;
}

.cta-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    margin-top: 3rem;
}

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.help-cta {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.help-cta:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
    color: white;
}

/* Responsive Design for Help Page */
@media (max-width: 768px) {
    .help-hero {
        padding: 100px 0 60px;
    }
    
    .help-hero h1 {
        font-size: 2.2rem;
    }
    
    .help-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .help-navigation {
        padding: 60px 0;
    }
    
    .help-navigation h2 {
        font-size: 2rem;
    }
    
    .help-nav-grid {
        grid-template-columns: 1fr;
    }
    
    .help-nav-item {
        padding: 1.5rem;
    }
    
    .help-section {
        padding: 60px 0;
    }
    
    .help-section h2 {
        font-size: 2rem;
    }
    
    .help-item {
        padding: 1.5rem;
    }
    
    .contact-support {
        padding: 60px 0;
    }
    
    .contact-support h2 {
        font-size: 2rem;
    }
    
    .support-options {
        grid-template-columns: 1fr;
    }
    
    .cta-section {
        padding: 2rem;
    }
    
    .cta-section h3 {
        font-size: 1.5rem;
    }
}