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

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

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

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; color: #4a4a4a; }
h3 { font-size: 1.5rem; }

.text-center { text-align: center; }
.text-white { color: #fff; }
.bg-light { background-color: #f4f6f8; }
.bg-gradient {
    background: linear-gradient(135deg, #333399 0%, #1a1a4d 100%);
    color: white;
}
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.divider {
    height: 4px;
    width: 60px;
    background: linear-gradient(to right, #333399, #1a1a4d);
    margin: 10px auto 30px;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(to right, #ff512f, #dd2476);
    color: white;
    box-shadow: 0 4px 15px rgba(221, 36, 118, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(221, 36, 118, 0.6);
}

.btn-gradient {
    background: linear-gradient(to right, #ff512f, #dd2476);
    color: white;
    box-shadow: 0 4px 15px rgba(221, 36, 118, 0.4);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(221, 36, 118, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn-outline:hover {
    background: #fff;
    color: #333399;
}

.pricing-card .btn-outline {
    border-color: #333399;
    color: #333399;
}

.pricing-card .btn-outline:hover {
    background: #333399;
    color: #fff;
}

.btn-large {
    padding: 15px 35px;
    font-size: 1.1rem;
}

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

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

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
}

.logo-img {
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

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

.nav-list a {
    color: #555;
    font-weight: 500;
}

.nav-list a:hover {
    color: #333399;
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    min-width: 200px;
    border-radius: 5px;
    padding: 10px 0;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1100;
}

/* Scrollbar styling for dropdown */
.dropdown-content::-webkit-scrollbar {
    width: 8px;
}

.dropdown-content::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dropdown-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 8px 15px;
}

.dropdown-content a:hover {
    background: #f4f6f8;
}

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

.hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

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

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Stats */
.stats {
    background: #fff;
    padding: 40px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-top: -30px;
    position: relative;
    z-index: 10;
    border-radius: 10px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #764ba2;
    margin-bottom: 5px;
}

.stat-item p {
    color: #777;
    font-weight: 600;
}

/* Section General */
.section {
    padding: 80px 0;
}

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

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

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

.feature-card .icon {
    color: #333399;
    margin-bottom: 20px;
}

/* Members Section */
.members-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

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

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

.card-content {
    padding: 25px;
}

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

/* Why Gay Chat Room & Real Member Experiences H2 Color Override */
.bg-gradient h2 {
    color: #fff !important;
}

#about .section-header h2,
.members-types-grid ~ .section-header h2,
section:has(.member-type-card) .section-header h2 {
    color: #333399; 
}

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

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

/* Steps */
.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.step {
    flex: 1 1 200px;
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #333399;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

/* Terms */
.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.term-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.term-card h4 {
    color: #764ba2;
    margin-bottom: 10px;
}

/* Profiles */
.profiles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

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

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

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

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

.profile-info h4 {
    margin-bottom: 5px;
    color: #333;
}

.profile-info .location {
    display: block;
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.profile-info .bio {
    font-size: 0.9rem;
    font-style: italic;
    color: #555;
}

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

.pricing-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid #eee;
}

.pricing-card.popular {
    transform: scale(1.05);
    border: 2px solid #764ba2;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(118, 75, 162, 0.2);
}

.pricing-card .badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffcc00;
    color: #333;
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 20px 0;
}

.features-list {
    margin-bottom: 30px;
    text-align: left;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
}

.features-list li:before {
    content: "✓";
    color: #333399;
    margin-right: 10px;
    font-weight: 700;
}

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

.testimonial-card {
    background: rgba(255,255,255,0.15);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card .author {
    font-weight: 700;
    text-align: right;
}

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

.blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

.blog-content {
    padding: 20px;
}

.read-more {
    color: #764ba2;
    font-weight: 600;
    margin-top: 10px;
    display: inline-block;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.faq-item {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.faq-item h4 {
    color: #333399;
    margin-bottom: 10px;
}

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

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

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

.country-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.country-info {
    padding: 20px;
}

.country-info h3 {
    color: #333399;
    margin-bottom: 10px;
    font-size: 1.25rem;
}

.country-info p {
    font-size: 0.95rem;
    color: #555;
}

/* CTA */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #333399 0%, #1a1a4d 100%);
    color: #fff;
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section .btn {
    background: #FFD700; /* Gold/Yellow */
    color: #333;
    font-weight: 700;
    padding: 15px 40px;
    font-size: 1.2rem;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-section .btn:hover {
    background: #ffeb3b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: #333;
}

/* Why Gay Chat Room & Real Member Experiences H2 White Color */
.bg-gradient h2 {
    color: #fff !important;
}

/* Footer Styles */
.footer {
    background: #2d3748;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-col h4 {
    margin-bottom: 20px;
    color: #fff;
    border-bottom: 2px solid #764ba2;
    padding-bottom: 10px;
    display: inline-block;
}

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

.footer-col ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #fff;
}

/* Hidden Footer Items */
.footer-hidden-country {
    display: none;
}

.footer-country-list.expanded .footer-hidden-country {
    display: block;
    animation: slideDown 0.4s ease-out;
}

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

#footerMoreBtn {
    color: #FFD700 !important; /* Gold to stand out */
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    margin-top: 5px;
}

#footerMoreBtn:hover {
    color: #ffeb3b !important;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #4a5568;
    padding-top: 20px;
    color: #718096;
    font-size: 0.9rem;
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/gaycoupled.jpg') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.about-hero-content p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 40px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

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

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

.lead-text {
    font-size: 1.3rem;
    color: #333399;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

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

.value-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.value-card h3 {
    color: #333399;
    margin-bottom: 10px;
}

.content-row {
    max-width: 900px;
    margin: 0 auto;
}

.content-row h2, .content-row h3 {
    color: #333399;
    margin-top: 30px;
}

.content-row p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #4a4a4a;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    font-size: 1.05rem;
}

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

/* Comparison Table */
.table-responsive {
    overflow-x: auto;
    margin-top: 30px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.comparison-table th, .comparison-table td {
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}

.comparison-table th {
    background: rgba(0,0,0,0.2);
    font-size: 1.2rem;
}

.comparison-table .highlight {
    background: rgba(255, 215, 0, 0.2); /* Gold tint */
    font-weight: bold;
    color: #fff;
}

.divider.bg-white {
    background: #fff;
}

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

.faq-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border-left: 4px solid #333399;
}

.faq-card h4 {
    color: #333399;
    margin-bottom: 10px;
}

/* Safety Tips */
.safety-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.safety-tip {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border-top: 5px solid #FFD700;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

.safety-tip p {
    color: #666;
    line-height: 1.7;
}

/* Anonymous Chat Page Styles */
.anonymous-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/gay12.jpg') no-repeat center center/cover;
    height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
}

.anonymous-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.anonymous-hero-content p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-gold {
    background: linear-gradient(135deg, #FFD700, #FDB931);
    color: #333;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    border: none;
    box-shadow: 0 4px 15px rgba(253, 185, 49, 0.4);
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(253, 185, 49, 0.6);
    background: linear-gradient(135deg, #FDB931, #FFD700);
}

/* Responsive for About Page */
@media (max-width: 768px) {
    .about-hero {
        height: auto;
        padding: 60px 0;
        min-height: 300px;
    }

    .anonymous-hero {
        height: auto;
        padding: 80px 0 60px; /* Add padding to prevent H1 cut-off */
        min-height: 400px;
        background-position: center top; /* Ensure face is visible */
    }
    
    .about-hero-content h1,
    .anonymous-hero-content h1 {
        font-size: 2.2rem; /* Slightly smaller to fit better */
        margin-top: 20px;
    }
    
    .anonymous-hero-content p {
        font-size: 1.1rem;
        padding: 0 15px;
    }

    .btn-gold {
        padding: 12px 25px; /* Reduce padding for mobile */
        width: 90%; /* Prevent overflow */
        max-width: 300px;
        box-sizing: border-box; /* Ensure padding includes in width */
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1; /* Show image first on mobile */
    }
}
/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: none;
    flex-direction: column;
    justify-content: center; /* Center vertically */
    align-items: center; /* Center horizontally */
    overflow-y: auto; /* Allow scrolling if content is tall */
    padding: 20px 0;
}

.mobile-menu-overlay.active {
    display: flex; /* Changed from block to flex for centering */
}

/* Ensure the menu content doesn't get cut off on small screens */
@media (max-height: 600px) {
    .mobile-menu-overlay.active {
        display: block; /* Switch to block on short screens to allow scrolling */
        padding-top: 60px;
    }
}

.mobile-menu-links {
    list-style: none;
    text-align: center;
    width: 100%;
    max-width: 400px; /* Limit width on tablets */
}

.mobile-menu-links li {
    margin: 15px 0;
}

.mobile-menu-links a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
}

.mobile-menu-links a:hover {
    color: #FFD700;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

/* Mobile Dropdown Styles */
.mobile-dropdown-content {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    margin-top: 10px;
    border-radius: 8px;
    padding: 10px 0;
    flex-direction: column; /* Ensure vertical stacking */
    max-height: 300px;
    overflow-y: auto;
}

/* Scrollbar for mobile dropdown */
.mobile-dropdown-content::-webkit-scrollbar {
    width: 6px;
}

.mobile-dropdown-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.mobile-dropdown-content::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.mobile-dropdown-content.active {
    display: flex; /* Use flex to enforce column direction */
}

.mobile-dropdown-content a {
    font-size: 1.1rem; /* Smaller font for sub-items */
    padding: 10px 0;
    color: #ddd;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    width: 100%; /* Full width */
}

.mobile-dropdown-content a:last-child {
    border-bottom: none;
}

.mobile-dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.mobile-dropdown-toggle {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

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

@media (max-width: 768px) {
    .nav { display: none; }
    .hamburger { display: flex; }
    .btn-header-desktop { display: none; }
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }

    /* .header-container {
        flex-direction: column; 
    } Removed to keep logo and hamburger side-by-side */

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

    .safety-content,
    .about-faq-grid {
        grid-template-columns: 1fr;
    }

    .nav-list {
        margin: 20px 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .profiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 576px) {
    .profiles-grid {
        grid-template-columns: 1fr;
    }
    
    h1 {
        font-size: 2rem;
    }
}

/* Video Chat Page Styles */
.video-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/gay11.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.video-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #fff;
}

.video-hero-content p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    color: #fff;
}

/* Steps Section */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

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

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

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #333399, #000066);
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 15px;
    color: #333;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 30px;
}

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

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: bold;
    border-right: 1px solid #eee;
}

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

.table-responsive {
    overflow-x: auto;
}

/* Responsive Adjustments for Video Page */
@media (max-width: 768px) {
    .video-hero {
        height: auto;
        padding: 80px 0;
        min-height: 400px;
    }

    .video-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .video-hero-content p {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .comparison-table th, 
    .comparison-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
}

/* Sexting Chat Page Styles */
.sexting-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/gaydaddy508-1464x795.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.sexting-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: #fff;
}

.sexting-hero-content p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    color: #fff;
}

@media (max-width: 768px) {
    .sexting-hero {
        height: auto;
        padding: 80px 0;
        min-height: 400px;
    }

    .sexting-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .sexting-hero-content p {
        font-size: 1.1rem;
        padding: 0 15px;
    }
}

/* Sexting Table Specific Styles */
.sexting-comparison-table {
    border: 1px solid #e0e0e0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    background-color: #fff;
}

.sexting-comparison-table th {
    background: linear-gradient(135deg, #444, #222);
    color: #fff !important; /* Force white text */
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #000;
    padding: 18px 15px;
}

.sexting-comparison-table td {
    color: #333;
    font-weight: 500;
    font-size: 0.95rem;
    vertical-align: middle;
}

.sexting-comparison-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.sexting-comparison-table tr:hover td {
    background-color: #f0f0f0;
    color: #000;
}

.sexting-comparison-table td:first-child {
    background-color: #f1f1f1;
    color: #111;
    font-weight: 700;
}

/* BDSM Chat Page Styles */
.bdsm-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/fetishdating-1500x844.jpg');
    background-size: cover;
    background-position: center;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.bdsm-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    color: #fff;
    font-weight: 800;
}

.bdsm-hero-content p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
    color: #ddd;
}

.bdsm-comparison-table {
    border: 1px solid #333;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    background-color: #fff;
}

.bdsm-comparison-table th {
    background: #1a1a1a;
    color: #fff !important;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1rem;
    padding: 18px 15px;
    border-bottom: 3px solid #800000; /* Dark Red accent */
}

.bdsm-comparison-table td {
    color: #333;
    border-bottom: 1px solid #eee;
    padding: 15px;
    vertical-align: middle;
}

.bdsm-comparison-table tr:hover td {
    background-color: #f5f5f5;
}

@media (max-width: 768px) {
    .bdsm-hero {
        height: auto;
        padding: 80px 0;
        min-height: 400px;
    }
    .bdsm-hero-content h1 {
        font-size: 2.2rem;
    }
    .bdsm-hero-content p {
        font-size: 1.1rem;
        padding: 0 15px;
    }
}

/* Chat Lines Page Styles */
.chatlines-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/gaydaddy508-1464x795.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.chatlines-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 800;
}

.chatlines-hero-content p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

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

.chatlines-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.chatlines-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 350px;
    object-fit: cover;
}

.chatlines-comparison-table {
    border: 1px solid #ddd;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background-color: #fff;
    color: #333;
}

.chatlines-comparison-table th {
    background: #333399; /* Match site theme */
    color: #fff !important;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 15px;
}

.chatlines-comparison-table td {
    color: #333;
    border-bottom: 1px solid #eee;
    padding: 15px;
    vertical-align: middle;
}

.chatlines-comparison-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.chatlines-comparison-table tr:hover td {
    background-color: #f0f4ff;
}

.chatlines-comparison-table .highlight {
    background-color: #f0f4ff;
    font-weight: bold;
    color: #333399;
}

.chatlines-comparison-table th.highlight {
    background-color: #1a1a4d;
    color: #FFD700 !important;
}

@media (max-width: 768px) {
    .chatlines-hero {
        height: auto;
        padding: 80px 0;
        min-height: 400px;
    }
    .chatlines-hero-content h1 {
        font-size: 2.2rem;
    }
    .chatlines-hero-content p {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    .chatlines-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .chatlines-image {
        order: -1;
    }
}

/* Chat Lines New Sections */
.chatlines-services-grid,
.chatlines-icebreakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.chatlines-list-box {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-left: 5px solid #333399;
    transition: transform 0.3s ease;
}

.chatlines-list-box:hover {
    transform: translateY(-5px);
}

.chatlines-list-box h3 {
    color: #333399;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.chatlines-icebreaker {
    background: #f4f6f8;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-style: italic;
    color: #555;
    border-left: 3px solid #FFD700;
    position: relative;
    padding-left: 35px;
}

.chatlines-icebreaker::before {
    content: '"';
    font-size: 3rem;
    color: #FFD700;
    position: absolute;
    top: -5px;
    left: 5px;
    line-height: 1;
    opacity: 0.5;
}

/* Random Chat Page Styles */
.randomchat-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/daddy04-1338x630.jpg');
    background-size: cover;
    background-position: center;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    position: relative;
}

.randomchat-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 800;
}

.randomchat-hero-content p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

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

.randomchat-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.randomchat-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 400px;
    object-fit: cover;
}

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

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

.randomchat-feature-card:hover {
    transform: translateY(-10px);
}

.randomchat-feature-card h3 {
    color: #333399;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.randomchat-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    color: #333;
}

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

.randomchat-comparison-table th {
    background: #333399;
    color: #fff;
}

.randomchat-comparison-table .highlight {
    background: #f0f4ff;
    font-weight: bold;
    color: #000000;
}

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

.randomchat-safety-item {
    background: #fff;
    padding: 20px;
    border-left: 4px solid #FFD700;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

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

.randomchat-faq-item h4 {
    color: #333399;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .randomchat-hero {
        height: auto;
        padding: 80px 0;
    }
    .randomchat-hero-content h1 {
        font-size: 2.5rem;
    }
    .randomchat-grid {
        grid-template-columns: 1fr;
    }
}

/* India Page Styles */
.india-hero {
    position: relative;
    background: linear-gradient(135deg, #fff5e6 0%, #ffffff 50%, #e6f5e6 100%);
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.india-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.india-hero-content {
    color: #333;
}

.india-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #222;
}

.india-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.india-content-block {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    text-align: center;
}

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

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

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

.india-feature-card h3 {
    color: #ff9933;
    margin-bottom: 15px;
}

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

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

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

.india-city-info {
    padding: 20px;
}

.india-city-info h3 {
    color: #138808;
    margin-bottom: 10px;
}

.india-text-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.india-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.india-comparison-table th {
    background: #ff9933;
    color: #fff;
}

.india-comparison-table .highlight {
    background: #f0fdf4;
    font-weight: bold;
    color: #000;
}

.india-safety-list ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.india-safety-list li {
    background: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #138808;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

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

.india-faq-item h4 {
    color: #ff9933;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .india-hero {
        padding: 100px 0 60px;
        height: auto;
    }
    .india-hero-container {
        grid-template-columns: 1fr;
    }
    .india-hero-content h1 {
        font-size: 2.5rem;
    }
    .india-hero-image {
        order: -1;
    }
}

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

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

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

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

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

.india-venue-details {
    padding: 20px;
}

.india-venue-details h3 {
    color: #333399;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

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


.india-venue-info p {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

/* Turkey Page Styles */
.tr-hero {
    background: linear-gradient(135deg, #E30A17 0%, #8B0000 100%);
    padding: 160px 0 100px;
    color: #fff;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.tr-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.tr-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
}

.tr-hero-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 5px solid rgba(255,255,255,0.2);
}

.tr-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.tr-section-header h2 {
    color: #E30A17;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.tr-section-header .divider {
    width: 80px;
    height: 4px;
    background: #E30A17;
    margin: 0 auto;
    border-radius: 2px;
}

.tr-text-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.tr-text-content p {
    margin-bottom: 20px;
}

.tr-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

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

.tr-list li:before {
    content: "☪";
    position: absolute;
    left: 0;
    color: #E30A17;
    font-weight: bold;
}

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

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

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

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

.tr-city-info {
    padding: 20px;
}

.tr-city-info h3 {
    color: #E30A17;
    margin-bottom: 10px;
}

.tr-comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-radius: 10px;
}

.tr-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 600px;
}

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

.tr-comparison-table th {
    background: #f9f9f9;
    color: #E30A17;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.tr-comparison-table td.highlight {
    color: #E30A17;
    font-weight: 600;
    background: rgba(227, 10, 23, 0.03);
}

@media (max-width: 768px) {
    .tr-hero {
        padding: 100px 0 60px;
        height: auto;
    }
    .tr-hero-container {
        grid-template-columns: 1fr;
    }
    .tr-hero-image {
        order: -1;
    }
}


.india-venue-info i {
    margin-right: 10px;
    color: #ff9933;
    width: 20px;
}

.india-venue-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

/* USA Page Styles */
.usa-hero {
    position: relative;
    background: linear-gradient(135deg, #f0f4ff 0%, #ffffff 50%, #fff0f0 100%);
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 80vh;
}

.usa-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.usa-hero-content {
    color: #333;
}

.usa-hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #333399;
}

.usa-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    color: #555;
}

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

.usa-content-block {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    text-align: center;
}

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

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

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

.usa-feature-card h3 {
    color: #B22234; /* USA Red */
    margin-bottom: 15px;
}

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

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

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

.usa-city-info {
    padding: 20px;
}

.usa-city-info h3 {
    color: #333399;
    margin-bottom: 10px;
}

.usa-text-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.usa-comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.usa-comparison-table th {
    background: #333399;
    color: #fff;
}

.usa-comparison-table .highlight {
    background: #f0f4ff;
    font-weight: bold;
    color: #B22234;
}

.usa-safety-list ul {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.usa-safety-list li {
    background: #fff;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #B22234;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

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

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

.usa-faq-item h4 {
    color: #B22234;
    margin-bottom: 10px;
}

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

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

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

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

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

.usa-venue-details {
    padding: 20px;
}

.usa-venue-details h3 {
    color: #333399;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

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

.usa-venue-info p {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.usa-venue-info i {
    margin-right: 10px;
    color: #B22234;
    width: 20px;
}

.usa-venue-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 768px) {
    .usa-hero {
        padding: 100px 0 60px;
        height: auto;
    }
    .usa-hero-container {
        grid-template-columns: 1fr;
    }
    .usa-hero-content h1 {
        font-size: 2.5rem;
    }
    .usa-hero-image {
        order: -1;
    }
}

/* UK Page Styles */
.uk-hero {
    background: linear-gradient(135deg, #00247d 0%, #cf142b 100%);
    padding: 160px 0 100px;
    color: #fff;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.uk-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.uk-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
}

.uk-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 5px solid rgba(255,255,255,0.2);
    transform: rotate(2deg);
}

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

.uk-feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    border-bottom: 4px solid #cf142b;
    transition: transform 0.3s ease;
}

.uk-feature-card:hover {
    transform: translateY(-10px);
}

.uk-feature-card h3 {
    color: #00247d;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.uk-text-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

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

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

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

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

.uk-city-info {
    padding: 25px;
}

.uk-city-info h3 {
    color: #00247d;
    margin-bottom: 10px;
}

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

.uk-venue-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

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

.uk-venue-details {
    padding: 20px;
    flex-grow: 1;
}

.uk-venue-details h3 {
    color: #cf142b;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.uk-venue-info p {
    margin-bottom: 5px;
    color: #666;
    font-size: 0.9rem;
}

.uk-venue-desc {
    margin-top: 15px;
    font-style: italic;
    color: #444;
}

.uk-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

.uk-comparison-table th {
    background: #00247d;
    color: #fff;
}

.uk-comparison-table .highlight {
    color: #cf142b;
    font-weight: bold;
    background: rgba(207, 20, 43, 0.05);
}

.uk-faq-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #00247d;
}

.uk-faq-item h4 {
    color: #00247d;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .uk-hero {
        padding: 100px 0 60px;
        height: auto;
    }
    .uk-hero-container {
        grid-template-columns: 1fr;
    }
    .uk-hero-content h1 {
        font-size: 2.5rem;
    }
    .uk-hero-image {
        order: -1;
    }
}

/* Canada Page Styles */
.ca-hero {
    background: linear-gradient(135deg, #FF0000 0%, #8B0000 100%);
    padding: 160px 0 100px;
    color: #fff;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.ca-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.ca-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
}

.ca-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 5px solid rgba(255,255,255,0.2);
}

.ca-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.ca-section-header h2 {
    color: #8B0000;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.ca-feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    border-bottom: 4px solid #FF0000;
    transition: transform 0.3s ease;
}

.ca-feature-card:hover {
    transform: translateY(-10px);
}

.ca-feature-card h3 {
    color: #8B0000;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.ca-text-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

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

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

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

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

.ca-city-info {
    padding: 25px;
}

.ca-city-info h3 {
    color: #8B0000;
    margin-bottom: 10px;
}

.ca-comparison-table-wrapper {
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.ca-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.ca-comparison-table th, .ca-comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
    white-space: nowrap;
}

.ca-comparison-table th {
    background: #8B0000;
    color: #fff;
}

.ca-comparison-table .highlight {
    color: #FF0000;
    font-weight: bold;
    background: rgba(255, 0, 0, 0.05);
}

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

.ca-venue-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

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

.ca-venue-details {
    padding: 20px;
    flex-grow: 1;
}

.ca-venue-details h3 {
    color: #8B0000;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.ca-venue-info p {
    margin-bottom: 5px;
    color: #666;
    font-size: 0.9rem;
}

.ca-venue-desc {
    margin-top: 15px;
    font-style: italic;
    color: #444;
}

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

.ca-faq-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #8B0000;
}

.ca-faq-item h4 {
    color: #8B0000;
    margin-bottom: 10px;
}

.ca-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.ca-list li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .ca-hero {
        padding: 100px 0 60px;
        height: auto;
    }
    .ca-hero-container {
        grid-template-columns: 1fr;
    }
    .ca-hero-content h1 {
        font-size: 2.5rem;
    }
    .ca-hero-image {
        order: -1;
    }
}
.au-hero {
    background: linear-gradient(135deg, #00008b 0%, #00843D 100%);
    padding: 160px 0 100px;
    color: #fff;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.au-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

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

.au-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 500px;
}

.au-hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 5px solid rgba(255,255,255,0.2);
}

.au-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.au-section-header h2 {
    color: #00008b;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

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

.au-feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
    border-bottom: 4px solid #FFD700;
    transition: transform 0.3s ease;
}

.au-feature-card:hover {
    transform: translateY(-10px);
}

.au-feature-card h3 {
    color: #00843D;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.au-text-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

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

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

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

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

.au-city-info {
    padding: 25px;
}

.au-city-info h3 {
    color: #00008b;
    margin-bottom: 10px;
}

.au-comparison-table-wrapper {
    overflow-x: auto;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.au-comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.au-comparison-table th, .au-comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #eee;
    white-space: nowrap;
}

.au-comparison-table th {
    background: #00008b;
    color: #fff;
}

.au-comparison-table .highlight {
    color: #00843D;
    font-weight: bold;
    background: rgba(0, 132, 61, 0.05);
}

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

.au-venue-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

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

.au-venue-details {
    padding: 20px;
    flex-grow: 1;
}

.au-venue-details h3 {
    color: #00843D;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.au-venue-info p {
    margin-bottom: 5px;
    color: #666;
    font-size: 0.9rem;
}

.au-venue-desc {
    margin-top: 15px;
    font-style: italic;
    color: #444;
}

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

.au-faq-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #00008b;
}

.au-faq-item h4 {
    color: #00008b;
    margin-bottom: 10px;
}

.au-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.au-list li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .au-hero {
        padding: 100px 0 60px;
        height: auto;
    }
    .au-hero-container {
        grid-template-columns: 1fr;
    }
    .au-hero-content h1 {
        font-size: 2.5rem;
    }
    .au-hero-image {
        order: -1;
    }
}

/* Serbia Page Styles */
.rs-hero {
    position: relative;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 120px 0 80px;
    color: white;
    overflow: hidden;
}

.rs-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.rs-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.rs-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.rs-hero-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.rs-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.rs-section-header h2 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.rs-text-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.rs-text-content p {
    margin-bottom: 20px;
}

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

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

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

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

.rs-city-info {
    padding: 20px;
}

.rs-city-info h3 {
    margin-bottom: 10px;
    color: #1e3c72;
}

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

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

.rs-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #1e3c72;
    font-weight: bold;
}

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

