/* Country Pages CSS - Gay Kiss */
/* Base styles inherited from main site */

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background-color: #ffffff;
}

.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 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    padding: 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-right: 12px;
    object-fit: cover;
}

.logo-text {
    color: white;
    font-weight: 700;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.language-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.language-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    max-height: 300px;
    overflow-y: auto;
}

.language-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: block;
    padding: 12px 16px;
    color: #374151;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f3f4f6;
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background-color: #f9fafb;
}

.lang-option.active {
    background-color: #e0e7ff;
    color: #4f46e5;
    font-weight: 600;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #e0e7ff;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.cta-btn {
    background: white;
    color: #4f46e5;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

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

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%);
    z-index: -1;
}

.india-hero::before {
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.8) 0%, rgba(0, 128, 0, 0.8) 50%, rgba(255, 255, 255, 0.1) 100%);
}

.chile-hero::before {
    background: linear-gradient(135deg, rgba(0, 56, 168, 0.8) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(213, 43, 30, 0.8) 100%);
}

.italy-hero::before {
    background: linear-gradient(135deg, rgba(0, 146, 70, 0.8) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(206, 43, 55, 0.8) 100%);
}

.vietnam-hero::before {
    background: linear-gradient(135deg, rgba(218, 37, 29, 0.8) 0%, rgba(255, 205, 0, 0.8) 100%);
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.6);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* India Features Section */
.india-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.india-features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: block;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.feature-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Indian Cities Section */
.indian-cities {
    padding: 100px 0;
    background: white;
}

.indian-cities h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

/* Chilean Cities Section */
.chilean-cities {
    padding: 100px 0;
    background: white;
}

.chilean-cities h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

/* Italian Cities Section */
.italian-cities {
    padding: 100px 0;
    background: white;
}

.italian-cities h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

/* Italy Features Section */
.italy-features {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.italy-features h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

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

.city-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.city-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.city-info {
    padding: 1.5rem;
}

.city-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.city-info p {
    color: #64748b;
    margin-bottom: 1rem;
}

.city-description {
    color: #475569;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-align: justify;
}

.member-count {
    color: #4f46e5;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
}

.city-link {
    color: #4f46e5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 10px 20px;
    background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
    color: white;
    border-radius: 8px;
    margin-top: 10px;
}

.city-link:hover {
    background: linear-gradient(135deg, #3730a3 0%, #312e81 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

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

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-content p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Success Stories Section */
.success-stories-india {
    padding: 100px 0;
    background: #f8fafc;
}

.success-stories-india h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.success-stories-chile {
    padding: 100px 0;
    background: #f8fafc;
}

.success-stories-chile h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.success-stories-italy {
    padding: 100px 0;
    background: #f8fafc;
}

.success-stories-italy h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

/* Success Stories Section - General */
.success-stories {
    padding: 100px 0;
    background: #f8fafc;
}

.success-stories h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

.story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

.story-image {
    height: 250px;
    overflow: hidden;
}

.story-images {
    height: 250px;
    overflow: hidden;
}

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

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

.couple-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    max-width: 100%;
}

/* Fix image overflow issues */
.safety-photo,
.community-photo {
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: cover;
}

.safety-image,
.community-image {
    overflow: hidden;
    border-radius: 12px;
}

/* Ensure all images don't overflow their containers */
img {
    max-width: 100%;
    height: auto;
}

.story-content {
    padding: 2rem;
}

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

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

.story-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #94a3b8;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

.author-info h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
}

.author-info span {
    font-size: 0.9rem;
    color: #64748b;
}

/* LGBTQ India Section */
.lgbtq-india {
    padding: 100px 0;
    background: white;
}

.lgbtq-india h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

/* LGBTQ Chile Section */
.lgbtq-chile {
    padding: 100px 0;
    background: white;
}

.lgbtq-chile h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

/* LGBTQ Italy Section */
.lgbtq-italy {
    padding: 100px 0;
    background: white;
}

.lgbtq-italy h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.community-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.community-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #1e293b;
}

.community-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.commitment-list {
    list-style: none;
    margin: 1.5rem 0;
}

.commitment-list li {
    padding: 0.8rem 0;
    color: #64748b;
    line-height: 1.6;
    border-bottom: 1px solid #e2e8f0;
}

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

.commitment-list strong {
    color: #1e293b;
    font-weight: 600;
}

.pride-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Video Chat Section */
.video-chat-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.video-chat-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.video-chat-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.video-chat-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1e293b;
}

.video-chat-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.video-chat-text ul {
    margin-bottom: 2rem;
}

.video-chat-text li {
    color: #64748b;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.video-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.video-content h3 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #1e293b;
}

.video-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.video-benefits {
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: #64748b;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    fill: #10b981;
    flex-shrink: 0;
}

.video-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Membership Plans */
.membership-plans {
    padding: 100px 0;
    background: white;
}

.membership-plans h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

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

.plan-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

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

.plan-card.featured {
    border-color: #4f46e5;
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #4f46e5;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.plan-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.plan-price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    color: #64748b;
    vertical-align: top;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
}

.period {
    font-size: 1rem;
    color: #64748b;
}

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.plan-features li {
    padding: 0.8rem 0;
    color: #64748b;
    border-bottom: 1px solid #f1f5f9;
    position: relative;
    padding-left: 2rem;
}

.plan-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 600;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-btn {
    background: #4f46e5;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.plan-btn:hover {
    background: #3730a3;
    transform: translateY(-2px);
}

