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

:root {
    --primary-color: #1a3a3a;
    --secondary-color: #d4af37;
    --accent-color: #2d5a5a;
    --text-dark: #1a1a1a;
    --text-light: #f8f9fa;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: linear-gradient(135deg, #1a3a3a 0%, #2d5a5a 100%);
}

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

/* Navigation */
.navbar {
    background: linear-gradient(90deg, var(--primary-color) 0%, #0f2f2f 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 18px;
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
}

    .feature-card p a,
    .feature-card p a:visited,
    .service-item p a,
    .service-item p a:visited {
        color: #fff;
        text-decoration: none;
        display: inline-block;
        padding: 0 6px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.22);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    }
    .feature-card p a:hover,
    .feature-card p a:visited:hover,
    .service-item p a:hover,
    .service-item p a:visited:hover {
        color: #fff;
        background: rgba(255, 255, 255, 0.14);
        border-color: rgba(255, 255, 255, 0.5);
    }
.language-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    padding: 8px 15px;
    border-radius: var(--border-radius);
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 14px;
    background: transparent;
}

.lang-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.lang-btn.active {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    animation: fadeInDown 1s ease-out;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 20, 20, 0.75) 0%, rgba(26, 58, 58, 0.65) 100%);
    z-index: 1;
}

.hero-bg-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
}

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

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(212, 175, 55, 0.3);
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 15px 40px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: #e5c158;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Sections */
section {
    padding: 80px 20px;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    animation: slideUp 0.8s ease-out;
    color: var(--secondary-color);
}

/* Features Section */
.features {
    position: relative;
    overflow: hidden;
    color: white;
}

.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10, 25, 25, 0.72), rgba(10, 25, 25, 0.72)), url('../img/bg-features-sg.webp') center/cover no-repeat;
    transform: scale(1.07);
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features h2 {
    color: var(--secondary-color);
}

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

.feature-card {
    background: rgba(45, 90, 90, 0.3);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.2);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    border-color: var(--secondary-color);
    background: rgba(45, 90, 90, 0.5);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: bounce 2s infinite;
}

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* Services Section */
.services {
    background: linear-gradient(rgba(10, 18, 24, 0.72), rgba(10, 18, 24, 0.72)), url('../img/bg-services-sg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.services h2 {
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-item {
    background: rgba(8, 16, 24, 0.52);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 4px solid rgba(255, 255, 255, 0.48);
    transition: var(--transition);
}

.service-item:hover {
    background: rgba(8, 16, 24, 0.72);
    transform: translateX(10px);
}

.service-item h3 {
    color: #ffffff;
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
    position: relative;
    overflow: hidden;
    color: white;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10, 22, 22, 0.75), rgba(10, 22, 22, 0.75)), url('../img/bg-testimonials-sg.webp') center/cover no-repeat;
    transform: scale(1.06);
    z-index: 0;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials h2 {
    color: var(--secondary-color);
}

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

.testimonial-card {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(45, 90, 90, 0.3) 100%);
    padding: 25px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.1);
}

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

.testimonial-card span {
    display: block;
    color: var(--secondary-color);
    font-size: 14px;
    font-weight: bold;
}

/* FAQ Section */
.faq {
    position: relative;
    overflow: hidden;
    color: white;
}

.faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10, 22, 22, 0.78), rgba(10, 22, 22, 0.78)), url('../img/bg-faq-sg.webp') center/cover no-repeat;
    transform: scale(1.06);
    z-index: 0;
}

.faq .container {
    position: relative;
    z-index: 1;
}

.faq h2 {
    color: var(--secondary-color);
}

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

.faq-item {
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(26, 58, 58, 0.3);
    border-radius: var(--border-radius);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
}

.faq-question {
    color: var(--secondary-color);
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
    font-weight: bold;
}

.faq-question:hover {
    color: #e5c158;
}

.faq-answer {
    margin-top: 10px;
    color: #ccc;
    line-height: 1.8;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(rgba(10, 18, 24, 0.72), rgba(10, 18, 24, 0.72)), url('../img/bg-newsletter-sg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    text-align: center;
}

.newsletter h2 {
    color: #ffffff;
}

.newsletter .btn-primary {
    background: #ffffff;
    color: #0d2230;
}

.newsletter .btn-primary:hover {
    background: #eaf0f4;
}

.newsletter .btn-secondary {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.72);
}

.newsletter .btn-secondary:hover {
    background: #ffffff;
    color: #0d2230;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.newsletter-form input {
    padding: 12px 20px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 16px;
    flex: 1;
    min-width: 250px;
}

/* Newsletter CTA (no email input) */
.newsletter-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.newsletter-inline-link {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.hero-link {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

/* City Scenes / Bar Guide Section */
.city-scenes {
    background: linear-gradient(rgba(9, 16, 24, 0.88), rgba(9, 16, 24, 0.88)), url('../img/bg-city-scenes-sg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

.city-scenes h2 {
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #ddd;
}

.section-subtitle a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.bar-guide-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 10px;
}

.bar-area-card {
    background: rgba(8, 16, 24, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 10px;
    padding: 24px 20px;
    transition: var(--transition);
}

.bar-area-card:hover {
    background: rgba(10, 22, 34, 0.74);
    border-color: rgba(255, 255, 255, 0.46);
    transform: translateY(-6px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.12);
}

.bar-area-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.bar-area-card h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.bar-area-card p {
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 12px;
    opacity: 0.88;
}

.bar-area-card p a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 0 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}

.newsletter-inline-link:hover,
.hero-link:hover,
.section-subtitle a:hover,
.bar-area-card p a:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

.bar-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    border-radius: 20px;
    padding: 3px 12px;
    font-size: 0.78rem;
}

/* Footer */
.footer {
    background: linear-gradient(90deg, var(--primary-color) 0%, #0f2f2f 100%);
    color: white;
    padding: 60px 20px 20px;
}

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

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    text-transform: uppercase;
}

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

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 8px;
}

.footer-section a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

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

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

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

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .container {
        gap: 12px;
    }

    .logo {
        font-size: 16px;
    }

    .language-switcher {
        gap: 8px;
        flex-shrink: 0;
    }

    .lang-btn {
        padding: 7px 12px;
        font-size: 13px;
        white-space: nowrap;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    section h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input,
    .newsletter-form .btn {
        width: 100%;
    }

    .bar-guide-grid {
        grid-template-columns: 1fr;
    }

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

    .newsletter-cta {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 420px) {
    .navbar .container {
        gap: 8px;
    }

    .logo span {
        font-size: 14px;
    }

    .language-switcher {
        gap: 6px;
    }

    .lang-btn {
        padding: 6px 10px;
        font-size: 12px;
    }
}


.city-scenes {
    background: linear-gradient(rgba(20, 20, 20, 0.56), rgba(20, 20, 20, 0.56)), url('../img/bg-city-scenes-sg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.city-scenes h2,
.city-scenes p,
.city-scenes a {
    color: #ffffff;
}