@media (max-width: 768px) {
    .rs-hero-container {
        grid-template-columns: 1fr;
    }
    .rs-hero-image {
        order: -1;
        margin-bottom: 30px;
    }
    .rs-cities-grid {
        grid-template-columns: 1fr;
    }
}

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

.rs-faq-item {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #1e3c72;
}

.rs-faq-item h4 {
    color: #1e3c72;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.rs-faq-item p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Greece Page Styles */
.gr-hero {
    position: relative;
    background: linear-gradient(135deg, #0056b3 0%, #004494 100%);
    padding: 120px 0 80px;
    color: white;
    overflow: hidden;
}

.gr-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.gr-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.gr-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.gr-hero-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.gr-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.gr-section-header h2 {
    color: #0056b3;
    margin-bottom: 15px;
}

.gr-text-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.gr-text-content p {
    margin-bottom: 20px;
}

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

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

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

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

.gr-city-info {
    padding: 20px;
}

.gr-city-info h3 {
    margin-bottom: 10px;
    color: #0056b3;
}

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

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

.gr-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0056b3;
    font-weight: bold;
}

.gr-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.gr-content-block {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #0056b3;
}

.gr-content-block h4 {
    color: #0056b3;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

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

@media (max-width: 768px) {
    .gr-hero-container {
        grid-template-columns: 1fr;
    }
    .gr-hero-image {
        order: -1;
        margin-bottom: 30px;
    }
    .gr-cities-grid {
        grid-template-columns: 1fr;
    }
    .gr-grid-2col {
        grid-template-columns: 1fr;
    }
}

/* Egypt Page Styles */
.eg-hero {
    position: relative;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 120px 0 80px;
    color: white;
    overflow: hidden;
    border-bottom: 4px solid #d4af37;
}

.eg-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.eg-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #d4af37;
}

.eg-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.eg-hero-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.eg-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.eg-section-header h2 {
    color: #000;
    margin-bottom: 15px;
}

.eg-text-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.eg-text-content p {
    margin-bottom: 20px;
}

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

.eg-city-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

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

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

.eg-city-info {
    padding: 20px;
}

.eg-city-info h3 {
    margin-bottom: 10px;
    color: #d4af37;
}

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

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

.eg-list li:before {
    content: '⭐';
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.eg-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.eg-content-block {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-top: 4px solid #d4af37;
}

.eg-content-block h4 {
    color: #000;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.eg-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.eg-step-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.eg-step-card h3 {
    color: #d4af37;
    margin-bottom: 10px;
}

@media (max-width: 992px) {
    .eg-cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .eg-steps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .eg-hero-container {
        grid-template-columns: 1fr;
    }
    .eg-hero-image {
        order: -1;
        margin-bottom: 30px;
    }
    .eg-cities-grid {
        grid-template-columns: 1fr;
    }
    .eg-grid-2col {
        grid-template-columns: 1fr;
    }
}

/* New Zealand Page Styles */
.nz-hero {
    position: relative;
    background: linear-gradient(135deg, #000 0%, #333 100%);
    padding: 120px 0 80px;
    color: white;
    overflow: hidden;
    border-bottom: 4px solid #fff;
}

.nz-hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.nz-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
}

.nz-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.nz-hero-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
    width: 100%;
    height: auto;
    object-fit: cover;
}

.nz-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.nz-section-header h2 {
    color: #000;
    margin-bottom: 15px;
}

.nz-text-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

.nz-text-content p {
    margin-bottom: 20px;
}

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

.nz-city-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    border: 1px solid #eee;
}

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

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

