/* =========================================================
   KATONG JOO CHIAT BUSINESS ASSOCIATION
   Main stylesheet — Peranakan heritage theme
   Palette: #0F3D3E #175D5C #C95D3A #EAD7C1 #F7F3EC
   Fonts:   Playfair Display (headings) / Poppins (body)
   ========================================================= */

@import url('../fonts/fonts.css');

:root {
    --c-dark-teal: #0F3D3E;
    --c-teal: #175D5C;
    --c-orange: #C95D3A;
    --c-orange-dark: #a84826;
    --c-cream: #EAD7C1;
    --c-cream-light: #F7F3EC;
    --c-white: #ffffff;
    --c-gold: #d4af6e;
    --c-muted: #6b6a67;
    --c-text: #2a2a28;
    --shadow-sm: 0 2px 6px rgba(15, 61, 62, .08);
    --shadow-md: 0 6px 20px rgba(15, 61, 62, .12);
    --shadow-lg: 0 18px 40px rgba(15, 61, 62, .18);
    --radius: 10px;
    --max-w: 1280px;
    --ff-head: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --ff-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--c-text);
    background: var(--c-cream-light);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--c-orange); text-decoration: none; transition: color .2s; }
a:hover { color: var(--c-orange-dark); }

h1, h2, h3, h4, h5 {
    font-family: var(--ff-head);
    color: var(--c-dark-teal);
    margin: 0 0 .6em;
    line-height: 1.2;
    font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.35rem; }
p { margin: 0 0 1em; }