/* Singapore Gay Culture Section */
.sg-gay-culture {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.sg-gay-culture h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

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

.culture-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.culture-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.culture-card p {
    color: #64748b;
    line-height: 1.7;
    text-align: justify;
}

/* Southeast Asian Connections Section */
.sea-connections {
    padding: 100px 0;
    background: white;
}

.sea-connections h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.sea-content {
    margin-top: 3rem;
}

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

.sea-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.sea-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.sea-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.sea-card p {
    color: #64748b;
    line-height: 1.6;
    text-align: justify;
}

.regional-stats {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    border-radius: 20px;
    color: white;
    text-align: center;
}

.regional-stats h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Singapore Dating Strategies Section */
.sg-dating-strategies {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.sg-dating-strategies h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

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

.strategy-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.strategy-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.strategy-card p {
    color: #64748b;
    line-height: 1.7;
    text-align: justify;
}

/* Singapore Venues & Events Section */
.sg-venues-events {
    padding: 100px 0;
    background: white;
}

.sg-venues-events h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.venues-content {
    margin-top: 3rem;
}

.venues-categories {
    margin-bottom: 4rem;
}

.venue-category {
    margin-bottom: 3rem;
}

.venue-category h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1e293b;
    text-align: center;
}

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

.venue-item {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.venue-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.venue-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.venue-item p {
    color: #64748b;
    line-height: 1.6;
    text-align: justify;
}

.events-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    border-radius: 20px;
    color: white;
}

.events-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

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

.event-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.event-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.event-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-align: justify;
}

/* New Zealand LGBTQ Culture Section */
.nz-lgbtq-culture {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.nz-lgbtq-culture h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

/* New Zealand Gay Lifestyle Section */
.nz-gay-lifestyle {
    padding: 100px 0;
    background: white;
}

.nz-gay-lifestyle h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

/* Regional Dating Section */
.regional-dating {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.regional-dating h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

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

.regional-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.regional-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.regional-card p {
    color: #64748b;
    line-height: 1.7;
    text-align: justify;
}

/* New Zealand Dating Tips Section */
.nz-dating-tips {
    padding: 100px 0;
    background: white;
}

.nz-dating-tips h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

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

.tip-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

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

.tip-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.tip-card p {
    color: #64748b;
    line-height: 1.7;
    text-align: justify;
}

/* Gay Venues USA Section */
.gay-venues-usa {
    padding: 100px 0;
    background: white;
}

.gay-venues-usa h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

/* Gay Venues Italy Section */
.gay-venues-italy {
    padding: 100px 0;
    background: white;
}

.gay-venues-italy h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.venues-content {
    margin-top: 3rem;
}

.venues-by-city {
    margin-bottom: 4rem;
}

.city-venues {
    margin-bottom: 3rem;
}

.city-venues h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1e293b;
    text-align: center;
}

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

.venue-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.venue-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.venue-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.venue-card p {
    color: #64748b;
    line-height: 1.6;
    text-align: justify;
}

/* Gay Venues Canada Section */
.gay-venues-canada {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.gay-venues-canada h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

/* South African Gay Culture Sections */
.za-gay-culture,
.za-dating-spots,
.za-unique-experiences {
    padding: 100px 0;
}

.za-gay-culture {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.za-dating-spots {
    background: white;
}

.za-unique-experiences {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.za-gay-culture h2,
.za-dating-spots h2,
.za-unique-experiences h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.culture-content {
    margin-top: 3rem;
}

.cities-venues {
    margin-bottom: 4rem;
}

.city-section {
    margin-bottom: 3rem;
}

.city-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1e293b;
    text-align: center;
}

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

.spot-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.spot-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.spot-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.spot-card p {
    color: #64748b;
    line-height: 1.6;
    text-align: justify;
}

.annual-events {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 3rem;
    border-radius: 20px;
    color: white;
    margin-bottom: 3rem;
}

.annual-events h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

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

.event-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.event-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.event-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-align: justify;
}

.unique-experiences {
    margin-top: 3rem;
}

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

.experience-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.experience-card h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1e293b;
}

.experience-card p {
    color: #64748b;
    line-height: 1.7;
    text-align: justify;
}

/* Safety Section */
.safety-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.safety-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

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

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

.safety-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.safety-icon {
    width: 50px;
    height: 50px;
    fill: #10b981;
    margin: 0 auto 1.5rem;
    display: block;
}

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

.safety-item p {
    color: #64748b;
    line-height: 1.6;
}

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

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.btn-primary.large, .btn-secondary.large {
    padding: 18px 36px;
    font-size: 1.2rem;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.cta-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
}

.cta-stat .stat-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

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

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    margin-right: 12px;
}

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

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
    fill: white;
}

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

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

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

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: #94a3b8;
}

/* Gay Clubs Section */
.gay-clubs-india {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.gay-clubs-chile {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.club-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;
}

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

.club-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.club-info {
    padding: 25px;
}

.club-info h3 {
    color: #2c3e50;
    margin-bottom: 8px;
    font-size: 1.4rem;
}

.club-location {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

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

.club-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.club-tag {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Indian Gay Features Section */
.indian-gay-features {
    padding: 80px 0;
    background: white;
}

/* Chilean Gay Features Section */
.chilean-gay-features {
    padding: 80px 0;
    background: white;
}

/* Italian Gay Features */
.italian-gay-features {
    padding: 80px 0;
    background: #f8f9fa;
}

/* Greek Specific Styles */
.greece-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/gay1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.greece-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.8) 0%, rgba(25, 118, 210, 0.6) 100%);
    z-index: -1;
    pointer-events: none;
}