.nz-city-info {
    padding: 20px;
}

.nz-city-info h3 {
    margin-bottom: 10px;
    color: #000;
}

.nz-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.nz-content-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.nz-regions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.nz-region-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 4px solid #000;
}

.nz-region-card h3 {
    margin-bottom: 15px;
    color: #000;
}

.nz-content-block {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

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

.nz-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #000;
    font-weight: bold;
}

.nz-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.nz-comparison-col img {
    width: 100%;
    border-radius: 10px;
}

.nz-comparison-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nz-comparison-item h4 {
    color: #fff;
    margin-bottom: 10px;
}

.nz-comparison-item p {
    color: #ccc;
    font-size: 0.95rem;
}

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

@media (max-width: 768px) {
    .nz-hero-container {
        grid-template-columns: 1fr;
    }
    .nz-hero-image {
        order: -1;
        margin-bottom: 30px;
    }
    .nz-cities-grid {
        grid-template-columns: 1fr;
    }
    .nz-grid-2col {
        grid-template-columns: 1fr;
    }
    .nz-regions-grid {
        grid-template-columns: 1fr;
    }
    .nz-comparison-grid {
        grid-template-columns: 1fr;
    }
    .reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
    .reverse-mobile .nz-content-image {
        margin-bottom: 30px;
    }
}

