/* Opulent Singapore — Luxury Editorial Magazine Style */

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

:root {
    --white: #ffffff;
    --black: #111111;
    --gold: #b8860b;
    --light-grey: #f8f8f8;
    --mid-grey: #888888;
    --border: 1px solid #111111;
    --border-light: 1px solid #e0e0e0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: normal;
    line-height: 1.2;
}

a {
    color: var(--black);
    text-decoration: none;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

hr {
    border: none;
    border-top: 1px solid #e0e0e0;
    margin: 60px 0;
}

/* ─── NAVIGATION ─────────────────────────────────────────── */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid var(--black);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    height: 64px;
}

.nav-logo {
    font-family: Georgia, serif;
    font-size: 18px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black);
    font-weight: normal;
}

.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--black);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--gold);
}

/* ─── HERO SPLIT ─────────────────────────────────────────── */

.hero {
    margin-top: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 64px);
}

.hero-left {
    background: var(--black);
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: Georgia, serif;
    font-size: clamp(36px, 4vw, 56px);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 20px;
}

.hero-subline {
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 48px;
}

/* Hero Form */

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.hero-form input {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--white);
    padding: 12px 16px;
    font-size: 13px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    width: 100%;
}

.hero-form input::placeholder {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
}

.hero-form input:focus {
    border-color: var(--gold);
}

.btn-gold {
    background: var(--gold);
    color: var(--white);
    border: none;
    padding: 14px 32px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
    text-align: center;
}

.btn-gold:hover {
    background: #9a7209;
}

.btn-black {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 14px 40px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s;
    display: inline-block;
    text-align: center;
}

.btn-black:hover {
    background: #333;
}

#form-success {
    display: none;
    color: var(--gold);
    font-size: 13px;
    padding: 12px 0;
    letter-spacing: 0.06em;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

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

/* ─── STATS STRIP ────────────────────────────────────────── */

.stats-strip {
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
}

.stat-item {
    padding: 40px 32px;
    text-align: center;
    border-right: 1px solid var(--black);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-family: Georgia, serif;
    font-size: 36px;
    color: var(--black);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--mid-grey);
}

/* ─── SECTION HEADERS ────────────────────────────────────── */

.section-header {
    text-align: center;
    padding: 80px 48px 48px;
}

.section-eyebrow {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 16px;
    display: block;
}

.section-title {
    font-family: Georgia, serif;
    font-size: clamp(28px, 3vw, 42px);
    color: var(--black);
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    padding-bottom: 12px;
}

.section-desc {
    margin-top: 20px;
    color: var(--mid-grey);
    font-size: 15px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* ─── TOUR CARDS GRID ────────────────────────────────────── */

.tours-section {
    padding: 0 48px 80px;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--black);
}

.tour-card {
    padding: 40px 36px;
    border-right: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
    transition: border-left 0.2s;
    position: relative;
}

.tour-card:nth-child(3n) {
    border-right: none;
}

.tour-card:nth-child(n+4) {
    border-bottom: none;
}

.tour-card:hover {
    border-left: 4px solid var(--gold);
    padding-left: 32px;
}

.tour-card-number {
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.tour-card h3 {
    font-family: Georgia, serif;
    font-size: 20px;
    color: var(--black);
    margin-bottom: 14px;
    line-height: 1.3;
}

.tour-card p {
    font-size: 14px;
    color: var(--mid-grey);
    line-height: 1.7;
}

.tour-card-link {
    display: inline-block;
    margin-top: 20px;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
    padding-bottom: 2px;
}

/* ─── PHOTO GALLERY ──────────────────────────────────────── */

.gallery-section {
    background: var(--light-grey);
    padding: 80px 48px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 380px 280px;
    gap: 16px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item:first-child {
    grid-row: 1 / 3;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17,17,17,0.65);
    padding: 14px 18px;
    font-style: italic;
    font-size: 12px;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.04em;
}

/* ─── PRICING ────────────────────────────────────────────── */

.pricing-section {
    padding: 80px 48px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--black);
    margin-top: 0;
}

.pricing-card {
    padding: 48px 40px;
    border-right: 1px solid var(--black);
    position: relative;
    transition: border-top 0.2s;
}

.pricing-card:last-child {
    border-right: none;
}

.pricing-card.featured {
    background: var(--black);
    color: var(--white);
}

.pricing-card:hover {
    border-top: 4px solid var(--gold);
    padding-top: 44px;
}

.pricing-tier {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 16px;
}

.pricing-card.featured .pricing-tier {
    color: var(--gold);
}

.pricing-title {
    font-family: Georgia, serif;
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--black);
}

.pricing-card.featured .pricing-title {
    color: var(--white);
}

.pricing-price {
    font-size: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(184,134,11,0.3);
}

.pricing-card.featured .pricing-price {
    border-bottom-color: rgba(255,255,255,0.15);
}

.pricing-features {
    list-style: none;
    margin-bottom: 36px;
}