.greece-features {
    padding: 80px 0;
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.greek-cities {
    padding: 80px 0;
    background: #f8f9fa;
}

.gay-venues-greece {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
}

.success-stories-greece {
    padding: 80px 0;
    background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
}

.lgbtq-greece {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
}

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

.dating-tips-greece {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
}

.pride-culture-greece {
    padding: 80px 0;
    background: linear-gradient(135deg, #fce4ec 0%, #f8bbd9 100%);
}

.pride-culture-greece h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

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

.pride-culture-greece .pride-text h3 {
    color: white;
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.pride-culture-greece .pride-text h3:first-child {
    margin-top: 0;
}

.pride-culture-greece .pride-text p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.pride-culture-greece .pride-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.pride-culture-greece .culture-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.pride-culture-greece .culture-image:hover {
    transform: scale(1.05);
}

/* Mobile Responsive Styles for Greek Pride Culture */
@media (max-width: 768px) {
    .pride-culture-greece {
        padding: 60px 0;
    }
    
    .pride-culture-greece h2 {
        font-size: 2rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .pride-culture-greece .pride-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pride-culture-greece .pride-text {
        order: 1;
        padding: 0 20px;
    }
    
    .pride-culture-greece .pride-image {
        order: 2;
        padding: 0 20px;
    }
    
    .pride-culture-greece .culture-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
    }
    
    .pride-culture-greece .pride-text h3 {
        font-size: 1.3rem;
        margin: 25px 0 12px;
    }
    
    .pride-culture-greece .pride-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .pride-culture-greece {
        padding: 40px 0;
    }
    
    .pride-culture-greece h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .pride-culture-greece .pride-content {
        gap: 25px;
    }
    
    .pride-culture-greece .pride-text {
        padding: 0 15px;
    }
    
    .pride-culture-greece .pride-image {
        padding: 0 15px;
    }
    
    .pride-culture-greece .culture-image {
        border-radius: 8px;
    }
    
    .pride-culture-greece .pride-text h3 {
        font-size: 1.2rem;
        margin: 20px 0 10px;
    }
    
    .pride-culture-greece .pride-text p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
}

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

.feature-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transition: transform 0.3s ease;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    fill: #e74c3c;
}

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

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

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

.faq-section h2 {
    color: white;
    text-align: center;
    margin-bottom: 20px;
}

.faq-section .section-subtitle {
    color: rgba(255,255,255,0.9);
    text-align: center;
    margin-bottom: 50px;
}

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

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

.faq-item {
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

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

.faq-question:hover {
    background: rgba(255,255,255,0.1);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

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

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

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

.faq-item.active .faq-answer {
    max-height: none;
    padding: 0 25px 20px;
}

.faq-answer p {
    margin: 0;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

/* US Page Specific Styles */
.pride-heritage-section h2,
.pride-heritage-section h3,
.pride-heritage-section p,
.pride-heritage-section .section-subtitle,
.pride-heritage-section .stat-label,
.pride-heritage-section .stat-number {
    color: #000000 !important;
}

.american-lifestyle-section h2,
.american-lifestyle-section h3,
.american-lifestyle-section p,
.american-lifestyle-section .section-subtitle {
    color: #000000 !important;
}

.american-lifestyle-section .lifestyle-card h3,
.american-lifestyle-section .lifestyle-card p,
.american-lifestyle-section .feature-tag {
    color: #000000 !important;
}

/* Center align specific section titles - All Countries */
/* US Sections */
.american-cities h2,
.pride-culture h2,
.success-stories h2,
.american-lifestyle h2,
.gay-venues-usa h2,
.us-features h2,
.american-gay-culture h2,
.supporting-community h2,
.iconic-venues h2,
.pride-heritage h2,
/* Canada Sections */
.canadian-cities h2,
.canadian-dating-culture h2,
.canadian-gay-culture h2,
.seasonal-dating h2,
.gay-venues-canada h2,
.supporting-community h2,
.canadian-lifestyle h2,
.canadian-dating-tips h2,
.dating-preferences h2,
.relationship-advice h2,
.canada-features h2,
/* Singapore Sections */
.singapore-districts h2,
.sg-lgbtq-scene h2,
.singapore-experiences h2,
.sg-gay-culture h2,
.sea-connections h2,
.sg-dating-strategies h2,
.sg-venues-events h2,
.singapore-features h2,
.singaporean-cities h2,
/* New Zealand Sections */
.newzealand-cities h2,
.nz-lgbtq-culture h2,
.adventure-dating h2,
.nz-gay-lifestyle h2,
.kiwi-dating-culture h2,
.regional-dating h2,
.nz-dating-tips h2,
.safety-wellbeing h2,
.nz-features h2,
.nz-cities h2,
/* South Africa Sections */
.southafrica-cities h2,
.sa-lgbtq-heritage h2,
.safari-dating h2,
.sa-gay-culture h2,
.sa-social-dynamics h2,
.sa-dating-tips h2,
.sa-venues-events h2,
.za-features h2,
.south-african-cities h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

/* Ensure pride-heritage-section titles are also centered */
.pride-heritage-section h2 {
    text-align: center !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
}

/* Ensure american-lifestyle-section titles are also centered */
.american-lifestyle-section h2 {
    text-align: center !important;
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
}

/* Canadian Gay Culture Section */
.canadian-gay-culture {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.canadian-gay-culture .culture-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 3rem;
}

.canadian-gay-culture .culture-text p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}

.canadian-gay-culture .culture-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.canadian-gay-culture .culture-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.canadian-gay-culture .culture-img:hover {
    transform: scale(1.05);
}

/* Supporting Community Section */
.supporting-community {
    padding: 100px 0;
    background: white;
}

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

.supporting-community .community-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.supporting-community .community-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.supporting-community .community-icon svg {
    width: 30px;
    height: 30px;
}

.supporting-community .community-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.supporting-community .community-card p {
    color: #64748b;
    line-height: 1.6;
    text-align: justify;
}

/* Iconic Venues Section */
.iconic-venues {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.iconic-venues .section-subtitle {
    text-align: center;
    color: #64748b;
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

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

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

.iconic-venues .venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.iconic-venues .venue-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.iconic-venues .venue-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.iconic-venues .venue-card:hover .venue-img {
    transform: scale(1.1);
}

.iconic-venues .venue-content {
    padding: 25px;
}

.iconic-venues .venue-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1e293b;
}

.iconic-venues .venue-content p {
    color: #64748b;
    line-height: 1.6;
    text-align: justify;
}

/* Pride Heritage Section */
.pride-heritage {
    padding: 100px 0;
    background: white;
}

.pride-heritage .heritage-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 3rem;
}

.pride-heritage .heritage-text p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}

.pride-heritage .heritage-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.pride-heritage .heritage-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pride-heritage .heritage-img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .community-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .video-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .clubs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Canadian sections responsive */
    .canadian-gay-culture .culture-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pride-heritage .heritage-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-top: 2.5rem;
    }
    
    .pride-heritage {
        padding: 80px 0 60px 0;
    }
    
    .supporting-community .community-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .iconic-venues .venues-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .iconic-venues .venue-image {
        height: 220px;
    }
    
    .iconic-venues .venues-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .iconic-venues .venue-card {
        margin-bottom: 1.5rem;
    }
    
    .canadian-gay-culture .culture-img,
    .pride-heritage .heritage-img {
        max-width: 100%;
    }
    
    .feature-item {
        padding: 25px 15px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 15px;
    }
}

/* Dating Tips Section */
.dating-tips-india {
    padding: 80px 0;
    background: white;
}

.dating-tips-chile {
    padding: 80px 0;
    background: white;
}

.dating-tips-italy {
    padding: 80px 0;
    background: white;
}

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

.tip-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.tip-number {
    position: absolute;
    top: -15px;
    left: 30px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.tip-card h3 {
    color: #2c3e50;
    margin: 20px 0 15px;
    font-size: 1.3rem;
}

.tip-card p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Pride Culture Section */
.pride-culture-india {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.pride-culture-india h2 {
    color: white;
    text-align: center;
    margin-bottom: 50px;
}

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

.culture-text h3 {
    color: white;
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.culture-text h3:first-child {
    margin-top: 0;
}

.culture-text p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

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

.stat-item h4 {
    font-size: 2rem;
    margin: 0 0 10px;
    color: #fff;
    font-weight: bold;
}

.stat-item p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

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

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

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

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

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

.lifestyle-card {
    transition: all 0.3s ease;
    position: relative;
}

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

.lifestyle-card.featured {
    grid-column: span 2;
}

.lifestyle-badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .lifestyle-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .lifestyle-card.featured {
        grid-column: span 1;
    }
}

/* Testimonial CTA */
.testimonial-cta {
    margin-top: 40px;
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.testimonial-cta blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 15px;
    color: rgba(255,255,255,0.9);
}

.testimonial-cta cite {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

/* Additional Responsive Styles */
@media (max-width: 768px) {
    .tips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .tip-card {
        padding: 25px 20px 20px;
    }
    
    .culture-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .culture-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px 15px;
    }
    
    .testimonial-cta {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
    }
    
    /* Pride Heritage ultra-mobile optimization */
    .pride-heritage {
        padding: 40px 0 30px 0;
    }
    
    .pride-heritage .heritage-content {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .pride-heritage .heritage-text,
    .pride-heritage .heritage-image {
        padding: 0 0.5rem;
    }
    
    .pride-heritage .heritage-text h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }
    
    .pride-heritage .heritage-text p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
    
    .pride-heritage .heritage-img {
        border-radius: 10px;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.p-1 { padding: 0.5rem; }
.p-2 { padding: 1rem; }
.p-3 { padding: 1.5rem; }
.p-4 { padding: 2rem; }

/* Print Styles */
@media print {
    .header, .footer, .cta-section {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero-section {
        margin-top: 0;
        min-height: auto;
        padding: 2rem 0;
    }
}

/* Singapore Specific Styles */

/* Singapore Hero Section */
.singapore-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

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

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

/* Singapore Features Section */
.singapore-features {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.singapore-features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* Singapore Districts Section */
.singapore-districts {
    padding: 5rem 0;
    background: #f8fafc;
}

.singapore-districts h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.district-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;
}

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

.district-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.district-info {
    padding: 2rem;
}

.district-info h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 600;
}

.district-description {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-count {
    color: #667eea;
    font-weight: 600;
    margin-bottom: 1rem;
}

.district-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.district-link:hover {
    color: #5a67d8;
}

/* Gay Venues Singapore Section */
.gay-venues-singapore {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.gay-venues-singapore h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.gay-venues-singapore .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 3rem;
}

/* Gay Venues Singapore Images */
.gay-venues-singapore .venue-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gay-venues-singapore .venue-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Singapore Gay Culture Section */
.singapore-gay-culture {
    padding: 5rem 0;
    background: #f8fafc;
}

.singapore-gay-culture h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 3rem;
    font-weight: 700;
}

.singapore-gay-culture .culture-text p {
    color: #2d3748;
}

/* Supporting Community Section */
.supporting-community .community-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
}

/* Iconic Venues Section */
.iconic-venues .venue-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iconic-venues .venue-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Singapore Lifestyle Icons */
.singapore-lifestyle .lifestyle-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #667eea;
}

/* Singapore Lifestyle Section */
.singapore-lifestyle {
    padding: 5rem 0;
    background: white;
}

.singapore-lifestyle h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Dating Tips Singapore Section */
.dating-tips-singapore {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.dating-tips-singapore h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Malaysian Gay Culture Section */
.malaysian-gay-culture {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.malaysian-gay-culture h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.malaysian-gay-culture .culture-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 3rem;
}

.malaysian-gay-culture .culture-text p {
    color: #000000 !important;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}

.malaysian-gay-culture .culture-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.malaysian-gay-culture .culture-img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.malaysian-gay-culture .culture-img:hover {
    transform: scale(1.05);
}

/* Gay Venues Malaysia Section */
.gay-venues-malaysia {
    padding: 100px 0;
    background: white;
}

.gay-venues-malaysia h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

.gay-venues-malaysia .venue-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gay-venues-malaysia .venue-image:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* LGBTQ Events Malaysia Section */
.lgbtq-events-malaysia {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.lgbtq-events-malaysia h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: white;
}

.lgbtq-events-malaysia .events-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.lgbtq-events-malaysia .events-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.lgbtq-events-malaysia .events-text p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: justify;
}

.lgbtq-events-malaysia .events-img {
    width: 100%;
    max-width: 400px;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.lgbtq-events-malaysia .events-img:hover {
    transform: scale(1.05);
}

/* Dating Tips Malaysia Section */
.dating-tips-malaysia {
    padding: 100px 0;
    background: white;
}

.dating-tips-malaysia h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e293b;
}

/* Singapore sections responsive */
@media (max-width: 768px) {
    .districts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .district-image {
        height: 200px;
    }
    
    .singapore-features .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .singapore-lifestyle .lifestyle-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .singapore-lifestyle .lifestyle-card.featured {
        grid-column: span 1;
    }
    
    .singapore-lifestyle .lifestyle-icon {
        width: 50px;
        height: 50px;
    }
    
    .dating-tips-singapore .tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .supporting-community .community-image {
        height: 200px;
    }
    
    .iconic-venues .venue-image {
        height: 220px;
    }
    
    .iconic-venues .venues-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .iconic-venues .venue-card {
        margin-bottom: 1.5rem;
    }
    
    .gay-venues-singapore .venue-image {
        height: 220px;
    }
    
    .gay-venues-singapore .venues-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .gay-venues-singapore .venue-card {
        margin-bottom: 1.5rem;
    }
    
    /* Pride Heritage mobile optimization - Enhanced */
    section.pride-heritage {
        padding: 40px 0 !important;
        background: #f8f9ff !important;
    }
    
    section.pride-heritage .container {
        padding: 0 20px !important;
    }
    
    section.pride-heritage h2 {
        text-align: center !important;
        margin-bottom: 30px !important;
        font-size: 1.8rem !important;
    }
    
    section.pride-heritage .heritage-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
        align-items: center !important;
    }
    
    section.pride-heritage .heritage-image {
        order: 1 !important;
        width: 100% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    section.pride-heritage .heritage-text {
        order: 2 !important;
        width: 100% !important;
        text-align: left !important;
    }
    
    section.pride-heritage .heritage-text h3 {
        font-size: 1.3rem !important;
        margin-bottom: 15px !important;
        color: #333 !important;
        font-weight: 600 !important;
    }
    
    section.pride-heritage .heritage-text p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 20px !important;
        color: #555 !important;
    }
    
    section.pride-heritage .heritage-img {
        width: 100% !important;
        height: auto !important;
        border-radius: 12px !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
        display: block !important;
    }
    
    /* Singapore Gay Culture mobile optimization */
    .singapore-gay-culture {
        padding: 3rem 0 !important;
    }
    
    .singapore-gay-culture h2 {
        font-size: 1.8rem !important;
        margin-bottom: 2rem !important;
        text-align: center !important;
    }
    
    .singapore-gay-culture .culture-content {
        display: flex !important;
        flex-direction: column !important;
        gap: 2rem !important;
    }
    
    .singapore-gay-culture .culture-text {
        order: 2 !important;
        width: 100% !important;
    }
    
    .singapore-gay-culture .culture-image {
        order: 1 !important;
        width: 100% !important;
        text-align: center !important;
    }
    
    .singapore-gay-culture .culture-text h3 {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
        color: #2d3748 !important;
    }
    
    .singapore-gay-culture .culture-text p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 1.5rem !important;
        color: #2d3748 !important;
    }
    
    .singapore-gay-culture .culture-img {
        width: 100% !important;
        max-width: 400px !important;
        height: auto !important;
        border-radius: 12px !important;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1) !important;
    }
    
    /* Malaysian sections responsive */
    .malaysian-gay-culture .culture-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .malaysian-gay-culture .culture-img {
        max-width: 100%;
        height: 300px;
    }
    
    .gay-venues-malaysia .venue-image {
        height: 220px;
    }
    
    .gay-venues-malaysia .venues-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .lgbtq-events-malaysia .events-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .lgbtq-events-malaysia .events-img {
        max-width: 100%;
        height: 250px;
    }
    
    .dating-tips-malaysia .tips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

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

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

.final-cta-btn {
    background: linear-gradient(45deg, #ffd700, #ffed4e);
    color: #333;
    padding: 20px 50px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255,215,0,0.3);
    display: inline-block;
}

.final-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255,215,0,0.4);
}