/* New Zealand Bars Section */
.nz-bars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

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

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

.nz-bar-content {
    padding: 20px;
}

.nz-bar-content h3 {
    color: #000;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.nz-bar-details {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.nz-bar-details div {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.nz-bar-details i {
    width: 20px;
    margin-right: 5px;
    color: #000;
}

.nz-bar-tag {
    display: inline-block;
    padding: 4px 10px;
    background: #f0f0f0;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #333;
    margin-top: 10px;
}

/* New Zealand Comparison Table */
.nz-comparison-table-container {
    overflow-x: auto;
    margin-top: 30px;
}

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

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

.nz-comparison-table th {
    background: #000;
    color: #fff;
    font-weight: bold;
}

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

.nz-comparison-table .highlight {
    background: #f9f9f9;
    font-weight: bold;
}

/* New Zealand FAQ Section */
.nz-faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.nz-faq-item h4 {
    color: #000;
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.4;
}

.nz-faq-item p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* New Zealand CTA Section */
.nz-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #000 0%, #222 100%);
    color: #fff;
    text-align: center;
    border-top: 4px solid #fff;
}

.nz-cta-section h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.nz-cta-section p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #ccc;
}

.nz-cta-section .btn {
    background: #fff;
    color: #000;
    font-weight: 700;
    padding: 15px 40px;
    font-size: 1.2rem;
    border: none;
    box-shadow: 0 4px 15px rgba(255,255,255,0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nz-cta-section .btn:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,255,255,0.2);
}