.pricing-features li {
    padding: 9px 0;
    font-size: 14px;
    color: var(--mid-grey);
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card.featured .pricing-features li {
    color: rgba(255,255,255,0.7);
    border-bottom-color: rgba(255,255,255,0.08);
}

.pricing-features li::before {
    content: '—';
    color: var(--gold);
    font-size: 12px;
    flex-shrink: 0;
}

/* ─── CTA SECTION ────────────────────────────────────────── */

.cta-section {
    background: var(--black);
    padding: 100px 48px;
    text-align: center;
}

.cta-eyebrow {
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    display: block;
}

.cta-title {
    font-family: Georgia, serif;
    font-size: clamp(28px, 3.5vw, 48px);
    color: var(--white);
    margin-bottom: 20px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.cta-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    max-width: 480px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.btn-gold-outline {
    border: 1px solid var(--gold);
    color: var(--gold);
    background: transparent;
    padding: 14px 40px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-family: inherit;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    display: inline-block;
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--white);
}

/* ─── FOOTER ─────────────────────────────────────────────── */

.footer {
    background: var(--white);
    border-top: 1px solid var(--black);
    padding: 60px 48px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand-name {
    font-family: Georgia, serif;
    font-size: 18px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: var(--black);
}

.footer-brand-name span {
    color: var(--gold);
}

.footer-desc {
    font-size: 13px;
    color: var(--mid-grey);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-company-details {
    font-size: 12px;
    color: var(--mid-grey);
    line-height: 1.8;
}

.footer-col-title {
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--black);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13px;
    color: var(--mid-grey);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.footer-copy {
    font-size: 12px;
    color: var(--mid-grey);
}

.footer-disclaimer {
    font-size: 11px;
    color: #aaa;
    max-width: 600px;
    line-height: 1.6;
    text-align: right;
}

/* ─── COOKIE BANNER ──────────────────────────────────────── */

#cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: var(--white);
    border-top: 1px solid var(--black);
    padding: 20px 48px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-text {
    font-size: 13px;
    color: var(--black);
    line-height: 1.5;
    flex: 1;
}

.cookie-text a {
    color: var(--gold);
    border-bottom: 1px solid var(--gold);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

/* ─── WHATSAPP FLOAT ─────────────────────────────────────── */

.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 28px;
    z-index: 1500;
    width: 52px;
    height: 52px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
    transition: background 0.2s, transform 0.2s;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.08);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: var(--white);
}

/* ─── CONTACT PAGE ───────────────────────────────────────── */

.page-hero {
    margin-top: 64px;
    background: var(--black);
    padding: 80px 48px;
    text-align: center;
}

.page-hero h1 {
    font-family: Georgia, serif;
    font-size: clamp(32px, 4vw, 52px);
    color: var(--white);
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    padding-bottom: 14px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-section {
    padding: 80px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.company-card {
    border: 1px solid var(--black);
    padding: 48px;
}

.company-card h2 {
    font-family: Georgia, serif;
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--black);
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    padding-bottom: 8px;
}

.company-card .co-number {
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--gold);
    text-transform: uppercase;
    margin-top: 10px;
    margin-bottom: 32px;
    display: block;
}

.company-info-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.company-info-row:last-of-type {
    border-bottom: none;
}

.info-label {
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mid-grey);
    min-width: 80px;
    padding-top: 2px;
}

.info-value {
    font-size: 14px;
    color: var(--black);
    line-height: 1.6;
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: var(--white);
    padding: 13px 28px;
    font-size: 13px;
    letter-spacing: 0.06em;
    margin-top: 28px;
    transition: background 0.2s;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
}

.whatsapp-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--white);
    flex-shrink: 0;
}

.contact-form-wrap h2 {
    font-family: Georgia, serif;
    font-size: 28px;
    margin-bottom: 32px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
    padding-bottom: 10px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    border: 1px solid var(--black);
    background: var(--white);
    padding: 12px 16px;
    font-size: 14px;
    font-family: inherit;
    color: var(--black);
    outline: none;
    width: 100%;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

/* ─── LEGAL PAGES ────────────────────────────────────────── */

.legal-section {
    padding: 80px 48px;
    max-width: 860px;
    margin: 0 auto;
}

.legal-section h2 {
    font-family: Georgia, serif;
    font-size: 22px;
    margin-top: 48px;
    margin-bottom: 14px;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 10px;
    color: var(--black);
}

.legal-section h2:first-child {
    margin-top: 0;
}

.legal-section p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0 16px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-section ul li {
    font-size: 15px;
    color: #444;
    line-height: 1.7;
}

.legal-meta {
    font-size: 12px;
    color: var(--mid-grey);
    margin-bottom: 48px;
    padding: 16px 24px;
    border-left: 3px solid var(--gold);
    background: var(--light-grey);
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-right {
        height: 50vw;
    }

    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tour-card:nth-child(3n) {
        border-right: 1px solid var(--black);
    }

    .tour-card:nth-child(2n) {
        border-right: none;
    }

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

    .pricing-card {
        border-right: none;
        border-bottom: 1px solid var(--black);
    }

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

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

    .contact-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hero-left {
        padding: 60px 28px;
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3) {
        border-top: 1px solid var(--black);
    }

    .stat-item:nth-child(4) {
        border-top: 1px solid var(--black);
        border-right: none;
    }

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

    .tour-card {
        border-right: none;
        border-bottom: 1px solid var(--black);
    }

    .tour-card:last-child {
        border-bottom: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-item:first-child {
        grid-row: auto;
        height: 280px;
    }

    .gallery-item {
        height: 220px;
    }

    .tours-section,
    .pricing-section,
    .gallery-section,
    .section-header,
    .cta-section,
    .footer,
    .legal-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }

    .footer-disclaimer {
        text-align: left;
    }

    #cookie-banner {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