/* Indonesia Specific Styles */
/* Gay Venues Indonesia Section */
.gay-venues-indonesia {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.gay-venues-indonesia h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.gay-venues-indonesia .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.venue-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.venue-info {
    padding: 25px;
}

.venue-info h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #333;
}

.venue-location {
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

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

.venue-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.venue-tag {
    background: linear-gradient(45deg, #6366f1, #8b5cf6);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Pride Culture Indonesia Section */
.pride-culture-indonesia {
    padding: 80px 0;
    background: white;
}

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

.pride-culture-indonesia h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
}

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

.culture-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
    margin-top: 30px;
}

.culture-text h3:first-child {
    margin-top: 0;
}

.culture-text p {
    color: #000000;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.culture-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.culture-stats .stat-item {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    color: white;
}

.culture-stats .stat-item h4 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.culture-stats .stat-item p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
    color: white;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .venues-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .venue-image {
        height: 200px;
    }
    
    .venue-info {
        padding: 20px;
    }
    
    .culture-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .culture-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .culture-stats .stat-item {
        padding: 25px 15px;
    }
    
    .culture-stats .stat-item h4 {
        font-size: 2.5rem;
    }
    
    .gay-venues-indonesia h2,
    .pride-culture-indonesia h2 {
        font-size: 2rem;
    }
    
    .culture-text h3 {
        font-size: 1.5rem;
    }
}