/* Netherlands Page Styles */
.nl-hero {
    position: relative;
    background: url('images/Rotterdam.jpg') no-repeat center center/cover;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.nl-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 153, 51, 0.8), rgba(0, 0, 0, 0.7)); /* Orange to Black */
    z-index: 1;
}

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

.nl-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.nl-hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.nl-btn-primary {
    background: #FF9933; /* Dutch Orange */
    color: #fff;
    padding: 15px 40px;
    font-size: 1.2rem;
    border-radius: 30px;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(255, 153, 51, 0.4);
}

.nl-btn-primary:hover {
    background: #e68a00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 153, 51, 0.6);
    color: #fff;
}

.nl-section {
    padding: 80px 0;
}

.nl-bg-light {
    background: #f8f9fa;
}

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

.nl-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.nl-section-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.nl-divider {
    width: 60px;
    height: 4px;
    background: #FF9933;
    margin: 0 auto;
}

.nl-content-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.nl-text-col, .nl-img-col {
    flex: 1;
    min-width: 300px;
}

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

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

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

.nl-city-card:hover {
    transform: translateY(-10px);
}

.nl-city-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

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

.nl-city-card:hover .nl-city-img img {
    transform: scale(1.1);
}

.nl-city-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FF9933;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.nl-city-info {
    padding: 25px;
}

.nl-city-info h3 {
    margin-bottom: 10px;
    color: #333;
}

.nl-city-info p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.nl-feature-list, .nl-check-list {
    list-style: none;
    padding: 0;
}

.nl-feature-list li {
    margin-bottom: 20px;
    padding-left: 20px;
    border-left: 3px solid #FF9933;
}

.nl-check-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.nl-check-list li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #FF9933;
    font-weight: bold;
}

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

.nl-bar-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.nl-bar-card:hover {
    border-color: #FF9933;
    box-shadow: 0 5px 20px rgba(255, 153, 51, 0.15);
}

.nl-bar-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.nl-table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 30px;
    border-radius: 10px;
}

.nl-comparison-table {
    width: 100%;
    min-width: 700px; /* Ensure table doesn't squash on small screens */
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

.nl-comparison-table th {
    background: #333;
    color: #fff;
}

.nl-comparison-table .highlight {
    background: rgba(255, 153, 51, 0.1); /* Light Orange */
    font-weight: bold;
    color: #d35400;
}

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

.nl-card-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-top: 5px solid #FF9933;
}

.nl-card-box h3 {
    margin-bottom: 25px;
    color: #333;
}

.nl-cta {
    padding: 100px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/Utrecht.jpg') no-repeat center center/cover;
    text-align: center;
    color: #fff;
}

.nl-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.nl-cta p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #eee;
}

.nl-btn-cta {
    background: #fff;
    color: #FF9933;
    padding: 18px 50px;
    font-size: 1.3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
}

.nl-btn-cta:hover {
    background: #FF9933;
    color: #fff;
    transform: scale(1.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nl-hero h1 { font-size: 2rem; }
    .nl-hero p { font-size: 1rem; }
    .nl-content-row { flex-direction: column; }
    .nl-cta h2 { font-size: 2rem; }
}

/* Portugal Page Styles */
.pt-hero {
    position: relative;
    background: url('images/Porto.jpg') no-repeat center center/cover;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
}

.pt-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.8), rgba(0, 0, 0, 0.7)); /* Red to Black */
    z-index: 1;
}

.pt-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.pt-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.pt-hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
}

.pt-btn-primary {
    background: #e63946; /* Portugal Red */
    color: #fff;
    padding: 18px 45px;
    font-size: 1.3rem;
    border-radius: 50px;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
}

.pt-btn-primary:hover {
    background: #c1121f;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(230, 57, 70, 0.5);
    color: #fff;
}

.pt-section {
    padding: 100px 0;
}

.pt-bg-light {
    background: #fdf0d5; /* Light Cream */
}

.pt-bg-dark {
    background: #003049; /* Deep Blue */
    color: #fff;
}

.pt-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.pt-section-header h2 {
    font-size: 2.8rem;
    color: #003049;
    margin-bottom: 20px;
}

.pt-divider {
    width: 80px;
    height: 5px;
    background: #e63946;
    margin: 0 auto;
}

.pt-content-row {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.pt-text-col, .pt-img-col {
    flex: 1;
    min-width: 300px;
}

.pt-img-col img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pt-cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.pt-city-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
}

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

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

.pt-city-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.pt-city-card:hover .pt-city-img img {
    transform: scale(1.15);
}

.pt-city-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #e63946;
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: bold;
}

.pt-city-info {
    padding: 30px;
}

.pt-city-info h3 {
    margin-bottom: 15px;
    color: #003049;
    font-size: 1.6rem;
}

.pt-city-info p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
}

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

.pt-info-box {
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-left: 8px solid #e63946;
}

.pt-info-box h3 {
    margin-bottom: 30px;
    color: #003049;
    font-size: 1.8rem;
}

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

.pt-list li {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    line-height: 1.6;
}

.pt-list li::before {
    content: '❤';
    position: absolute;
    left: 0;
    color: #e63946;
}

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

.pt-bar-card {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.pt-bar-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: #e63946;
    transform: scale(1.05);
}

.pt-bar-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.pt-table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.pt-comparison-table {
    width: 100%;
    min-width: 800px;
    border-collapse: collapse;
    background: #fff;
}

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

.pt-comparison-table th {
    background: #003049;
    color: #fff;
    font-size: 1.1rem;
}

.pt-comparison-table .highlight {
    background: rgba(230, 57, 70, 0.05);
    font-weight: bold;
    color: #e63946;
}

.pt-text-block {
    background: #fff;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

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

.pt-cta {
    padding: 120px 0;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('images/Faro.jpg') no-repeat center center/cover;
    text-align: center;
    color: #fff;
}

.pt-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #fff;
}

