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

}

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

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

/* Header Styles */
.navbar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo h1 {
    color: #ffd700;
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ffd700;
}



/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #fff;
    padding: 4rem 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.cta-secondary:hover {
    background: #ffd700;
    color: #1a1a1a;
}

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

/* Features Section */
.features {
    padding: 4rem 0;
    background: #fff;
}

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

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

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

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

.feature-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

/* Member Preview Section */
.member-preview {
    padding: 4rem 0;
    background: #f8f9fa;
}

.member-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

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

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

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

.profile-info {
    padding: 1.5rem;
}

.profile-info h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.profile-info p {
    color: #666;
    margin-bottom: 1rem;
}

.verified {
    background: #28a745;
    color: #fff;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Content Split Sections */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.content-split.reverse {
    direction: rtl;
}

.content-split.reverse > * {
    direction: ltr;
}

.text-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

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

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

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

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

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

/* Section Backgrounds */
.sugar-daddy-ph, .sugar-mommy-ph {
    padding: 4rem 0;
    background: #fff;
}

.sugar-baby-ph {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* Top Cities Section */
.top-cities {
    padding: 4rem 0;
    background: #fff;
}

.top-cities h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

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

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

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

.city-card h3 {
    padding: 1rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: #1a1a1a;
}

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

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background: #f8f9fa;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

.testimonial-author h4 {
    color: #1a1a1a;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* App Section */
.app-section {
    padding: 4rem 0;
    background: #fff;
}

.app-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.app-store-btn, .google-play-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.app-store-btn {
    background: #000;
    color: #fff;
}

.google-play-btn {
    background: #01875f;
    color: #fff;
}

.app-store-btn:hover, .google-play-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 4rem 0;
    background: #f8f9fa;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.advantage-item {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.advantage-item h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

/* Free Trial Section */
.free-trial {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    text-align: center;
}

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

.trial-content > p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

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

.trial-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.checkmark {
    color: #ffd700;
    font-weight: bold;
    font-size: 1.2rem;
}

.cta-primary.large {
    font-size: 1.3rem;
    padding: 1.2rem 3rem;
    margin: 2rem 0;
}

.trial-note {
    color: #b0b0b0;
    font-style: italic;
}

.trial-note strong {
    color: #ffd700;
}

/* Final CTA Section */
.final-cta {
    padding: 4rem 0;
    background: #fff;
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #666;
}

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

/* Makati Tagalog Page Styles */
.makati-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%);
    color: #fff;
    padding: 6rem 0 4rem;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.makati-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.makati-hero .hero-title {
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.makati-overview {
    padding: 5rem 0;
    background: #fff;
}

.makati-districts {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

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

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

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

.district-info {
    padding: 2rem;
}

.district-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.makati-success {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
}

.makati-success h2 {
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 3rem;
}

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

.story-card {
    background: rgba(255,255,255,0.95);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.story-card h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.story-author {
    margin-top: 1.5rem;
    font-weight: 600;
    color: #666;
    font-style: italic;
}

.makati-lifestyle {
    padding: 5rem 0;
    background: #fff;
}

.makati-tips {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.tip-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #ffd700;
}

.tip-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.makati-venues {
    padding: 5rem 0;
    background: #fff;
}

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

.venue-category {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid #ffd700;
}

.venue-category h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.venue-category ul {
    list-style: none;
    padding: 0;
}

.venue-category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.venue-category li:last-child {
    border-bottom: none;
}

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

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

.safety-tips, .emergency-contacts {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.safety-tips h3, .emergency-contacts h3 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
}

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

.cta-note {
    margin-top: 1.5rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* Mobile Responsiveness for Makati Page */
@media (max-width: 768px) {
    .makati-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .makati-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .districts-grid {
        grid-template-columns: 1fr;
    }
    
    .success-stories {
        grid-template-columns: 1fr;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .venues-list {
        grid-template-columns: 1fr;
    }
    
    .safety-content {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .cta-primary,
    .cta-buttons .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
}

/* BGC Tagalog Page Styles */
.bgc-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.bgc-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Manila Tagalog Page Styles */
.manila-hero {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 50%, #FF6347 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

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

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

.manila-overview,
.manila-heritage,
.manila-success,
.manila-districts,
.manila-networking,
.manila-tips {
    padding: 80px 0;
}

.manila-overview {
    background: #f8f9fa;
}

.manila-heritage {
    background: #ffffff;
}

.manila-heritage .heritage-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.manila-heritage .heritage-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.manila-heritage .stat-card {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.2);
}

.manila-heritage .stat-card h4 {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.manila-heritage .stat-card p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.manila-success {
    background: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
    color: white;
}

.manila-districts {
    background: #f8f9fa;
}

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

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

.manila-districts .district-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 0, 0, 0.2);
}

.manila-districts .district-card h3 {
    color: #8B0000;
    margin-bottom: 15px;
}

.manila-networking {
    background: #ffffff;
}

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

.manila-networking .networking-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.manila-networking .benefit-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #8B0000;
}

.manila-networking .benefit-item h4 {
    color: #8B0000;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.manila-networking .benefit-item p {
    margin: 0;
    color: #666;
}

.manila-tips {
    background: #f8f9fa;
}

.manila-tips .tips-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.manila-tips .tips-column {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.manila-tips .tips-column h3 {
    color: #8B0000;
    margin-bottom: 25px;
    text-align: center;
}

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

.manila-tips .tips-column li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.manila-tips .tips-column li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8B0000;
    font-weight: bold;
}

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

@media (max-width: 768px) {
    .manila-hero {
        padding: 100px 0 60px;
    }
    
    .manila-overview,
    .manila-heritage,
    .manila-success,
    .manila-districts,
    .manila-networking,
    .manila-tips {
        padding: 60px 0;
    }
    
    .manila-heritage .heritage-content,
    .manila-networking .networking-content,
    .manila-tips .tips-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .manila-districts .districts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Davao Tagalog Page Styles */
.davao-hero {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 50%, #90EE90 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

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

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

.davao-overview,
.davao-economy,
.davao-success,
.davao-districts,
.davao-nature,
.davao-tips,
.davao-venues {
    padding: 80px 0;
}

.davao-overview {
    background: #f8f9fa;
}

.davao-economy {
    background: #ffffff;
}

.davao-economy .economy-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.davao-economy .economy-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.davao-economy .stat-card {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(34, 139, 34, 0.2);
}

.davao-economy .stat-card h4 {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.davao-economy .stat-card p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.davao-success {
    background: linear-gradient(135deg, #228B22 0%, #32CD32 100%);
    color: white;
}

.davao-districts {
    background: #f8f9fa;
}

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

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

.davao-districts .district-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 139, 34, 0.2);
}

.davao-districts .district-card h3 {
    color: #228B22;
    margin-bottom: 15px;
}

.davao-nature {
    background: #ffffff;
}

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

.davao-nature .nature-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.davao-nature .benefit-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #228B22;
}

.davao-nature .benefit-item h4 {
    color: #228B22;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.davao-nature .benefit-item p {
    margin: 0;
    color: #666;
}

.davao-tips {
    background: #f8f9fa;
}

.davao-tips .tips-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.davao-tips .tips-column {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.davao-tips .tips-column h3 {
    color: #228B22;
    margin-bottom: 25px;
    text-align: center;
}

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

.davao-tips .tips-column li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.davao-tips .tips-column li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #228B22;
    font-weight: bold;
}

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

.davao-venues {
    background: #ffffff;
}

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

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

.davao-venues .venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(34, 139, 34, 0.2);
}

.davao-venues .venue-card h3 {
    color: #228B22;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .davao-hero {
        padding: 100px 0 60px;
    }
    
    .davao-overview,
    .davao-economy,
    .davao-success,
    .davao-districts,
    .davao-nature,
    .davao-tips,
    .davao-venues {
        padding: 60px 0;
    }
    
    .davao-economy .economy-content,
    .davao-nature .nature-content,
    .davao-tips .tips-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .davao-districts .districts-grid,
    .davao-venues .venues-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Pasig Tagalog Page Styles */
.pasig-hero {
    background: linear-gradient(135deg, #4169E1 0%, #6495ED 50%, #87CEEB 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

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

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

.pasig-overview,
.pasig-corporate,
.pasig-success,
.pasig-districts,
.pasig-tech,
.pasig-tips,
.pasig-venues {
    padding: 80px 0;
}

.pasig-overview {
    background: #f8f9fa;
}

.pasig-corporate {
    background: #ffffff;
}

.pasig-corporate .corporate-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.pasig-corporate .corporate-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.pasig-corporate .stat-card {
    background: linear-gradient(135deg, #4169E1 0%, #6495ED 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(65, 105, 225, 0.2);
}

.pasig-corporate .stat-card h4 {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.pasig-corporate .stat-card p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.pasig-success {
    background: linear-gradient(135deg, #4169E1 0%, #6495ED 100%);
    color: white;
}

.pasig-districts {
    background: #f8f9fa;
}

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

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

.pasig-districts .district-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(65, 105, 225, 0.2);
}

.pasig-districts .district-card h3 {
    color: #4169E1;
    margin-bottom: 15px;
}

.pasig-tech {
    background: #ffffff;
}

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

.pasig-tech .tech-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.pasig-tech .benefit-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #4169E1;
}

.pasig-tech .benefit-item h4 {
    color: #4169E1;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.pasig-tech .benefit-item p {
    margin: 0;
    color: #666;
}

.pasig-tips {
    background: #f8f9fa;
}

.pasig-tips .tips-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.pasig-tips .tips-column {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pasig-tips .tips-column h3 {
    color: #4169E1;
    margin-bottom: 25px;
    text-align: center;
}

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

.pasig-tips .tips-column li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.pasig-tips .tips-column li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4169E1;
    font-weight: bold;
}

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

.pasig-venues {
    background: #ffffff;
}

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

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

.pasig-venues .venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(65, 105, 225, 0.2);
}

.pasig-venues .venue-card h3 {
    color: #4169E1;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .pasig-hero {
        padding: 100px 0 60px;
    }
    
    .pasig-overview,
    .pasig-corporate,
    .pasig-success,
    .pasig-districts,
    .pasig-tech,
    .pasig-tips,
    .pasig-venues {
        padding: 60px 0;
    }
    
    .pasig-corporate .corporate-content,
    .pasig-tech .tech-content,
    .pasig-tips .tips-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .pasig-districts .districts-grid,
    .pasig-venues .venues-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Alabang Tagalog Page Styles */
.alabang-hero {
    background: linear-gradient(135deg, #800080 0%, #9932CC 50%, #DA70D6 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

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

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

.alabang-overview,
.alabang-luxury,
.alabang-success,
.alabang-areas,
.alabang-experiences,
.alabang-tips,
.alabang-venues {
    padding: 80px 0;
}

.alabang-overview {
    background: #f8f9fa;
}

.alabang-luxury {
    background: #ffffff;
}

.alabang-luxury .luxury-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.alabang-luxury .luxury-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.alabang-luxury .stat-card {
    background: linear-gradient(135deg, #800080 0%, #9932CC 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(128, 0, 128, 0.2);
}

.alabang-luxury .stat-card h4 {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.alabang-luxury .stat-card p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.alabang-success {
    background: linear-gradient(135deg, #800080 0%, #9932CC 100%);
    color: white;
}

.alabang-areas {
    background: #f8f9fa;
}

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

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

.alabang-areas .area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(128, 0, 128, 0.2);
}

.alabang-areas .area-card h3 {
    color: #800080;
    margin-bottom: 15px;
}

.alabang-experiences {
    background: #ffffff;
}

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

.alabang-experiences .experiences-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.alabang-experiences .benefit-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #800080;
}

.alabang-experiences .benefit-item h4 {
    color: #800080;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.alabang-experiences .benefit-item p {
    margin: 0;
    color: #666;
}

.alabang-tips {
    background: #f8f9fa;
}

.alabang-tips .tips-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.alabang-tips .tips-column {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.alabang-tips .tips-column h3 {
    color: #800080;
    margin-bottom: 25px;
    text-align: center;
}

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

.alabang-tips .tips-column li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.alabang-tips .tips-column li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #800080;
    font-weight: bold;
}

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

.alabang-venues {
    background: #ffffff;
}

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

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

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

.alabang-venues .venue-card h3 {
    color: #800080;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .alabang-hero {
        padding: 100px 0 60px;
    }
    
    .alabang-overview,
    .alabang-luxury,
    .alabang-success,
    .alabang-areas,
    .alabang-experiences,
    .alabang-tips,
    .alabang-venues {
        padding: 60px 0;
    }
    
    .alabang-luxury .luxury-content,
    .alabang-experiences .experiences-content,
    .alabang-tips .tips-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .alabang-areas .areas-grid,
    .alabang-venues .venues-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Iloilo Tagalog Page Styles */
.iloilo-hero {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD700 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

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

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

.iloilo-overview,
.iloilo-heritage,
.iloilo-success,
.iloilo-venues,
.iloilo-tips {
    padding: 80px 0;
}

.iloilo-overview {
    background: #f8f9fa;
}

.iloilo-heritage {
    background: #ffffff;
}

.iloilo-heritage .heritage-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.iloilo-heritage .heritage-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.iloilo-heritage .heritage-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iloilo-heritage .heritage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.iloilo-heritage .heritage-item h3 {
    color: #FF6B35;
    margin-bottom: 15px;
}

.iloilo-heritage .heritage-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.iloilo-heritage .stat-card {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.iloilo-heritage .stat-card h4 {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    font-weight: 700;
}

.iloilo-heritage .stat-card p {
    margin: 0;
    font-size: 1.1rem;
    opacity: 0.9;
}

.iloilo-success {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    color: white;
}

.iloilo-venues {
    background: #f8f9fa;
}

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

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

.iloilo-venues .venue-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.iloilo-venues .venue-card h3 {
    color: #FF6B35;
    margin-bottom: 15px;
}

.iloilo-tips {
    background: #ffffff;
}

.iloilo-tips .tips-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.iloilo-tips .tips-column {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.iloilo-tips .tips-column h3 {
    color: #FF6B35;
    margin-bottom: 25px;
    text-align: center;
}

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

.iloilo-tips .tips-column li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.iloilo-tips .tips-column li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FF6B35;
    font-weight: bold;
}

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

@media (max-width: 768px) {
    .iloilo-hero {
        padding: 100px 0 60px;
    }
    
    .iloilo-overview,
    .iloilo-heritage,
    .iloilo-success,
    .iloilo-venues,
    .iloilo-tips {
        padding: 60px 0;
    }
    
    .iloilo-heritage .heritage-content,
    .iloilo-tips .tips-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .iloilo-heritage .heritage-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .iloilo-venues .venues-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.bgc-hero .hero-content {
    flex: 1;
    max-width: 600px;
}

.bgc-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.bgc-hero .hero-subtitle {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 20px;
    font-weight: 300;
}

.bgc-hero .hero-description {
    font-size: 1.1rem;
    color: #b0b0b0;
    margin-bottom: 30px;
    line-height: 1.6;
}

.bgc-hero .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.bgc-hero .hero-image {
    flex: 1;
    text-align: center;
}

.bgc-hero .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.bgc-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.bgc-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a1a2e;
    margin-bottom: 50px;
    font-weight: 600;
}

.bgc-overview .content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bgc-overview .text-content h3 {
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 20px;
    font-weight: 600;
}

.bgc-overview .text-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.bgc-overview .text-content ul {
    list-style: none;
    padding: 0;
}

.bgc-overview .text-content li {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.bgc-overview .text-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.bgc-overview .image-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.bgc-districts {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.bgc-success {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.bgc-success h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 50px;
    font-weight: 600;
}

.bgc-success .success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

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

.bgc-success .story-content h3 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: 600;
}

.bgc-success .story-content p {
    font-size: 1rem;
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.bgc-success .story-author {
    font-size: 0.9rem;
    color: #b0b0b0;
    font-weight: 500;
}

.bgc-lifestyle {
    padding: 5rem 0;
    background: #fff;
}

.bgc-tips {
    padding: 5rem 0;
    background: #f8f9fa;
}

.bgc-tips .tip-card {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #00d4ff;
}

.bgc-venues {
    padding: 5rem 0;
    background: #fff;
}

.bgc-venues .venue-category {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
    padding: 2rem;
    border-radius: 15px;
    border-top: 4px solid #00d4ff;
}

.bgc-business {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
    color: #fff;
}

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

.business-stats, .business-opportunities {
    background: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.business-stats h3, .business-opportunities h3 {
    color: #00d4ff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.business-stats ul {
    list-style: none;
    padding: 0;
}

.business-stats li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.business-stats li:last-child {
    border-bottom: none;
}

/* Mobile Responsiveness for BGC Page */
@media (max-width: 768px) {
    .bgc-hero .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .bgc-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .bgc-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .bgc-overview .content-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .bgc-success .success-stories {
        grid-template-columns: 1fr;
    }
    
    .business-content {
        grid-template-columns: 1fr;
    }
}

/* Cebu Tagalog Page Styles */
.cebu-hero {
    background: linear-gradient(135deg, #2c1810 0%, #8b4513 50%, #d2691e 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.cebu-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
}

.cebu-hero .hero-content {
    flex: 1;
    max-width: 600px;
}

.cebu-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cebu-hero .hero-subtitle {
    font-size: 1.5rem;
    color: #f4e4bc;
    margin-bottom: 20px;
    font-weight: 300;
}

.cebu-hero .hero-description {
    font-size: 1.1rem;
    color: #e6d7c3;
    margin-bottom: 30px;
    line-height: 1.6;
}

.cebu-hero .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cebu-hero .hero-image {
    flex: 1;
    text-align: center;
}

.cebu-hero .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.cebu-overview {
    padding: 80px 0;
    background: #f9f7f4;
}

.cebu-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #8b4513;
    margin-bottom: 50px;
    font-weight: 600;
}

.cebu-overview .content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cebu-overview .text-content h3 {
    font-size: 1.8rem;
    color: #8b4513;
    margin-bottom: 20px;
    font-weight: 600;
}

.cebu-overview .text-content p {
    font-size: 1.1rem;
    color: #5d4037;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cebu-overview .text-content ul {
    list-style: none;
    padding: 0;
}

.cebu-overview .text-content li {
    font-size: 1rem;
    color: #6d4c41;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.cebu-overview .text-content li::before {
    content: '🏝️';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.cebu-overview .image-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.cebu-success {
    padding: 80px 0;
    background: linear-gradient(135deg, #8b4513 0%, #d2691e 100%);
}

.cebu-success h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 50px;
    font-weight: 600;
}

.cebu-success .success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

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

.cebu-success .story-content h3 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: 600;
}

.cebu-success .story-content p {
    font-size: 1rem;
    color: #f4e4bc;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.cebu-success .story-author {
    font-size: 0.9rem;
    color: #e6d7c3;
    font-weight: 500;
}

/* Mobile Responsiveness for Cebu */
@media (max-width: 768px) {
    .cebu-hero .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .cebu-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .cebu-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .cebu-overview .content-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cebu-success .success-stories {
        grid-template-columns: 1fr;
    }
}

/* Quezon City Tagalog Page Styles */
.qc-hero {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.qc-hero .container {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
}

.qc-hero .hero-content {
    flex: 1;
    max-width: 600px;
}

.qc-hero .hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.qc-hero .hero-subtitle {
    font-size: 1.5rem;
    color: #dbeafe;
    margin-bottom: 20px;
    font-weight: 300;
}

.qc-hero .hero-description {
    font-size: 1.1rem;
    color: #bfdbfe;
    margin-bottom: 30px;
    line-height: 1.6;
}

.qc-hero .hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.qc-hero .hero-image {
    flex: 1;
    text-align: center;
}

.qc-hero .hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.qc-overview {
    padding: 80px 0;
    background: #f1f5f9;
}

.qc-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 50px;
    font-weight: 600;
}

.qc-overview .content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.qc-overview .text-content h3 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 20px;
    font-weight: 600;
}

.qc-overview .text-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
}

.qc-overview .text-content ul {
    list-style: none;
    padding: 0;
}

.qc-overview .text-content li {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.qc-overview .text-content li::before {
    content: '🎓';
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.qc-overview .image-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.qc-academic {
    padding: 80px 0;
    background: #ffffff;
}

.qc-academic h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 50px;
    font-weight: 600;
}

.qc-academic .academic-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.qc-academic .academic-text h3 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 20px;
    font-weight: 600;
}

.qc-academic .academic-text p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.7;
}

.qc-academic .academic-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.qc-academic .stat-card {
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a8a 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    color: white;
}

.qc-academic .stat-card h4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 10px;
}

.qc-academic .stat-card p {
    font-size: 1rem;
    color: #dbeafe;
    margin: 0;
}

.qc-success {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
}

.qc-success h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #ffd700;
    margin-bottom: 50px;
    font-weight: 600;
}

.qc-success .success-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

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

.qc-success .story-content h3 {
    font-size: 1.5rem;
    color: #ffd700;
    margin-bottom: 15px;
    font-weight: 600;
}

.qc-success .story-content p {
    font-size: 1rem;
    color: #dbeafe;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.qc-success .story-author {
    font-size: 0.9rem;
    color: #bfdbfe;
    font-weight: 500;
}

.qc-entertainment {
    padding: 80px 0;
    background: #f8fafc;
}

.qc-entertainment h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 50px;
    font-weight: 600;
}

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

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

.qc-entertainment .district-card:hover {
    transform: translateY(-5px);
}

.qc-entertainment .district-card h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 15px;
    font-weight: 600;
}

.qc-entertainment .district-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

.qc-tips {
    padding: 80px 0;
    background: #ffffff;
}

.qc-tips h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 50px;
    font-weight: 600;
}

.qc-tips .tips-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.qc-tips .tips-column h3 {
    font-size: 1.8rem;
    color: #1e3a8a;
    margin-bottom: 25px;
    font-weight: 600;
}

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

.qc-tips .tips-column li {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.qc-tips .tips-column li::before {
    content: '💡';
    position: absolute;
    left: 0;
    font-size: 1.1rem;
}

/* Mobile Responsiveness for QC */
@media (max-width: 768px) {
    .qc-hero .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .qc-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .qc-hero .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .qc-overview .content-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .qc-academic .academic-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .qc-success .success-stories {
        grid-template-columns: 1fr;
    }
    
    .qc-entertainment .districts-grid {
        grid-template-columns: 1fr;
    }
    
    .qc-tips .tips-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Footer */
footer, .footer {
    background: #000000;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

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

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

footer .footer-section h3, footer .footer-section h4, .footer-section h3, .footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

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

footer .footer-section ul, .footer-section ul {
    list-style: none;
}

footer .footer-section ul li, .footer-section ul li {
    margin-bottom: 0.5rem;
}

footer .footer-section ul li a, .footer-section ul li a {
    color: #d3d3d3;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer .footer-section ul li a:hover, .footer-section ul li a:hover {
    color: #ffd700;
}

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

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

footer .social-links a:hover, .social-links a:hover {
    color: #ffd700;
}

footer .footer-bottom, .footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #ffffff;
}

footer .footer-bottom a, .footer-bottom a {
    color: #ffffff;
    text-decoration: none;
}

footer .footer-bottom a:hover, .footer-bottom a:hover {
    color: #ffd700;
}

/* Blog Article Styles - 博客详细页面样式优化 */
.blog-article {
    background: #ffffff;
    min-height: 100vh;
}

/* Article Hero Section */
.article-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    padding: 120px 0 60px;
    margin-top: 80px;
}

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

.breadcrumbs {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.breadcrumbs a {
    color: #ffd700;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.breadcrumbs a:hover {
    opacity: 0.8;
}

.breadcrumbs span {
    color: #ffffff;
}

.article-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 30px;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    font-size: 0.9rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-label {
    color: #cccccc;
    font-weight: 500;
}

.meta-value {
    color: #ffd700;
    font-weight: 600;
}

/* Article Content */
.article-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.content-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.main-content {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
}

.article-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

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

.article-text {
    padding: 60px;
    line-height: 1.8;
    color: #333333;
}

.article-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #555555;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    border-radius: 15px;
    border-left: 5px solid #ffd700;
}

.article-text h2 {
    font-size: 2rem;
    color: #1a1a1a;
    margin: 50px 0 25px;
    font-weight: bold;
    position: relative;
    padding-bottom: 15px;
}

.article-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    border-radius: 2px;
}

.article-text h3 {
    font-size: 1.5rem;
    color: #2d2d2d;
    margin: 35px 0 20px;
    font-weight: 600;
}

.article-text h4 {
    font-size: 1.2rem;
    color: #333333;
    margin: 25px 0 15px;
    font-weight: 600;
}

.article-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    text-align: justify;
}

.article-text ul, .article-text ol {
    margin: 25px 0;
    padding-left: 0;
}

.article-text li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05rem;
}

.article-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
    font-size: 1.1rem;
}

.article-text ol {
    counter-reset: list-counter;
}

.article-text ol li {
    counter-increment: list-counter;
}

.article-text ol li::before {
    content: counter(list-counter) '.';
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: bold;
}

.article-text strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* Special Content Boxes */
.expectation-box, .mistakes-box, .success-tip, .message-examples {
    margin: 40px 0;
    padding: 30px;
    border-radius: 15px;
    border-left: 5px solid #ffd700;
}

.expectation-box {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
}

.mistakes-box {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    border-left-color: #f44336;
}

.success-tip {
    background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c9 100%);
    border-left-color: #4caf50;
}

.message-examples {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-left-color: #ff9800;
}

.expectation-box h4, .mistakes-box h3, .success-tip h3, .message-examples p strong {
    color: #1a1a1a;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

/* Article Tags */
.article-tags {
    padding: 30px 60px;
    border-top: 1px solid #eeeeee;
    background: #f8f9fa;
}

.article-tags h3 {
    margin-bottom: 15px;
    color: #333333;
    font-size: 1.1rem;
}

.tag {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 5px 10px 5px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

/* Article CTA */
.article-cta {
    padding: 40px 60px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    text-align: center;
    color: #ffffff;
}

.article-cta h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.article-cta p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    color: #1a1a1a;
    margin-bottom: 25px;
    font-size: 1.3rem;
    font-weight: 600;
    padding-bottom: 15px;
    border-bottom: 2px solid #ffd700;
}

.related-post {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eeeeee;
    transition: transform 0.3s ease;
}

.related-post:hover {
    transform: translateX(5px);
}

.related-post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

.related-content h4 {
    margin-bottom: 8px;
    font-size: 1rem;
    line-height: 1.4;
}

.related-content h4 a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-content h4 a:hover {
    color: #ffd700;
}

.related-date {
    font-size: 0.85rem;
    color: #888888;
}

/* Mobile Responsive for Blog Articles */
@media (max-width: 768px) {
    .content-layout {
        grid-template-columns: 1fr;
        padding: 0 15px;
        gap: 30px;
    }
    
    .sidebar {
        position: static;
    }
    
    .article-hero {
        padding: 100px 0 40px;
    }
    
    .article-hero h1 {
        font-size: 2.2rem;
    }
    
    .article-meta {
        gap: 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .article-content {
        padding: 40px 0;
    }
    
    .article-text {
        padding: 40px 30px;
    }
    
    .article-text h2 {
        font-size: 1.6rem;
    }
    
    .article-text h3 {
        font-size: 1.3rem;
    }
    
    .article-tags, .article-cta {
        padding: 25px 30px;
    }
    
    .sidebar-widget {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .article-hero h1 {
        font-size: 1.8rem;
    }
    
    .article-text {
        padding: 30px 20px;
    }
    
    .article-text .lead {
        padding: 20px;
        font-size: 1.1rem;
    }
    
    .article-text h2 {
        font-size: 1.4rem;
    }
    
    .article-text h3 {
        font-size: 1.2rem;
    }
    
    .article-text p, .article-text li {
        font-size: 1rem;
    }
    
    .expectation-box, .mistakes-box, .success-tip, .message-examples {
        padding: 20px;
        margin: 30px 0;
    }
    
    .article-tags, .article-cta {
        padding: 20px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .related-post {
        flex-direction: column;
        gap: 10px;
    }
    
    .related-post img {
        width: 100%;
        height: 150px;
    }
}

/* JavaScript Enhanced Styles */

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    padding: 1rem 1.5rem;
    z-index: 10000;
    transform: translateX(400px);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 350px;
    border-left: 4px solid #ffd700;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification.success {
    border-left-color: #28a745;
}

.notification.error {
    border-left-color: #dc3545;
}

.notification.warning {
    border-left-color: #ffc107;
}

.notification.info {
    border-left-color: #17a2b8;
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-message {
    color: #1a1a1a;
    font-size: 0.9rem;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-close:hover {
    color: #1a1a1a;
}

/* Modal System */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    margin: 0;
    color: #1a1a1a;
    font-size: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f8f9fa;
    color: #1a1a1a;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Chat Widget */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9998;
    font-family: inherit;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700 0%, #ff6b6b 100%);
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 450px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chat-widget.active .chat-window {
    display: flex;
}

.chat-widget.active .chat-toggle {
    display: none;
}

.chat-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header h4 {
    margin: 0;
    font-size: 1.1rem;
}

.chat-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.chat-close:hover {
    background: rgba(255,255,255,0.2);
}

.chat-messages {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: #f8f9fa;
}

.chat-message {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
}

.chat-message.user {
    align-items: flex-end;
}

.chat-message.bot {
    align-items: flex-start;
}

.message-content {
    background: #fff;
    padding: 0.8rem 1rem;
    border-radius: 15px;
    max-width: 80%;
    word-wrap: break-word;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.chat-message.user .message-content {
    background: #ffd700;
    color: #1a1a1a;
}

.message-time {
    font-size: 0.7rem;
    color: #666;
    margin-top: 0.3rem;
}

.chat-form {
    padding: 1rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    gap: 0.5rem;
}

.chat-form input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 20px;
    outline: none;
    font-size: 0.9rem;
}

.chat-form button {
    background: #ffd700;
    border: none;
    color: #1a1a1a;
    padding: 0.8rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
}

.chat-form button:hover {
    background: #e6c200;
}

/* Search Enhancement */
.search-container {
    position: relative;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.search-result-item:hover {
    background: #f8f9fa;
}

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

.search-result-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.result-title {
    font-weight: bold;
    color: #1a1a1a;
    margin-bottom: 0.3rem;
}

.result-type {
    font-size: 0.8rem;
    color: #666;
    text-transform: uppercase;
}

.no-results {
    padding: 1rem;
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Mobile Menu Enhancement */
.mobile-menu-btn,
.mobile-menu-toggle,
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1001;
}

.hamburger-line,
.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffd700;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
    display: block;
}

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

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

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

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    display: none;
}

body.menu-open .nav-overlay {
    display: block;
}

/* Form Enhancement */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #ffd700;
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
    border-color: #dc3545;
}

.field-error {
    color: #dc3545;
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: 2rem;
}

/* Animation Classes */
.animate-in {
    animation: slideInUp 0.6s ease forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Navbar Scrolled State */
.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

/* Profile Card Enhancements */
.member-card,
.profile-card {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.favorite-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255,255,255,0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    font-size: 1.2rem;
}

.favorite-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.favorite-btn.active {
    color: #ff6b6b;
    background: #fff;
}

/* Safety Features */
.report-btn,
.block-btn {
    background: #dc3545;
    color: #fff;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.3s ease;
}

.report-btn:hover,
.block-btn:hover {
    background: #c82333;
}

.emergency-contact {
    background: #ff6b6b;
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.emergency-contact:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255,107,107,0.3);
}



/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #ffd700;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Lazy Loading Images */
img.lazy {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img.lazy.loaded {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }
    
    .mobile-menu-btn,
    .mobile-menu-toggle,
    .hamburger {
        display: flex;
    }
    
    .nav-container {
        max-width: 100%;
        overflow: hidden;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 85%;
        height: 100vh;
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
        transition: right 0.3s ease;
        overflow-x: hidden;
    }
    
    .nav-menu.active {
        right: 0;
        flex-direction: column;
        padding: 4rem 2rem 2rem;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
        display: flex;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        display: block;
        padding: 1.2rem 0;
        font-size: 1.1rem;
        font-weight: 500;
        color: #fff;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
        padding-left: 1rem;
    }
    
    .nav-menu a:hover {
        color: #ffd700;
        border-left-color: #ffd700;
        background: rgba(255, 215, 0, 0.05);
        transform: translateX(5px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .content-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-split.reverse {
        direction: ltr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .app-buttons {
        flex-direction: column;
    }
    
    .trial-features {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .profiles-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .chat-window {
        width: 90vw;
        height: 70vh;
        bottom: 20px;
        right: 5vw;
    }
    
    .notification {
        right: 10px;
        left: 10px;
        max-width: none;
    }
    
    .modal-content {
        width: 95%;
        margin: 1rem;
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .age-verification-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .features h2, .member-preview h2, .top-cities h2, .testimonials h2, .why-choose-us h2 {
        font-size: 2rem;
    }
    
    .cta-primary, .cta-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
}

/* Bacolod Tagalog Page Styles */
.bacolod-hero {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF8C00 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.bacolod-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/city1.jpg') center/cover;
    opacity: 0.2;
    z-index: 1;
}

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

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

.bacolod-hero .hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.bacolod-overview {
    padding: 80px 0;
    background: #f8f9fa;
}

.bacolod-overview .overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 40px;
}

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

.bacolod-overview .overview-image {
    text-align: center;
}

.bacolod-overview .city-image {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.bacolod-overview .city-image:hover {
    transform: scale(1.05);
}

.bacolod-success {
    padding: 80px 0;
    background: #ffffff;
}

.bacolod-success .success-stories {
    margin-top: 40px;
}

.bacolod-success .story-card {
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 800px;
    margin: 0 auto;
}

.bacolod-success .story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(255, 193, 7, 0.2);
}

.bacolod-success .story-content h3 {
    color: #FF8C00;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: center;
}

.bacolod-success .story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.bacolod-success .story-author {
    text-align: right;
    font-weight: 600;
    color: #FF8C00;
    font-size: 1rem;
}

/* Mobile Responsive for Bacolod */
@media (max-width: 768px) {
    .bacolod-hero {
        padding: 100px 0 60px;
    }
    
    .bacolod-hero h1 {
        font-size: 2.5rem;
    }
    
    .bacolod-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .bacolod-overview,
    .bacolod-success {
        padding: 60px 0;
    }
    
    .bacolod-overview .overview-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .bacolod-success .story-card {
        padding: 30px 20px;
    }
    
    .bacolod-success .story-content h3 {
        font-size: 1.3rem;
    }
    
    .bacolod-success .story-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .bacolod-hero h1 {
        font-size: 2rem;
    }
    
    .bacolod-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .bacolod-success .story-card {
        padding: 25px 15px;
    }
}