/* Features Section Vietnam */
.features-vietnam {
    padding: 100px 0;
    background: #f8f9fa;
}

.features-vietnam h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
}

/* Cities Section Vietnam */
.cities-vietnam {
    padding: 100px 0;
    background: white;
}

.cities-vietnam h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.city-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.city-content {
    padding: 1.5rem;
}

.city-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e293b;
}

.city-content p {
    color: #64748b;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.city-members {
    color: #4f46e5;
    font-weight: 600;
    font-size: 0.9rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
}

/* Safety Section Vietnam */
.safety-vietnam {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.safety-vietnam h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

/* CTA Section Vietnam */
.cta-vietnam {
    padding: 100px 0;
    background: #f8f9fa;
    text-align: center;
}

.cta-vietnam h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-vietnam p {
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.success-stories-vietnam h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.story-card {
    background: white;
    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 40px rgba(0, 0, 0, 0.15);
}

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

.couple-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.story-card:hover .couple-photo {
    transform: scale(1.05);
}

.story-content {
    padding: 1.5rem;
}

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

.story-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.story-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

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

/* Vietnamese LGBTQ+ Community Section */
.lgbtq-vietnam {
    padding: 80px 0;
    background: white;
}

.lgbtq-vietnam h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 700;
}

.lgbtq-vietnam .community-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.lgbtq-vietnam .community-text h3 {
    color: #2c3e50;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.lgbtq-vietnam .community-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.commitment-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
    line-height: 1.6;
}

.commitment-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.commitment-list strong {
    color: #2c3e50;
}

.pride-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.video-chat-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.video-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.video-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.video-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.video-benefits {
    margin: 2rem 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.benefit-icon {
    width: 24px;
    height: 24px;
    fill: #fff;
    margin-right: 1rem;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 1rem;
    opacity: 0.9;
}

.video-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Vietnamese Gay Features Section */
.vietnamese-gay-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.vietnamese-gay-features h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    fill: white;
}

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

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

/* Dating Tips Vietnam Section */
.dating-tips-vietnam {
    padding: 80px 0;
    background: white;
}

.dating-tips-vietnam h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.tip-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid #667eea;
}