.pt-cta p {
    font-size: 1.5rem;
    margin-bottom: 50px;
    color: #ddd;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pt-btn-cta {
    background: #e63946;
    color: #fff;
    padding: 20px 60px;
    font-size: 1.5rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.4);
}

.pt-btn-cta:hover {
    background: #fff;
    color: #e63946;
    transform: scale(1.1);
}

/* Portugal Responsive */
@media (max-width: 992px) {
    .pt-hero h1 { font-size: 2.5rem; }
    .pt-section { padding: 60px 0; }
    .pt-section-header h2 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .pt-hero h1 { font-size: 2rem; }
    .pt-hero p { font-size: 1.1rem; }
    .pt-content-row { flex-direction: column; }
    .pt-grid-2 { grid-template-columns: 1fr; }
    .pt-info-box { padding: 30px; }
    .pt-cta h2 { font-size: 2.2rem; }
}

/* Portugal Nightlife Section Optimization */
.pt-venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pt-venue-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s;
    display: flex;
    flex-direction: column;
}

.pt-venue-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(230, 57, 70, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.pt-venue-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.pt-venue-icon {
    font-size: 2.5rem;
    margin-right: 15px;
    background: #e63946;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.pt-venue-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.pt-venue-location {
    font-size: 0.9rem;
    color: #e63946;
    font-weight: 600;
    display: block;
    margin-top: 5px;
}

.pt-venue-details {
    margin-bottom: 20px;
    flex-grow: 1;
}

.pt-venue-row {
    display: flex;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #ddd;
    line-height: 1.5;
}

.pt-venue-label {
    font-weight: 700;
    color: #e63946;
    min-width: 110px;
    flex-shrink: 0;
}

.pt-venue-desc {
    font-style: italic;
    color: #bbb;
    margin-top: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
    background: rgba(0,0,0,0.2);
    padding: 10px;
    border-radius: 6px;
}

.pt-venue-tags {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pt-venue-tag {
    background: rgba(230, 57, 70, 0.2);
    color: #ffadad;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(230, 57, 70, 0.3);
}

@media (max-width: 768px) {
    .pt-venues-grid {
        grid-template-columns: 1fr;
    }
}

/* Sweden Page Styles */
:root {
    --se-blue: #006aa7;
    --se-yellow: #fecc00;
    --se-dark: #003049;
    --se-light: #f1faee;
}

.se-body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.se-hero {
    background: linear-gradient(rgba(0, 48, 73, 0.6), rgba(0, 48, 73, 0.6)), url('images/se.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    margin-top: 60px; /* Offset for fixed header */
    flex-direction: column;
}

.se-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    color: var(--se-yellow);
}

.se-hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.se-btn-hero {
    background: var(--se-yellow);
    color: var(--se-blue);
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: inline-block;
    border: 2px solid var(--se-yellow);
}

.se-btn-hero:hover {
    background: transparent;
    color: var(--se-yellow);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.se-section {
    padding: 80px 0;
}

.se-section-alt {
    background-color: #eef4f8;
}

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

.se-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.se-section-header h2 {
    font-size: 2.8rem;
    color: var(--se-blue);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.se-section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--se-yellow);
    margin: 10px auto 0;
    border-radius: 2px;
}

.se-content-block {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.se-content-block h3 {
    color: var(--se-blue);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.se-content-block p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
}

.se-content-block ul {
    list-style-type: none;
    padding-left: 0;
}

.se-content-block ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.se-content-block ul li::before {
    content: '✓';
    color: var(--se-blue);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

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

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

.se-city-card:hover {
    transform: translateY(-10px);
}

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

.se-city-info {
    padding: 25px;
}

.se-city-info h3 {
    color: var(--se-blue);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.se-city-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

/* Sweden Venues Grid */
.se-venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.se-venue-card {
    background: #fff;
    border: 1px solid rgba(0, 106, 167, 0.1);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.se-venue-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: var(--se-yellow);
}

.se-venue-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--se-light);
    padding-bottom: 15px;
}

.se-venue-icon {
    font-size: 2.5rem;
    margin-right: 15px;
    background: var(--se-blue);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 106, 167, 0.2);
    color: #fff;
}

.se-venue-name {
    font-size: 1.5rem;
    color: var(--se-blue);
    margin: 0;
    font-weight: 700;
}

.se-venue-location {
    font-size: 0.9rem;
    color: #777;
    font-weight: 600;
    display: block;
    margin-top: 5px;
}

.se-venue-details {
    margin-bottom: 20px;
    flex-grow: 1;
}

.se-venue-row {
    display: flex;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.se-venue-label {
    font-weight: 700;
    color: var(--se-blue);
    min-width: 90px;
    flex-shrink: 0;
}

.se-venue-desc {
    font-style: italic;
    color: #666;
    margin-top: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
    background: var(--se-light);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--se-yellow);
}

.se-venue-tags {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.se-venue-tag {
    background: rgba(0, 106, 167, 0.1);
    color: var(--se-blue);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 106, 167, 0.2);
}

/* Responsive Table */
.se-table-container {
    overflow-x: auto;
    margin: 30px 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.se-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.se-table th {
    background: var(--se-blue);
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.se-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: #444;
}

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

.se-table tr:nth-child(even) {
    background-color: #f8fbff;
}

/* CTA Section */
.se-cta {
    background: linear-gradient(rgba(0, 106, 167, 0.9), rgba(0, 106, 167, 0.9)), url('images/stockholm.jpg') no-repeat center center/cover;
    padding: 100px 0;
    text-align: center;
    color: #fff;
}

.se-cta h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--se-yellow);
}

.se-cta p {
    font-size: 1.4rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #eef;
}

.se-btn {
    display: inline-block;
    background: var(--se-yellow);
    color: var(--se-blue);
    padding: 18px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.se-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    background: #fff;
}

/* Switzerland Page Styles */
:root {
    --ch-red: #D52B1E;
    --ch-white: #FFFFFF;
    --ch-dark: #2D2D2D;
    --ch-light: #f9f9f9;
}

.ch-body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fcfcfc;
}

.ch-hero {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/ch.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    margin-top: 60px;
    flex-direction: column;
}

.ch-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    color: var(--ch-white);
}

.ch-hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.ch-btn-hero {
    background: var(--ch-red);
    color: var(--ch-white);
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: inline-block;
    border: 2px solid var(--ch-red);
}

