/* ─── Reset & Base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
    --brand:       #1a1a2e;
    --brand-light: #16213e;
    --accent:      #e94560;
    --accent-dark: #c0392b;
    --gold:        #f5a623;
    --white:       #ffffff;
    --off-white:   #f8f9fa;
    --text:        #212529;
    --text-muted:  #6c757d;
    --border:      #dee2e6;
    --success:     #28a745;
    --radius:      8px;
    --shadow:      0 2px 12px rgba(0,0,0,.1);
    --font:        -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --button-radius: var(--radius);
    --section-padding: 5rem;
    --page-bg:     var(--white);
    --surface-bg:  var(--off-white);
    --header-bg:   rgba(255,255,255,.97);
}
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--page-bg); line-height: 1.6; }
img  { max-width: 100%; display: block; }
a    { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
ul   { list-style: none; }

/* ─── Layout ────────────────────────────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: var(--section-padding, 5rem) 0; }
.section-alt { background: var(--surface-bg); }
.section-title { font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 0.75rem; }
.section-intro { text-align: center; color: var(--text-muted); max-width: 640px; margin: 0 auto 3rem; }

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 0.6rem 1.4rem; border-radius: var(--button-radius, var(--radius));
    font-weight: 600; font-size: 0.9375rem; cursor: pointer;
    border: 2px solid transparent; transition: all .2s; text-decoration: none;
}
.btn-primary   { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); text-decoration: none; }
.btn-secondary { background: transparent; color: var(--white); border-color: var(--white); }
.btn-secondary:hover { background: rgba(255,255,255,.15); text-decoration: none; }
.btn-outline   { background: transparent; color: var(--brand); border-color: var(--brand); }
.btn-outline:hover { background: var(--brand); color: var(--white); text-decoration: none; }
.btn-lg        { padding: 0.85rem 2rem; font-size: 1.05rem; }

/* ─── Header ────────────────────────────────────────────────────────────── */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: var(--header-bg);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border); padding: 0.75rem 0;
}
.header-inner {
    display: flex; align-items: center; gap: 1.5rem;
}
.logo            { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text       { font-size: 1.5rem; font-weight: 800; color: var(--brand); }
.logo-sub        { font-size: 0.7rem; font-weight: 500; color: var(--text-muted); letter-spacing: .04em; text-transform: uppercase; }
.brand-logo-link { display: inline-flex; align-items: center; gap: 0.75rem; line-height: 1.1; }
.brand-logo-text-group { display: flex; flex-direction: column; }
.brand-logo-image { width: 48px; height: 48px; object-fit: contain; flex: 0 0 auto; }
.brand-compact .brand-logo-image { width: 40px; height: 40px; }
.brand-mode-image .brand-logo-text-group { display: none; }
.main-nav        { display: flex; gap: 1.5rem; margin-left: auto; }
.main-nav a      { color: var(--text); font-weight: 500; font-size: 0.9375rem; }
.main-nav a:hover { color: var(--accent); text-decoration: none; }
.header-actions  { display: flex; gap: 0.75rem; }
.menu-toggle     { display: none; background: none; border: none; font-size: 1.4rem; cursor: pointer; margin-left: auto; }

/* Mobile nav */
.mobile-nav {
    display: flex; flex-direction: column; gap: 0.75rem;
    padding: 1rem 1.25rem; border-top: 1px solid var(--border);
    background: var(--page-bg);
}
.mobile-nav[hidden] { display: none; }
.mobile-nav a { color: var(--text); font-weight: 500; padding: 0.4rem 0; }

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero {
    position: relative; background: var(--brand);
    padding: 7rem 0; text-align: center; overflow: hidden;
    background-image: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
}
.hero-overlay {
    position: absolute; inset: 0;
    background: url('/assets/img/event-1.jpg') center/cover no-repeat;
    opacity: .18; pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-content h1 {
    font-size: clamp(2.2rem, 6vw, 4rem); font-weight: 800;
    color: var(--white); line-height: 1.15; margin-bottom: 1.25rem;
}
.hero-sub {
    font-size: 1.15rem; color: rgba(255,255,255,.85);
    max-width: 580px; margin: 0 auto 2rem;
}
.hero-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── Services ──────────────────────────────────────────────────────────── */
.services-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem;
}
.service-card {
    background: var(--surface-bg); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.75rem;
    box-shadow: var(--shadow); transition: transform .2s;
}
.service-card:hover { transform: translateY(-3px); }
.service-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.service-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.service-card p   { color: var(--text-muted); font-size: 0.925rem; }

/* ─── How It Works ──────────────────────────────────────────────────────── */
.steps { display: flex; flex-direction: column; gap: 2rem; max-width: 680px; margin: 0 auto 3rem; }
.step  { display: flex; gap: 1.5rem; align-items: flex-start; }
.step-num {
    flex-shrink: 0; width: 2.5rem; height: 2.5rem;
    background: var(--accent); color: var(--white);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 1.1rem;
}
.step-body h3 { margin-bottom: 0.35rem; }
.step-body p  { color: var(--text-muted); }
.cta-block    { text-align: center; }

/* ─── Gallery ───────────────────────────────────────────────────────────── */
.gallery-scroll {
    display: flex; gap: 1rem; overflow-x: auto; padding: 1.5rem 1.25rem;
    scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.gallery-scroll::-webkit-scrollbar { height: 6px; }
.gallery-scroll::-webkit-scrollbar-track { background: var(--border); border-radius: 3px; }
.gallery-scroll::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 3px; }
.gallery-item {
    flex: 0 0 280px; scroll-snap-align: start;
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 200px; object-fit: cover; }

/* ─── Testimonials ───────────────────────────────────────────────────────── */
.testimonials-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.1rem;
    box-shadow: var(--shadow);
}
.testimonial-stars {
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
}
.testimonial-text {
    color: var(--text);
    font-size: 0.92rem;
}
.testimonial-author {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* ─── Contact ───────────────────────────────────────────────────────────── */
.contact-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem;
}
.contact-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); padding: 1.75rem; text-align: center;
    box-shadow: var(--shadow);
}
.contact-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.contact-card h3 { margin-bottom: 0.5rem; }