.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- HEADER ---------- */
.site-header {
    background: var(--c-cream-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}
.nav-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 24px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.brand img { height: 248px; width: auto; max-width: 680px; }
.brand-text .name {
    font-family: var(--ff-head);
    font-weight: 700;
    color: var(--c-dark-teal);
    font-size: 1.1rem;
    letter-spacing: 1px;
    line-height: 1;
}
.brand-text .sub {
    font-size: .7rem;
    letter-spacing: 3px;
    color: var(--c-orange);
    text-transform: uppercase;
}
.main-nav {
    display: flex;
    gap: 28px;
    margin-left: auto;
    align-items: center;
}
.main-nav a {
    color: var(--c-dark-teal);
    font-weight: 500;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding: 6px 0;
}
.main-nav a:hover,
.main-nav a.active {
    color: var(--c-orange);
}
.main-nav a.active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -2px;
    height: 2px;
    background: var(--c-orange);
}
.nav-cta {
    background: var(--c-orange);
    color: #fff !important;
    padding: 12px 20px !important;
    border-radius: 4px;
    letter-spacing: 1px !important;
    transition: background .2s, transform .2s;
}
.nav-cta:hover {
    background: var(--c-orange-dark);
    color: #fff !important;
    transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

.hamburger {
    display: none;
    background: none;
    border: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-left: auto;
}
.hamburger span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--c-dark-teal);
    margin: 5px auto;
    border-radius: 2px;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    background: var(--c-dark-teal);
    color: #fff;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/kjcba-hero.jpg') center/cover no-repeat;
    opacity: .85;
}
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(15, 61, 62, .95) 0%, rgba(15, 61, 62, .75) 45%, rgba(15, 61, 62, .15) 70%, transparent 100%);
}
.hero-inner {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 80px 24px;
    width: 100%;
}
.hero-eyebrow {
    font-family: var(--ff-head);
    font-style: italic;
    font-size: 1.6rem;
    color: var(--c-gold);
    margin-bottom: .2em;
    font-weight: 500;
}
.hero h1 {
    color: #fff;
    margin: 0 0 16px;
    line-height: 1;
    letter-spacing: 1px;
}
.hero p.lead {
    font-size: 1.15rem;
    max-width: 520px;
    color: rgba(255,255,255,.92);
    margin-bottom: 34px;
}
.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .2s;
}
.btn-primary {
    background: var(--c-orange);
    color: #fff;
    border-color: var(--c-orange);
}
.btn-primary:hover {
    background: var(--c-orange-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-outline:hover {
    background: #fff;
    color: var(--c-dark-teal);
}
.btn-outline-dark {
    background: transparent;
    color: var(--c-dark-teal);
    border-color: var(--c-dark-teal);
}
.btn-outline-dark:hover {
    background: var(--c-dark-teal);
    color: #fff;
}
.btn-link {
    background: transparent;
    color: var(--c-orange);
    padding: 8px 4px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: .8rem;
}
.btn-link:hover {
    color: var(--c-orange-dark);
    gap: 12px;
}

/* ---------- PATTERN BORDER ---------- */
.pattern-border {
    height: 32px;
    background: url('../images/pattern-border.png') repeat-x center/contain;
    background-size: auto 100%;
}

/* ---------- SECTION ---------- */
section { padding: 70px 0; }
.section-title {
    text-align: center;
    letter-spacing: 5px;
    text-transform: uppercase;
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: var(--c-dark-teal);
    position: relative;
}
.section-title::before,
.section-title::after {
    content: '• • •';
    color: var(--c-gold);
    font-size: .6rem;
    letter-spacing: 2px;
    margin: 0 14px;
    vertical-align: middle;
}

/* ---------- FEATURED / CARD GRID ---------- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 28px;
}
.biz-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .25s, box-shadow .25s;
    display: flex;
    flex-direction: column;
}
.biz-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.biz-card .thumb {
    aspect-ratio: 4 / 2.5;
    overflow: hidden;
    background: var(--c-cream);
}
.biz-card .thumb img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.biz-card:hover .thumb img { transform: scale(1.05); }
.biz-card .body {
    padding: 22px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.biz-card h3 {
    margin: 0 0 4px;
    font-size: 1.25rem;
}
.biz-card .cat {
    color: var(--c-muted);
    font-size: .9rem;
    margin: 0 0 14px;
}
.biz-card .loc {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--c-orange);
    font-size: .88rem;
    margin-top: auto;
}
.biz-card .loc svg {
    width: 16px;
    height: 16px;
}
.biz-card .thumb.logo {
    background: #fff;
}
.biz-card .thumb.logo img {
    object-fit: contain;
    padding: 16px;
}
.thumb-placeholder {
    aspect-ratio: 4 / 2.5;
    background: var(--c-dark-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-head);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--c-gold);
}

.directory-cta {
    text-align: center;
    margin-top: 45px;
}

/* ---------- INFO BAND (What's Happening / Why Join) ---------- */
.info-band {
    background: var(--c-cream);
    padding: 70px 0;
}
.info-band .grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: start;
}
.info-band h2 {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 26px;
    color: var(--c-dark-teal);
}
.info-band h2::after {
    content: '• • •';
    color: var(--c-gold);
    font-size: .55rem;
    letter-spacing: 2px;
    margin-left: 14px;
    vertical-align: middle;
}
.event-row {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(15, 61, 62, .1);
}
.event-row:last-child { border-bottom: 0; }
.date-block {
    flex: 0 0 auto;
    width: 60px;
    text-align: center;
    border: 1.5px solid var(--c-orange);
    border-radius: 6px;
    padding: 8px 4px;
    font-family: var(--ff-head);
    color: var(--c-orange);
    line-height: 1;
}
.date-block .day {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
}
.date-block .mo {
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
    display: block;
}
.event-row .txt h4 {
    margin: 0 0 4px;
    font-size: 1.1rem;
    color: var(--c-dark-teal);
}
.event-row .txt p {
    margin: 0;
    color: var(--c-muted);
    font-size: .92rem;
}
.benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.benefits li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    color: var(--c-dark-teal);
}
.benefit-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--c-orange);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.benefit-icon svg {
    width: 22px; height: 22px;
}