.ch-btn-hero:hover {
    background: transparent;
    color: var(--ch-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.ch-section {
    padding: 80px 0;
}

.ch-section-alt {
    background-color: var(--ch-light);
}

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

.ch-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.ch-section-header h2 {
    font-size: 2.8rem;
    color: var(--ch-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.ch-section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--ch-red);
    margin: 10px auto 0;
    border-radius: 2px;
}

.ch-content-block {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 40px;
}

.ch-content-block h3 {
    color: var(--ch-red);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.ch-content-block p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #555;
}

.ch-content-block ul {
    list-style-type: none;
    padding-left: 0;
}

.ch-content-block ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.ch-content-block ul li::before {
    content: '+';
    color: var(--ch-red);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

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

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

.ch-city-card:hover {
    transform: translateY(-10px);
}

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

.ch-city-info {
    padding: 25px;
}

.ch-city-info h3 {
    color: var(--ch-red);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.ch-city-info p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 15px;
}

/* Switzerland Venues Grid */
.ch-venues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.ch-venue-card {
    background: #fff;
    border: 1px solid rgba(213, 43, 30, 0.1);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.ch-venue-card:hover {
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transform: translateY(-5px);
    border-color: var(--ch-red);
}

.ch-venue-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--ch-light);
    padding-bottom: 15px;
}

.ch-venue-icon {
    font-size: 2.5rem;
    margin-right: 15px;
    background: var(--ch-red);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(213, 43, 30, 0.2);
    color: #fff;
}

.ch-venue-name {
    font-size: 1.5rem;
    color: var(--ch-dark);
    margin: 0;
    font-weight: 700;
}

.ch-venue-location {
    font-size: 0.9rem;
    color: #777;
    font-weight: 600;
    display: block;
    margin-top: 5px;
}

.ch-venue-details {
    margin-bottom: 20px;
    flex-grow: 1;
}

.ch-venue-row {
    display: flex;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.ch-venue-label {
    font-weight: 700;
    color: var(--ch-red);
    min-width: 90px;
    flex-shrink: 0;
}

.ch-venue-desc {
    font-style: italic;
    color: #666;
    margin-top: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
    background: var(--ch-light);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--ch-red);
}

.ch-venue-tags {
    margin-top: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ch-venue-tag {
    background: rgba(213, 43, 30, 0.1);
    color: var(--ch-red);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(213, 43, 30, 0.2);
}

/* Responsive Table */
.ch-table-container {
    overflow-x: auto;
    margin: 30px 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ch-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.ch-table th {
    background: var(--ch-red);
    color: #fff;
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.ch-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: #444;
}

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

.ch-table tr:nth-child(even) {
    background-color: #fff9f9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .se-hero h1 { font-size: 2.2rem; }
    .se-hero p { font-size: 1.1rem; }
    .se-section-header h2 { font-size: 2.2rem; }
    .se-cities-grid, .se-venues-grid { grid-template-columns: 1fr; }
    .se-content-block { padding: 25px; }
    .se-cta h2 { font-size: 2.2rem; }

    /* Switzerland Mobile */
    .ch-hero h1 { font-size: 2.2rem; }
    .ch-hero p { font-size: 1.1rem; }
    .ch-section-header h2 { font-size: 2.2rem; }
    .ch-cities-grid, .ch-venues-grid { grid-template-columns: 1fr; }
    .ch-content-block { padding: 25px; }
}

/* Enhanced CTA for Switzerland */
.ch-cta-enhanced {
    background: linear-gradient(rgba(213, 43, 30, 0.9), rgba(45, 45, 45, 0.9)), url('images/gay10.jpg') no-repeat center center/cover;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    margin-top: 60px;
}

.ch-cta-enhanced h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.ch-cta-enhanced p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Mexico Page Styles */
:root {
    --mx-green: #006847;
    --mx-red: #CE1126;
    --mx-white: #FFFFFF;
    --mx-dark: #2D2D2D;
    --mx-light: #f9fff9;
}

.mx-body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: var(--mx-light);
}

.mx-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/CiudaddeMéxico.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    margin-top: 60px;
    flex-direction: column;
}

.mx-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.mx-hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.mx-btn-hero {
    background: var(--mx-green);
    color: var(--mx-white);
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: inline-block;
    border: 2px solid var(--mx-green);
}

.mx-btn-hero:hover {
    background: transparent;
    color: var(--mx-white);
    transform: translateY(-3px);
}

.mx-section {
    padding: 80px 0;
}

.mx-section-alt {
    background-color: #fff;
}

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

.mx-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.mx-section-header h2 {
    font-size: 2.8rem;
    color: var(--mx-green);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.mx-section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--mx-red);
}

.mx-content-block {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 5px solid var(--mx-green);
}

.mx-cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.mx-city-card:hover {
    transform: translateY(-10px);
}

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

.mx-city-info {
    padding: 25px;
}

.mx-city-info h3 {
    color: var(--mx-green);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.mx-venues-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.mx-venue-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.mx-venue-card:hover {
    border-color: var(--mx-green);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mx-venue-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.mx-venue-icon {
    width: 50px;
    height: 50px;
    background: var(--mx-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--mx-green);
}

.mx-venue-name {
    font-size: 1.4rem;
    color: #333;
    margin: 0;
}

.mx-venue-location {
    font-size: 0.9rem;
    color: #888;
}

.mx-venue-details {
    margin-bottom: 20px;
}

.mx-venue-row {
    display: flex;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.mx-venue-label {
    font-weight: 600;
    width: 80px;
    color: #555;
}

.mx-venue-desc {
    font-style: italic;
    color: #666;
    margin-top: 15px;
    line-height: 1.5;
}

.mx-venue-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mx-venue-tag {
    background: var(--mx-light);
    color: var(--mx-green);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.mx-table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.mx-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.mx-table th {
    background: var(--mx-green);
    color: #fff;
    padding: 15px;
    text-align: left;
}

.mx-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: #444;
}

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

.mx-table tr:nth-child(even) {
    background-color: var(--mx-light);
}

.mx-cta-enhanced {
    background: linear-gradient(rgba(0, 104, 71, 0.9), rgba(45, 45, 45, 0.9)), url('images/mexico.jpg') no-repeat center center/cover;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    margin-top: 60px;
}

.mx-cta-enhanced h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.mx-cta-enhanced p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .mx-hero h1 { font-size: 2.2rem; }
    .mx-hero p { font-size: 1.1rem; }
    .mx-section-header h2 { font-size: 2.2rem; }
    .mx-cities-grid, .mx-venues-grid { grid-template-columns: 1fr; }
    .mx-content-block { padding: 25px; }
    .mx-cta-enhanced h2 { font-size: 2.2rem; }


}

/* Denmark Page Styles */
:root {
    --dk-red: #C60C30;
    --dk-white: #FFFFFF;
    --dk-dark: #2D2D2D;
    --dk-light: #fcfcfc;
}

.dk-body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: var(--dk-light);
}

.dk-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('images/dk.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    margin-top: 60px;
    flex-direction: column;
}

.dk-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.dk-hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.6);
}

.dk-btn-hero {
    background: var(--dk-red);
    color: var(--dk-white);
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: inline-block;
    border: 2px solid var(--dk-red);
}

.dk-btn-hero:hover {
    background: transparent;
    color: var(--dk-white);
    transform: translateY(-3px);
}

.dk-section {
    padding: 80px 0;
}

.dk-section-alt {
    background-color: #fff;
}

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

.dk-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.dk-section-header h2 {
    font-size: 2.8rem;
    color: var(--dk-red);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.dk-section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--dk-dark);
}

.dk-content-block {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-left: 5px solid var(--dk-red);
}

.dk-cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.dk-city-card:hover {
    transform: translateY(-10px);
}

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

.dk-city-info {
    padding: 25px;
}