.tip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.tip-number {
    position: absolute;
    top: -15px;
    left: 2rem;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.tip-card h3 {
    color: #2c3e50;
    margin: 1rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

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

/* Pride Culture Vietnam Section */
.pride-culture-vietnam {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
}

.pride-culture-vietnam h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
    font-weight: 700;
}

.pride-culture-vietnam .culture-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.pride-culture-vietnam .culture-text h3 {
    color: #2c3e50;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.pride-culture-vietnam .culture-text p {
    color: #000000;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pride-culture-vietnam .culture-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.pride-culture-vietnam .stat-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.pride-culture-vietnam .stat-item h4 {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.pride-culture-vietnam .stat-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Community Section Base Styles */
.community-section {
    padding: 100px 0;
    background: white;
}

.community-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1e293b;
}

.community-section .community-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.community-section .community-text h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: #1e293b;
}

.community-section .community-text p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.community-section .pride-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsive Styles for Turkey */
@media (max-width: 768px) {
    /* Turkey Community Section Mobile Styles */
    .community-section .community-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .community-section .community-text {
        order: 1;
        padding: 0 1rem;
    }
    
    .community-section .community-image {
        order: 2;
        margin: 0 auto;
        max-width: 100%;
    }
    
    .community-section .community-text h3 {
        font-size: 1.5rem;
        margin: 1.5rem 0 1rem;
    }
    
    .community-section .community-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
        text-align: justify;
    }
    
    .community-section .pride-image {
        width: 100%;
        max-width: 400px;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 480px) {
    /* Turkey Community Section Extra Small Mobile Styles */
    .community-section {
        padding: 40px 0;
    }
    
    .community-section .community-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .community-section .community-text {
        padding: 0 1rem;
        order: 1;
    }
    
    .community-section .community-text h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }
    
    .community-section .community-text p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
        text-align: left;
    }
    
    .community-section .community-image {
        order: 2;
        padding: 0 1rem;
    }
    
    .community-section .community-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        object-fit: cover;
    }
}

/* Mobile Responsive Styles for Vietnam */
@media (max-width: 768px) {
    .lgbtq-vietnam .community-content,
    .video-features,
    .pride-culture-vietnam .culture-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stories-grid,
    .features-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .vietnamese-gay-features h2,
    .dating-tips-vietnam h2,
    .pride-culture-vietnam h2,
    .success-stories-vietnam h2,
    .lgbtq-vietnam h2,
    .video-chat-section h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .story-image,
    .video-img,
    .pride-image {
        height: 200px;
    }
    
    .pride-culture-vietnam .culture-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Privacy and Terms Hero Sections */
.privacy-hero::before {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.8) 0%, rgba(155, 89, 182, 0.8) 100%);
}

.terms-hero::before {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.8) 0%, rgba(52, 152, 219, 0.8) 100%);
}

.last-updated-hero {
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

/* Privacy and Terms Content Sections */
.privacy-section, .terms-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.privacy-content, .terms-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.privacy-section-item:hover, .terms-section-item:hover {
    transform: translateY(-5px);
}

.privacy-section-item h2, .terms-section-item h2 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #3498db;
}

.privacy-section-item h3, .terms-section-item h3 {
    color: #34495e;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 25px 0 15px;
}

.privacy-section-item p, .terms-section-item p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.privacy-section-item ul, .terms-section-item ul {
    margin: 20px 0;
    padding-left: 30px;
}

.privacy-section-item li, .terms-section-item li {
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

/* Safety Hero Section Improvements */
.safety-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/gay3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.safety-hero::before {
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.8) 0%, rgba(192, 57, 43, 0.8) 100%);
}