/* ---------- FOOTER ---------- */
.site-footer {
    background: var(--c-dark-teal);
    color: rgba(255,255,255,.88);
    padding: 60px 0 20px;
}
.site-footer .grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.site-footer h5 {
    color: #fff;
    font-family: var(--ff-body);
    font-size: .85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.site-footer a {
    color: rgba(255,255,255,.75);
    display: block;
    padding: 4px 0;
    font-size: .92rem;
}
.site-footer a:hover { color: var(--c-gold); }
.footer-brand {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}
.footer-brand img { width: 48px; height: 48px; }
.footer-brand span {
    font-family: var(--ff-head);
    font-size: 1.05rem;
    color: #fff;
    letter-spacing: 1px;
}
.socials {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}
.socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.socials a:hover { background: var(--c-orange); }
.socials svg { width: 16px; height: 16px; fill: #fff; }
.copyright {
    padding-top: 24px;
    text-align: center;
    font-size: .85rem;
    color: rgba(255,255,255,.55);
}
.legal-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 10px;
    font-size: .85rem;
}
.legal-links a { color: rgba(255,255,255,.75); }

/* ---------- PAGE HEADER (non-home pages) ---------- */
.page-header {
    background: var(--c-dark-teal);
    color: #fff;
    text-align: center;
    padding: 80px 24px 60px;
    position: relative;
    overflow: hidden;
}
.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(201, 93, 58, .2) 0%, transparent 40%),
        radial-gradient(circle at 85% 60%, rgba(212, 175, 110, .15) 0%, transparent 35%);
}
.page-header > * { position: relative; z-index: 2; }
.page-header .eyebrow {
    font-family: var(--ff-head);
    font-style: italic;
    color: var(--c-gold);
    margin: 0 0 8px;
    font-size: 1.2rem;
}
.page-header h1 {
    color: #fff;
    margin: 0 0 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.page-header p {
    max-width: 640px;
    margin: 0 auto;
    color: rgba(255,255,255,.85);
    font-size: 1.05rem;
}

/* ---------- ABOUT ---------- */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.two-col .img-wrap {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    aspect-ratio: 4/3;
}
.two-col .img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
}
.stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    background: var(--c-cream);
    padding: 50px 30px;
    border-radius: var(--radius);
    margin: 40px 0;
}
.stat {
    text-align: center;
}
.stat .n {
    font-family: var(--ff-head);
    font-size: 2.6rem;
    color: var(--c-orange);
    font-weight: 700;
    display: block;
    line-height: 1;
}
.stat .l {
    display: block;
    margin-top: 8px;
    font-size: .9rem;
    color: var(--c-dark-teal);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 28px;
    margin-top: 30px;
}
.value-card {
    background: #fff;
    padding: 30px 26px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--c-orange);
}
.value-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.value-card p { margin: 0; color: var(--c-muted); font-size: .95rem; }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 26px;
}
.team-card {
    text-align: center;
}
.team-card .avatar {
    width: 160px; height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 16px;
    background: var(--c-cream);
    border: 4px solid var(--c-cream);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-head);
    color: var(--c-dark-teal);
    font-size: 3rem;
    font-weight: 700;
}
.team-card h4 { margin: 0; font-size: 1.1rem; }
.team-card .role {
    font-size: .85rem;
    color: var(--c-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ---------- DIRECTORY FILTERS ---------- */
.filter-bar {
    background: #fff;
    padding: 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
}
.filter-bar input,
.filter-bar select {
    flex: 1;
    min-width: 200px;
    padding: 12px 14px;
    border: 1px solid #d8d2c4;
    border-radius: 6px;
    font-family: inherit;
    font-size: .95rem;
    background: var(--c-cream-light);
    color: var(--c-text);
}
.filter-bar input:focus,
.filter-bar select:focus {
    outline: 2px solid var(--c-orange);
    outline-offset: -1px;
    border-color: var(--c-orange);
}
.filter-chips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 30px;
    justify-content: center;
}
.chip {
    padding: 8px 18px;
    border-radius: 40px;
    background: #fff;
    border: 1.5px solid var(--c-cream);
    color: var(--c-dark-teal);
    font-size: .82rem;
    font-weight: 500;
    cursor: pointer;
    transition: all .2s;
    letter-spacing: .5px;
}
.chip:hover, .chip.active {
    background: var(--c-dark-teal);
    color: #fff;
    border-color: var(--c-dark-teal);
}
.chip.active { background: var(--c-orange); border-color: var(--c-orange); }

/* ---------- EVENTS PAGE ---------- */
.event-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 32px;
}
.event-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .25s, box-shadow .25s;
}
.event-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.event-card .banner {
    aspect-ratio: 16 / 9;
    background: var(--c-cream);
    overflow: hidden;
    position: relative;
}
.event-card .banner img {
    width: 100%; height: 100%; object-fit: cover;
}
.event-card .banner .date-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: var(--c-orange);
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    font-family: var(--ff-head);
    text-align: center;
    line-height: 1;
}
.event-card .banner .date-tag .d {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
}
.event-card .banner .date-tag .m {
    display: block;
    font-size: .7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 4px;
}
.event-card .body {
    padding: 22px 24px 26px;
}
.event-card h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
}
.event-meta {
    display: flex;
    gap: 16px;
    font-size: .85rem;
    color: var(--c-muted);
    margin: 0 0 12px;
    flex-wrap: wrap;
}
.event-meta span { display: flex; align-items: center; gap: 5px; }
.event-card p { color: var(--c-text); margin: 0 0 16px; }