.dk-city-info h3 {
    color: var(--dk-red);
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.dk-venues-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.dk-venue-card {
    background: #fff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.dk-venue-card:hover {
    border-color: var(--dk-red);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.dk-venue-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.dk-venue-icon {
    width: 50px;
    height: 50px;
    background: #ffe6e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 15px;
    color: var(--dk-red);
}

.dk-venue-name {
    font-size: 1.4rem;
    color: #333;
    margin: 0;
}

.dk-venue-location {
    font-size: 0.9rem;
    color: #888;
}

.dk-venue-details {
    margin-bottom: 20px;
}

.dk-venue-row {
    display: flex;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.dk-venue-label {
    font-weight: 600;
    width: 80px;
    color: #555;
}

.dk-venue-desc {
    font-style: italic;
    color: #666;
    margin-top: 15px;
    line-height: 1.5;
}

.dk-venue-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.dk-venue-tag {
    background: #ffe6e6;
    color: var(--dk-red);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.dk-table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.dk-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.dk-table th {
    background: var(--dk-red);
    color: #fff;
    padding: 15px;
    text-align: left;
}

.dk-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
    color: #444;
}

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

.dk-table tr:nth-child(even) {
    background-color: #fff9f9;
}

.dk-cta-enhanced {
    background: linear-gradient(rgba(198, 12, 48, 0.9), rgba(45, 45, 45, 0.9)), url('images/background4.jpg') no-repeat center center/cover;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    margin-top: 60px;
}

.dk-cta-enhanced h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.dk-cta-enhanced p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Denmark Mobile Responsive Fixes */
@media (max-width: 768px) {
    .dk-hero {
        height: auto;
        min-height: 85vh;
        padding-top: 140px;
        padding-bottom: 60px;
        background-position: center top;
    }
    .dk-hero h1 { 
        font-size: 2.5rem; 
        line-height: 1.2;
        margin-top: 0;
    }
    .dk-hero p { 
        font-size: 1.1rem; 
        margin-bottom: 30px;
        padding: 0 10px;
    }
    .dk-btn-hero {
        width: 100%;
        max-width: 320px;
        box-sizing: border-box;
        white-space: normal;
        padding: 15px 20px;
    }
    .dk-section-header h2 { font-size: 2.2rem; }
    .dk-cities-grid, .dk-venues-grid { 
        grid-template-columns: 1fr !important; 
        gap: 30px;
    }
    .dk-content-block { padding: 25px; }
    .dk-cta-enhanced h2 { font-size: 2.2rem; }
    
    /* Table Optimization */
    .dk-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .dk-table {
        min-width: 600px;
    }
    .dk-table th, .dk-table td {
        white-space: normal;
        font-size: 0.9rem;
        padding: 10px;
    }
}

/* Romania Page Styles */
:root {
    --ro-blue: #002B7F;
    --ro-yellow: #FCD116;
    --ro-red: #CE1126;
}

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

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

.ro-hero {
    background: linear-gradient(rgba(0,43,127,0.7), rgba(0,43,127,0.5)), url('images/gaycouple.jpg') no-repeat center center/cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    margin-top: 60px;
    flex-direction: column;
}

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

.ro-hero p {
    font-size: 1.4rem;
    max-width: 700px;
    margin-bottom: 30px;
}

.ro-btn-hero {
    display: inline-block;
    background: var(--ro-yellow);
    color: var(--ro-blue);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--ro-yellow);
}

.ro-btn-hero:hover {
    background: transparent;
    color: #fff;
}

.ro-section {
    padding: 60px 0;
    background: #fff;
}

.ro-section-alt {
    padding: 60px 0;
    background: #f4f4f4;
}

.ro-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.ro-section-header h2 {
    color: var(--ro-blue);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.ro-content-block {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.ro-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ro-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.ro-card:hover, .ro-city-card:hover {
    transform: translateY(-5px);
}

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

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

.ro-card h3, .ro-city-info h3 {
    padding: 20px 20px 10px;
    color: var(--ro-blue);
}

.ro-card p, .ro-city-info p {
    padding: 0 20px 20px;
    color: #666;
}

.ro-list-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.ro-list-item {
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    align-items: center;
}

.ro-list-img {
    width: 150px;
    height: 120px;
    flex-shrink: 0;
}

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

.ro-list-content {
    padding: 20px;
}

.ro-list-content h3 {
    color: var(--ro-red);
    margin-bottom: 5px;
}

.ro-table-container {
    overflow-x: auto;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.ro-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 30px 0;
}

.ro-table th {
    background: var(--ro-blue);
    color: #fff;
    padding: 15px;
    text-align: left;
}

.ro-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.ro-check-list, .ro-bullet-list, .ro-terms-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.ro-check-list li {
    padding-left: 30px;
    position: relative;
    margin-bottom: 10px;
}

.ro-check-list li::before {
    content: '✓';
    color: var(--ro-red);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.ro-bullet-list li, .ro-terms-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    border-left: 3px solid var(--ro-yellow);
}

.ro-sub-title {
    color: var(--ro-blue);
    margin-bottom: 20px;
    border-bottom: 2px solid var(--ro-yellow);
    display: inline-block;
    padding-bottom: 5px;
}

.ro-faq-item {
    background: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid var(--ro-blue);
    border-radius: 5px;
}

.ro-faq-item h4 {
    color: var(--ro-blue);
    margin-bottom: 10px;
}

.ro-cta {
    background: linear-gradient(rgba(206, 17, 38, 0.9), rgba(0, 43, 127, 0.9)), url('images/gay15.jpg') no-repeat center center/cover;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

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

.ro-cta p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.ro-btn-cta {
    background: #fff;
    color: var(--ro-blue);
    border-color: #fff;
}

.ro-btn-cta:hover {
    background: var(--ro-yellow);
    color: var(--ro-blue);
    border-color: var(--ro-yellow);
}

@media (max-width: 768px) {
    .ro-hero h1 {
        font-size: 2rem;
    }
    .ro-cta {
        padding: 40px 20px;
    }
    .ro-grid-2, .ro-grid-3 {
        grid-template-columns: 1fr;
    }
    .ro-list-item {
        flex-direction: column;
    }
    .ro-list-img {
        width: 100%;
        height: 200px;
    }
}

/* Chile Page Styles */
:root {
    --cl-red: #DA291C;
    --cl-blue: #0033A0;
    --cl-white: #FFFFFF;
}

.cl-hero {
    background: url('images/Santiago.jpg') no-repeat center center/cover;
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.cl-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 160, 0.6); /* Blue overlay */
}

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

.cl-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cl-hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.cl-btn-hero {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--cl-red);
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 2px solid white;
}

.cl-btn-hero:hover {
    transform: translateY(-3px);
    background-color: #b91c10;
    text-decoration: none;
}

.cl-section {
    padding: 80px 0;
}

.cl-bg-alt {
    background-color: #f4f6f8;
}

.cl-section-title {
    text-align: center;
    color: var(--cl-blue);
    margin-bottom: 20px;
}

.cl-divider {
    height: 4px;
    width: 60px;
    background-color: var(--cl-red);
    margin: 0 auto 50px;
}

.cl-content-block {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

.cl-content-block p {
    margin-bottom: 20px;
}

.cl-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

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

.cl-feature-list li::before {
    content: '★';
    color: var(--cl-red);
    position: absolute;
    left: 0;
    top: 0;
}

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

.cl-mb-4 {
    margin-bottom: 2rem;
}

.cl-venues-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

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

.cl-venue-info {
    padding: 25px;
}

.cl-venue-info h3 {
    color: var(--cl-blue);
    margin-bottom: 10px;
}

.cl-venue-address {
    color: #666;
    font-style: italic;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.cl-venue-hours {
    color: var(--cl-red);
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.cl-cities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

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

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

.cl-city-info {
    padding: 25px;
}

.cl-city-info h3 {
    color: var(--cl-blue);
    margin-bottom: 10px;
}

.cl-info-block {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-left: 5px solid var(--cl-blue);
}

.cl-cta {
    background: linear-gradient(rgba(218, 41, 28, 0.9), rgba(0, 51, 160, 0.9)), url('images/Santiago.jpg') no-repeat center center/cover;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.cl-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.cl-cta p {
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.cl-btn-cta {
    background: #fff;
    color: var(--cl-blue);
    border-color: #fff;
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.2rem;
    font-weight: bold;
    border-radius: 50px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 2px solid white;
}

.cl-btn-cta:hover {
    background: var(--cl-blue);
    color: #fff;
    border-color: var(--cl-blue);
    text-decoration: none;
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .cl-cta {
        padding: 40px 20px;
    }
}

.cl-mt-4 {
    margin-top: 2rem;
}

.cl-table-container {
    overflow-x: auto;
}

.cl-terms-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

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

.cl-terms-table th {
    background-color: var(--cl-blue);
    color: white;
}

.cl-terms-table tr:hover {
    background-color: #f9f9f9;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .cl-hero h1 {
        font-size: 2rem;
    }
    
    .cl-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .cl-venues-grid {
        grid-template-columns: 1fr;
    }
    
    .cl-cities-grid {
        grid-template-columns: 1fr;
    }
    
    .cl-info-block {
        padding: 20px;
    }
}

