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

:root {
    --primary-color: #090d17;
    --secondary-color: #e8c26a;
    --accent-color: #78c7ff;
    --text-dark: #dce4f3;
    --text-light: #f8fbff;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Garamond', 'Georgia', serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: radial-gradient(circle at 20% 10%, #15213d 0%, #090d17 45%, #05070d 100%);
}

html[lang="en-SG"] body {
    background: radial-gradient(circle at 80% 0%, #182642 0%, #090d17 48%, #04060c 100%);
}

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

.navbar {
    background: linear-gradient(90deg, #060910 0%, #0d1424 52%, #111a2b 100%);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.45);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 1px;
}

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

.language-switcher {
    display: flex;
    gap: 15px;
}

.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;
    font-weight: 500;
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(7, 11, 22, 0.82) 0%, rgba(17, 31, 58, 0.78) 52%, rgba(35, 22, 10, 0.72) 100%), url('../img/sg-hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: fadeInDown 1s ease-out;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.4);
    letter-spacing: 2px;
    color: var(--secondary-color);
}

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

.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: 600;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

section {
    padding: 80px 20px;
}

section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 60px;
    animation: slideUp 0.8s ease-out;
    color: var(--text-light);
    letter-spacing: 2px;
    font-weight: 600;
}

.features {
    background: linear-gradient(rgba(8, 12, 22, 0.9), rgba(8, 12, 22, 0.9)), url('../img/sg-features.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-dark);
}

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

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

.feature-card {
    background: linear-gradient(135deg, #111a2d 0%, #1b2740 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
    border-top: 4px solid var(--secondary-color);
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

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

.feature-card h3 {
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.services {
    background: linear-gradient(rgba(8, 12, 22, 0.9), rgba(16, 28, 46, 0.88)), url('../img/sg-services.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}

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

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

.service-item {
    background: rgba(132, 172, 224, 0.1);
    padding: 40px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--secondary-color);
    transition: var(--transition);
    backdrop-filter: blur(5px);
}

.service-item:hover {
    background: rgba(132, 172, 224, 0.18);
    transform: translateX(10px);
}

.service-item h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.testimonials {
    background: linear-gradient(rgba(7, 10, 19, 0.9), rgba(7, 10, 19, 0.9)), url('../img/sg-testimonials.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-dark);
}

.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, #10192b 0%, #192742 100%);
    padding: 35px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--secondary-color);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    margin-bottom: 15px;
    font-style: italic;
    color: #dce4f3;
    line-height: 1.8;
}

.testimonial-card span {
    display: block;
    color: #9fd9ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.faq {
    background: linear-gradient(rgba(8, 12, 22, 0.9), rgba(8, 12, 22, 0.9)), url('../img/sg-faq.jpg');
    
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
color: var(--text-dark);
}

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

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

.faq-item {
    margin-bottom: 30px;
    padding: 25px;
    background: #111a2c;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.24);
}

.faq-question {
    color: var(--text-light);
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
    font-weight: 600;
    font-size: 16px;
}

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

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

.newsletter {
    background: linear-gradient(rgba(18, 30, 52, 0.92), rgba(10, 17, 32, 0.92)), url('../img/sg-newsletter.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--text-light);
    text-align: center;
}

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

.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;
    background: #f3f8ff;
}

.footer {
    background: linear-gradient(90deg, #05080f 0%, #0b1323 62%, #111d31 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;
    font-size: 13px;
    letter-spacing: 1.5px;
    font-weight: 700;
}

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

.footer-section a {
    color: #cdd6e8;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid #444;
    padding-top: 30px;
    color: #9babca;
    font-size: 13px;
}

@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);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

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

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

    .footer-section a {
        text-align: center;
    }

    .footer-section a:hover {
        padding-left: 0;
    }
}

@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}


.city-scenes {
    background: linear-gradient(rgba(7, 12, 22, 0.84), rgba(7, 12, 22, 0.84)), url('../img/sg-city-scenes.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
}

.city-scenes .container {
    max-width: 980px;
    text-align: center;
}

.city-scenes p {
    max-width: 900px;
    margin: 0 auto 18px;
}

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

p a,
.faq-answer a {
    color: #9fd9ff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

p a:hover,
.faq-answer a:hover {
    color: #d8f1ff;
}