/* ---------- PROMOTIONS ---------- */
.promo-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}
.promo-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}
.promo-card .discount {
    position: absolute;
    top: 14px; right: 14px;
    background: var(--c-orange);
    color: #fff;
    padding: 12px 14px;
    border-radius: 50%;
    font-family: var(--ff-head);
    font-weight: 700;
    line-height: 1;
    text-align: center;
    width: 74px;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.promo-card .discount .big { font-size: 1.5rem; }
.promo-card .discount .sub { font-size: .6rem; letter-spacing: 1.5px; text-transform: uppercase; }
.promo-card .thumb {
    aspect-ratio: 4 / 2.2;
    overflow: hidden;
}
.promo-card .thumb img {
    width: 100%; height: 100%; object-fit: cover;
}
.promo-card .body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.promo-card h3 { margin: 0 0 4px; font-size: 1.25rem; }
.promo-card .biz { color: var(--c-orange); font-size: .85rem; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; font-weight: 500; }
.promo-card .terms {
    background: var(--c-cream-light);
    padding: 10px 14px;
    border-radius: 6px;
    font-size: .82rem;
    color: var(--c-muted);
    margin: 12px 0 16px;
}
.promo-card .expiry {
    font-size: .8rem;
    color: var(--c-orange-dark);
    font-weight: 500;
    margin-top: auto;
}

/* ---------- MEMBERSHIP ---------- */
.plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.plan-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 40px 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.plan-card.featured {
    border-color: var(--c-orange);
    box-shadow: var(--shadow-md);
    transform: translateY(-10px);
}
.plan-card .ribbon {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--c-orange);
    color: #fff;
    padding: 6px 18px;
    border-radius: 30px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}
.plan-card h3 {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
    margin-bottom: 8px;
}
.price {
    text-align: center;
    font-family: var(--ff-head);
    font-weight: 700;
    color: var(--c-orange);
    margin-bottom: 22px;
    line-height: 1;
}
.price .num { font-size: 3rem; }
.price .per { font-size: .85rem; color: var(--c-muted); font-weight: 400; }
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--c-cream);
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: .92rem;
}
.plan-features li::before {
    content: '✓';
    color: var(--c-orange);
    font-weight: 700;
    flex-shrink: 0;
}
.plan-card .btn { margin-top: auto; justify-content: center; }