.safety-hero .hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.safety-hero .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile Responsive Styles for Privacy, Terms, and Safety */
@media (max-width: 768px) {
    .privacy-hero .hero-title,
    .terms-hero .hero-title,
    .safety-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .privacy-hero .hero-subtitle,
    .terms-hero .hero-subtitle,
    .safety-hero .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .privacy-section-item, .terms-section-item {
        padding: 30px 20px;
        margin-bottom: 20px;
    }
    
    .privacy-section-item h2, .terms-section-item h2 {
        font-size: 1.6rem;
    }
    
    .privacy-section-item h3, .terms-section-item h3 {
        font-size: 1.2rem;
    }
    
    .last-updated-hero {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .privacy-hero .hero-title,
    .terms-hero .hero-title,
    .safety-hero .hero-title {
        font-size: 2rem;
    }
    
    .privacy-hero .hero-subtitle,
    .terms-hero .hero-subtitle,
    .safety-hero .hero-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .privacy-section-item, .terms-section-item {
        padding: 25px 15px;
    }
    
    .privacy-section-item h2, .terms-section-item h2 {
        font-size: 1.4rem;
    }
    
    .privacy-section-item h3, .terms-section-item h3 {
        font-size: 1.1rem;
    }
    
    .privacy-section-item p, .terms-section-item p,
    .privacy-section-item li, .terms-section-item li {
        font-size: 0.95rem;
    }
}

/* Thai Pride Culture Section */
.thai-pride-culture {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.thai-pride-culture h2 {
    color: white;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
}

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

.thai-pride-culture .pride-text h3 {
    color: white;
    margin: 30px 0 15px;
    font-size: 1.4rem;
}

.thai-pride-culture .pride-text h3:first-child {
    margin-top: 0;
}

.thai-pride-culture .pride-text h4 {
    color: white;
    margin: 25px 0 15px;
    font-size: 1.2rem;
}

.thai-pride-culture .pride-text p {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

.thai-pride-culture .pride-events {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.thai-pride-culture .pride-events li {
    color: rgba(255,255,255,0.9);
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.thai-pride-culture .pride-events li:before {
    content: "🏳️‍🌈";
    position: absolute;
    left: 0;
    top: 0;
}

.thai-pride-culture .pride-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.thai-pride-culture .culture-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.thai-pride-culture .culture-image:hover {
    transform: scale(1.05);
}

/* Mobile Responsive Styles for Thai Pride Culture */
@media (max-width: 768px) {
    .thai-pride-culture {
        padding: 60px 0;
    }
    
    .thai-pride-culture h2 {
        font-size: 2rem;
        margin-bottom: 30px;
        padding: 0 20px;
    }
    
    .thai-pride-culture .pride-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .thai-pride-culture .pride-text {
        order: 1;
        padding: 0 20px;
    }
    
    .thai-pride-culture .pride-image {
        order: 2;
        padding: 0 20px;
    }
    
    .thai-pride-culture .culture-image {
        max-width: 100%;
        width: 100%;
        height: auto;
        object-fit: cover;
        border-radius: 10px;
    }
    
    .thai-pride-culture .pride-text h3 {
        font-size: 1.3rem;
        margin: 25px 0 12px;
    }
    
    .thai-pride-culture .pride-text h4 {
        font-size: 1.1rem;
        margin: 20px 0 12px;
    }
    
    .thai-pride-culture .pride-text p {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 15px;
    }
    
    .thai-pride-culture .pride-events li {
        font-size: 0.9rem;
        margin-bottom: 8px;
        padding-left: 25px;
    }
}

@media (max-width: 480px) {
    .thai-pride-culture {
        padding: 40px 0;
    }
    
    .thai-pride-culture h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .thai-pride-culture .pride-content {
        gap: 25px;
    }
    
    .thai-pride-culture .pride-text {
        padding: 0 15px;
    }
    
    .thai-pride-culture .pride-image {
        padding: 0 15px;
    }
    
    .thai-pride-culture .culture-image {
        border-radius: 8px;
    }
    
    .thai-pride-culture .pride-text h3 {
        font-size: 1.2rem;
        margin: 20px 0 10px;
    }
    
    .thai-pride-culture .pride-text h4 {
        font-size: 1rem;
        margin: 18px 0 10px;
    }
    
    .thai-pride-culture .pride-text p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .thai-pride-culture .pride-events li {
        font-size: 0.85rem;
        margin-bottom: 6px;
        padding-left: 22px;
    }
}

/* Gay Travel page specific styles */
.gay-travel-hero {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 50%, #ff9ff3 100%);
    position: relative;
    overflow: hidden;
}

.gay-travel-hero .hero-bg-img {
    opacity: 0.4;
}

.gay-destinations-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

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

.destination-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.destination-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.destination-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #ffd700;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.destination-content {
    padding: 2rem;
}

.destination-content h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.destination-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

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

.destination-link {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.destination-link:hover {
    color: #ee5a24;
}

.travel-dating-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.travel-dating-section .section-header h2,
.travel-dating-section .section-subtitle {
    color: white;
}

.dating-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 3rem;
}

.dating-tips-grid {
    display: grid;
    gap: 2rem;
}

.dating-tip-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.tip-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.tip-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dating-tip-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.dating-tip-card p {
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.9;
}

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

.dating-tip-card li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    opacity: 0.8;
}

.dating-tip-card li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #ffd700;
}

.travel-dating-image {
    position: sticky;
    top: 2rem;
}

.travel-dating-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.travel-safety-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.safety-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px 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;
    display: block;
}

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

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

.safety-tips h4 {
    color: #ff6b6b;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

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

.safety-tips li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: #555;
    font-size: 0.9rem;
}

.safety-tips li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.travel-tools-section {
    padding: 5rem 0;
    background: white;
}

.tools-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.tools-grid {
    display: grid;
    gap: 2rem;
}

.tool-category h3 {
    color: #2c3e50;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
    border-bottom: 2px solid #ff6b6b;
    padding-bottom: 0.5rem;
}

.tool-list {
    display: grid;
    gap: 1rem;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.tool-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.tool-item.featured {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
}

.tool-item.featured .tool-info h4,
.tool-item.featured .tool-info p {
    color: white;
}

.tool-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 10px;
}

.tool-item img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.tool-info h4 {
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.tool-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0.3rem;
}

.tool-rating {
    color: #ffd700;
    font-size: 0.9rem;
}

.tools-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.travel-stories-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
}

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