/* ─── Footer ────────────────────────────────────────────────────────────── */
.site-footer { background: var(--brand); color: rgba(255,255,255,.8); padding: 3rem 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 2rem; }
.footer-brand   { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.3rem; }
.footer-tagline { font-size: 0.85rem; opacity: .75; }
.site-footer h4 { color: var(--white); margin-bottom: 0.75rem; }
.site-footer ul li { margin-bottom: 0.4rem; font-size: 0.9rem; }
.site-footer a { color: rgba(255,255,255,.7); }
.site-footer a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2rem; padding-top: 1.25rem; text-align: center; font-size: 0.85rem; opacity: .65; }

/* ─── Cookie Consent Banner ─────────────────────────────────────────────── */
#mfp-cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--brand); color: rgba(255,255,255,.9);
    padding: 0.9rem 1.25rem;
    display: none; align-items: center; justify-content: center; gap: 1rem;
    flex-wrap: wrap; font-size: 0.9rem; box-shadow: 0 -2px 8px rgba(0,0,0,.25);
}
#mfp-cookie-banner.is-visible { display: flex; }
#mfp-cookie-banner p { margin: 0; }
#mfp-cookie-banner a { color: var(--gold); }
#mfp-cookie-accept {
    background: var(--accent); color: var(--white);
    border: none; border-radius: var(--radius);
    padding: 0.45rem 1.1rem; font-weight: 600; cursor: pointer;
    font-size: 0.9rem; white-space: nowrap;
}
#mfp-cookie-accept:hover { background: var(--accent-dark); }

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .main-nav, .header-actions { display: none; }
    .menu-toggle { display: block; }
    .hero { padding: 5rem 0; }
    .section { padding: calc(var(--section-padding, 5rem) * .7) 0; }
    .steps { gap: 1.5rem; }
}

/* ─── Client Portal CTA ─────────────────────────────────────────────────── */
.client-portal-cta { background: linear-gradient(135deg, #1a56db 0%, #1e40af 100%); color: #fff; }
.client-portal-cta .section-title { color: #fff; }
.portal-cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center; }
.portal-cta-text p { color: rgba(255,255,255,.9); max-width: 520px; }
.portal-feature-list { list-style: none; padding: 0; margin: 1rem 0 0; }
.portal-feature-list li { padding: .35rem 0; color: rgba(255,255,255,.9); font-size: .95rem; }
.portal-cta-actions { display: flex; flex-direction: column; gap: .875rem; min-width: 200px; }
.portal-cta-actions .btn-outline { color: #fff; border-color: rgba(255,255,255,.5); }
.portal-cta-actions .btn-outline:hover { background: rgba(255,255,255,.12); }
@media (max-width: 768px) {
    .portal-cta-inner { grid-template-columns: 1fr; gap: 2rem; }
    .portal-cta-actions { flex-direction: row; flex-wrap: wrap; }
}