/* ---------- MEMBERSHIP FORM ---------- */
.form-card {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    padding: 46px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
    font-size: .82rem;
    font-weight: 500;
    color: var(--c-dark-teal);
    letter-spacing: .5px;
}
.form-field input,
.form-field select,
.form-field textarea {
    padding: 12px 14px;
    border: 1px solid #d8d2c4;
    border-radius: 6px;
    font-family: inherit;
    font-size: .95rem;
    background: var(--c-cream-light);
    color: var(--c-text);
    transition: border-color .2s, background .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--c-orange);
    background: #fff;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-card .btn {
    width: 100%;
    justify-content: center;
    margin-top: 18px;
}

/* ---------- CONTACT ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 60px;
    align-items: start;
}
.contact-info {
    background: var(--c-dark-teal);
    color: #fff;
    padding: 40px;
    border-radius: var(--radius);
}
.contact-info h3 { color: #fff; font-size: 1.4rem; }
.contact-info .item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
}
.contact-info .item:last-child { border-bottom: 0; }
.contact-info .item .ico {
    width: 42px; height: 42px;
    background: var(--c-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info .item .ico svg { width: 18px; height: 18px; color: #fff; }
.contact-info .item h5 {
    margin: 0 0 2px;
    font-family: var(--ff-body);
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--c-gold);
}
.contact-info .item p {
    margin: 0;
    color: rgba(255,255,255,.85);
    font-size: .95rem;
    line-height: 1.5;
}

.map-embed {
    margin-top: 40px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--c-cream);
    aspect-ratio: 16/7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    color: var(--c-muted);
    background-image: linear-gradient(135deg, var(--c-cream) 25%, #e1d4be 25%, #e1d4be 50%, var(--c-cream) 50%, var(--c-cream) 75%, #e1d4be 75%);
    background-size: 30px 30px;
    position: relative;
}
.map-embed::after {
    content: '📍 Katong / Joo Chiat, Singapore';
    background: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    box-shadow: var(--shadow-sm);
    font-style: normal;
    color: var(--c-dark-teal);
    font-weight: 500;
}

/* ---------- CTA BAND ---------- */
.cta-band {
    background: var(--c-dark-teal);
    color: #fff;
    text-align: center;
    padding: 70px 24px;
}
.cta-band h2 { color: #fff; margin-bottom: 14px; }
.cta-band p {
    max-width: 600px;
    margin: 0 auto 28px;
    color: rgba(255,255,255,.82);
}

/* ---------- UTILITIES ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-40 { margin-bottom: 40px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 960px) {
    .hamburger { display: block; }
    .main-nav {
        position: absolute;
        top: 100%;
        right: 14px;
        left: 14px;
        background: #fff;
        flex-direction: column;
        align-items: stretch;
        padding: 18px 22px;
        gap: 0;
        border-radius: var(--radius);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s;
    }
    .main-nav.open {
        max-height: 520px;
        padding: 18px 22px;
    }
    .main-nav a {
        padding: 12px 0;
        border-bottom: 1px solid var(--c-cream);
        font-size: .95rem;
    }
    .main-nav a:last-child { border-bottom: 0; }
    .nav-cta {
        margin-top: 10px;
        text-align: center;
    }
    .two-col,
    .info-band .grid,
    .contact-grid,
    .plans,
    .site-footer .grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
    .form-grid { grid-template-columns: 1fr; }
    .stat-row { grid-template-columns: repeat(2, 1fr); }
    .plan-card.featured { transform: none; }
    .form-card { padding: 30px 24px; }
}

@media (max-width: 520px) {
    section { padding: 50px 0; }
    .hero { min-height: 440px; }
    .hero-inner { padding: 60px 24px; }
    .stat-row { grid-template-columns: 1fr 1fr; gap: 14px; padding: 30px 20px; }
}