.story-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

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

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

.story-content {
    padding: 2rem;
}

.story-content h3 {
    color: #2c3e50;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.story-location {
    color: #ff6b6b;
    font-weight: 500;
    margin-bottom: 1rem;
}

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

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

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

.travel-faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    border-left: 4px solid #ff6b6b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: #e9ecef;
}

.faq-item h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    padding-right: 2rem;
}

.faq-item h3:after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: #ff6b6b;
    transition: transform 0.3s ease;
}

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

.faq-item p {
    color: #666;
    line-height: 1.6;
    display: none;
}

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

.travel-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
}

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

.cta-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
}

.cta-label {
    display: block;
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Mobile responsive styles for gay travel page */
@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .destination-card {
        margin: 0 1rem;
    }
    
    .dating-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .tools-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .dating-tip-card {
        padding: 1.5rem;
    }
    
    .safety-card {
        padding: 1.5rem;
    }
    
    .story-content {
        padding: 1.5rem;
    }
}

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

.safety-header {
    text-align: center;
    padding: 4rem 0 3rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95), rgba(118, 75, 162, 0.95));
    color: white;
    margin-bottom: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.safety-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.safety-intro {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 3rem;
    opacity: 0.95;
}

.safety-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #ffd700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

.safety-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.safety-checklist {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.safety-checklist h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

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

.checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.checklist-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
    border-color: rgba(102, 126, 234, 0.3);
}

.checklist-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #667eea;
    cursor: pointer;
}

.checklist-item label {
    font-size: 1.1rem;
    color: #2c3e50;
    cursor: pointer;
    font-weight: 500;
}

.safety-section-item {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.safety-section-item h2 {
    color: #2c3e50;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    border-bottom: 3px solid #667eea;
    padding-bottom: 1rem;
}

.safety-section-item h3 {
    color: #495057;
    font-size: 1.6rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

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

.safety-tips-box {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 2px solid #28a745;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.safety-tips-box h4 {
    color: #155724;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.safety-tips-box li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #155724;
    font-size: 1rem;
    font-weight: 500;
}

.safety-tips-box li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

.safety-warning-box {
    background: linear-gradient(135deg, #f8d7da, #f1b0b7);
    border: 2px solid #dc3545;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.safety-warning-box h4 {
    color: #721c24;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.safety-warning-box ul {
    list-style: none;
    padding: 0;
}

.safety-warning-box li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #721c24;
    font-size: 1rem;
    font-weight: 500;
}

.safety-warning-box li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #dc3545;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Mobile Responsive for Safety Page */
@media (max-width: 768px) {
    .safety-header h1 {
        font-size: 2.5rem;
    }
    
    .safety-intro {
        font-size: 1.1rem;
    }
    
    .safety-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .safety-checklist,
    .safety-section-item {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    
    .safety-section-item h2 {
        font-size: 1.8rem;
    }
    
    .safety-section-item h3 {
        font-size: 1.4rem;
    }
}

/* About Page Specific Styles */
.story-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.story-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #6366f1, #8b5cf6);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    min-width: 100px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 2rem;
    border: 1px solid #e5e7eb;
}

.timeline-content h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.timeline-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 1rem;
}

/* Community Guidelines Styles */
.community-guidelines {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 5rem 0;
}

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

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

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

.guideline-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: #6366f1;
}

.guideline-card h3 {
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guideline-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Pricing Section Styles */
.pricing-section {
    background: white;
    padding: 5rem 0;
}

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

.pricing-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pricing-card.featured {
    border-color: #6366f1;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.pricing-header h3 {
    color: #1f2937;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.2rem;
    color: #6b7280;
}

.amount {
    font-size: 3rem;
    font-weight: 800;
    color: #1f2937;
    margin: 0 0.2rem;
}

.period {
    font-size: 1rem;
    color: #6b7280;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    text-align: left;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: #4b5563;
    border-bottom: 1px solid #f3f4f6;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-btn {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

/* Global Community Styles */
.global-community {
    background: linear-gradient(135deg, #1f2937, #374151);
    padding: 5rem 0;
    color: white;
}

.global-community .section-header h2,
.global-community .section-header p {
    color: white;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

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

.stat-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.stat-content {
    padding: 1.5rem;
}

.stat-content h3 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-content .stat-number {
    color: #fbbf24;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.stat-content p {
    color: #d1d5db;
    line-height: 1.6;
}

/* Success Stories Styles */
.success-stories {
    background: white;
    padding: 5rem 0;
}

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

.story-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    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-image {
    height: 200px;
    overflow: hidden;
}

.story-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content {
    padding: 1.5rem;
}

.story-content h3 {
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.story-location {
    color: #6366f1;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.story-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.story-duration,
.story-status {
    font-size: 0.9rem;
    font-weight: 600;
}

.story-duration {
    color: #6b7280;
}

.story-status {
    color: #10b981;
}

/* CTA Section Styles */
.cta-section {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .btn-primary.large,
.cta-buttons .btn-secondary.large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
}

.cta-guarantee {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Mobile Responsive Styles for About Page */
@media (max-width: 768px) {
    .story-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        padding-left: 60px;
    }
    
    .timeline-year {
        position: absolute;
        left: -50px;
        min-width: 80px;
        font-size: 1rem;
        padding: 0.8rem 1rem;
    }
    
    .timeline-content {
        margin: 1rem 0 0 0;
        width: 100%;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .community-stats {
        grid-template-columns: 1fr;
    }
    
    .stories-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn-primary.large,
    .cta-buttons .btn-secondary.large {
        width: 100%;
        max-width: 300px;
    }
}