/* Marbella Stags — Premium Stag Do Platform (readable contrast) */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    /* Brand */
    --ms-navy: #0f172a;
    --ms-navy-mid: #1e293b;
    --ms-gold: #c9972e;
    --ms-gold-light: #e4b84a;
    --ms-coral: #e85d4c;
    --ms-coral-dark: #d14a3a;

    /* Light content areas */
    --ms-bg: #faf9f6;
    --ms-bg-alt: #f3f1ec;
    --ms-surface: #ffffff;
    --ms-border: #e2e8f0;
    --ms-text: #1e293b;
    --ms-text-secondary: #475569;
    --ms-text-muted: #64748b;

    /* Dark areas (hero, footer) */
    --ms-dark-bg: #0f172a;
    --ms-dark-surface: #1e293b;
    --ms-dark-text: #f8fafc;
    --ms-dark-muted: #cbd5e1;
    --ms-dark-subtle: #94a3b8;

    --ms-gradient-hero: linear-gradient(145deg, #0f172a 0%, #1a2744 45%, #243b5c 100%);
    --ms-gradient-gold: linear-gradient(135deg, var(--ms-gold) 0%, var(--ms-gold-light) 100%);
    --ms-gradient-sunset: linear-gradient(135deg, var(--ms-coral) 0%, #f07a5a 50%, var(--ms-gold-light) 100%);
    --ms-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
    --ms-shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --ms-radius: 14px;
    --ms-font-display: 'Bebas Neue', sans-serif;
    --ms-font-body: 'Outfit', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--ms-font-body);
    background: var(--ms-bg);
    color: var(--ms-text);
    line-height: 1.65;
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display-font {
    font-family: var(--ms-font-display);
    letter-spacing: 0.02em;
    line-height: 1.15;
    color: var(--ms-text);
}

a { color: var(--ms-gold); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ms-coral-dark); }

img { max-width: 100%; height: auto; }

/* Typography utilities */
.text-gold { color: var(--ms-gold) !important; }
.text-coral { color: var(--ms-coral) !important; }
.text-muted { color: var(--ms-text-muted) !important; }
.text-body { color: var(--ms-text-secondary) !important; }
.text-on-dark { color: var(--ms-dark-text) !important; }
.text-muted-on-dark { color: var(--ms-dark-muted) !important; }

/* Buttons */
.btn-ms {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--ms-font-body);
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
    text-decoration: none;
}

.btn-ms.btn-sm { padding: 0.5rem 1.15rem; font-size: 0.85rem; }

.btn-ms-primary {
    background: var(--ms-gradient-sunset);
    color: #fff;
    box-shadow: 0 4px 16px rgba(232, 93, 76, 0.3);
}
.btn-ms-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 93, 76, 0.4);
    color: #fff;
}

.btn-ms-gold {
    background: var(--ms-gradient-gold);
    color: var(--ms-navy);
}
.btn-ms-gold:hover { transform: translateY(-2px); color: var(--ms-navy); }

.btn-ms-outline {
    background: transparent;
    border: 2px solid var(--ms-gold);
    color: var(--ms-gold);
}
.btn-ms-outline:hover {
    background: var(--ms-gold);
    color: #fff;
}

.btn-ms-whatsapp { background: #25D366; color: #fff; }
.btn-ms-whatsapp:hover { background: #1fb855; color: #fff; }

.btn-ms-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.65);
    color: #fff;
}
.btn-ms-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border-color: #fff;
}

.fw-semibold { font-weight: 600; }

.card-ms-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}
.card-ms-link:hover { color: inherit; }

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    background: var(--ms-gradient-sunset);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
}

.card-ms { position: relative; }

/* Navbar */
.navbar-ms {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--ms-border);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.25s, padding 0.25s;
}

.navbar-ms.is-scrolled {
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    padding: 0.5rem 0;
}

.navbar-ms .navbar-brand {
    font-family: var(--ms-font-display);
    font-size: 1.75rem;
    color: var(--ms-navy) !important;
    letter-spacing: 0.05em;
}

.navbar-ms .navbar-brand span { color: var(--ms-gold); }

.navbar-ms .nav-link {
    color: var(--ms-text-secondary) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem !important;
}
.navbar-ms .nav-link:hover { color: var(--ms-gold) !important; }

.navbar-ms .nav-link.active {
    color: var(--ms-gold) !important;
    font-weight: 600;
}

.navbar-ms .navbar-toggler {
    border-color: var(--ms-border);
    padding: 0.35rem 0.55rem;
}

.navbar-ms .navbar-toggler-icon {
    width: 1.25em;
    height: 1.25em;
}

.navbar-ms .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(201, 151, 46, 0.25);
}

.lang-switch { display: flex; gap: 0.25rem; }
.lang-switch a {
    padding: 0.25rem 0.55rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    color: var(--ms-text-muted);
    text-transform: uppercase;
}
.lang-switch a.active {
    background: var(--ms-gold);
    color: #fff;
}

.navbar-mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* Hero — dark dramatic top */
.hero-ms {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    background: var(--ms-gradient-hero);
    overflow: hidden;
    color: var(--ms-dark-text);
}

.hero-ms::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 15% 85%, rgba(232, 93, 76, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 85% 15%, rgba(228, 184, 74, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-ms::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--ms-bg), transparent);
}

.hero-content { position: relative; z-index: 2; }

.hero-ms h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    color: #fff;
    margin-bottom: 1rem;
}

.hero-ms .lead {
    font-size: 1.2rem;
    color: var(--ms-dark-muted);
    max-width: 560px;
    font-weight: 400;
    line-height: 1.7;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--ms-gold-light);
    padding: 0.45rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat strong {
    display: block;
    font-family: var(--ms-font-display);
    font-size: 2rem;
    color: var(--ms-gold-light);
}

.hero-stat span {
    font-size: 0.8rem;
    color: var(--ms-dark-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hero image collage */
.hero-visual {
    position: relative;
    min-height: 420px;
}

.hero-visual-main {
    height: 380px;
    border-radius: var(--ms-radius);
    background-size: cover;
    background-position: center;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.15);
}

.hero-visual-small {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.hero-visual-top { top: -10px; right: -10px; }
.hero-visual-bottom { bottom: 20px; left: -20px; }

.hero-visual-badge {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: var(--ms-gold-light);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Trust bar */
.trust-bar {
    background: var(--ms-surface);
    border-top: 1px solid var(--ms-border);
    border-bottom: 1px solid var(--ms-border);
    padding: 1rem 0;
    text-align: center;
}

.trust-bar p {
    margin: 0;
    color: var(--ms-text-secondary);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Section label */
.section-label {
    display: inline-block;
    color: var(--ms-gold);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 0.75rem;
}

/* Cards — light surfaces */
.card-ms {
    background: var(--ms-surface);
    border: 1px solid var(--ms-border);
    border-radius: var(--ms-radius);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    box-shadow: var(--ms-shadow);
}

.card-ms:hover {
    transform: translateY(-4px);
    box-shadow: var(--ms-shadow-lg);
    border-color: rgba(201, 151, 46, 0.35);
}

.card-ms-img {
    height: 220px;
    background: var(--ms-bg-alt);
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-ms-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.35), transparent 50%);
}

.card-ms-body { padding: 1.5rem; }

.card-ms-body h3,
.card-ms-body h4 {
    color: var(--ms-text);
    font-family: var(--ms-font-display);
}

.card-ms-body h3.card-title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.card-ms-body p.card-desc { font-size: 0.92rem; margin-bottom: 0; }

.activity-card-mini h4 {
    font-size: 1rem;
    font-family: var(--ms-font-body);
    font-weight: 600;
    color: var(--ms-text);
    margin: 0.5rem 0;
}

.activity-card-mini p { font-size: 0.85rem; margin-bottom: 0.35rem; }

.activity-card-img {
    height: 120px;
    background-size: cover;
    background-position: center;
}

.activity-card-mini h4 {
    font-size: 0.95rem;
    margin: 0 0 0.35rem;
}

/* Step cards */
.step-card {
    background: var(--ms-surface);
    border: 1px solid var(--ms-border);
    border-radius: var(--ms-radius);
    padding: 2rem 1.75rem;
    height: 100%;
    box-shadow: var(--ms-shadow);
    transition: transform 0.25s, box-shadow 0.25s;
}

.step-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--ms-shadow-lg);
}

.step-number {
    display: block;
    font-family: var(--ms-font-display);
    font-size: 2.5rem;
    color: var(--ms-gold);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-card h4 {
    font-family: var(--ms-font-body);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--ms-text);
    margin-bottom: 0.65rem;
}

.step-card p {
    color: var(--ms-text-secondary);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Testimonials */
.testimonial-card {
    background: var(--ms-surface);
    border: 1px solid var(--ms-border);
    border-radius: var(--ms-radius);
    padding: 1.75rem;
    margin: 0;
    height: 100%;
    box-shadow: var(--ms-shadow);
}

.testimonial-stars {
    color: var(--ms-gold);
    font-size: 1rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--ms-text-secondary);
    font-size: 1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.25rem;
}

.testimonial-card footer {
    color: var(--ms-text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    font-style: normal;
}

/* Feature cards */
.feature-card {
    background: var(--ms-surface);
    border: 1px solid var(--ms-border);
    border-radius: var(--ms-radius);
    padding: 1.75rem;
    height: 100%;
    box-shadow: var(--ms-shadow);
    transition: border-color 0.25s;
}

.feature-card:hover { border-color: rgba(201, 151, 46, 0.4); }

/* Floating WhatsApp */
.float-wa {
    position: fixed;
    bottom: 5.5rem;
    right: 1.25rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: transform 0.2s, box-shadow 0.2s;
}

.float-wa:hover {
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.55);
}

/* Mobile sticky CTA */
.mobile-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--ms-border);
    z-index: 998;
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
}

.mobile-cta-bar .btn-ms { justify-content: center; flex: 1; padding: 0.75rem 1rem; min-width: 0; }
.mobile-cta-bar .btn-ms-whatsapp { flex: 0 0 52px; width: 52px; padding: 0.75rem; }


.card-ms-price {
    font-family: var(--ms-font-display);
    font-size: 1.75rem;
    color: var(--ms-gold);
}

.card-ms-price small {
    font-family: var(--ms-font-body);
    font-size: 0.8rem;
    color: var(--ms-text-muted);
    font-weight: 400;
}

/* Sections */
.section-ms {
    padding: 5rem 0;
    background: var(--ms-bg);
    color: var(--ms-text);
}

.section-ms-alt { background: var(--ms-bg-alt); }

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--ms-text);
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--ms-text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Features */
.feature-icon {
    width: 56px;
    height: 56px;
    background: rgba(201, 151, 46, 0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-box h4 {
    color: var(--ms-text);
    font-family: var(--ms-font-body);
    font-weight: 600;
    font-size: 1.1rem;
}

.feature-box p {
    color: var(--ms-text-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.65;
}

/* CTA Banner */
.cta-banner {
    background: var(--ms-gradient-sunset);
    border-radius: var(--ms-radius);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--ms-shadow-lg);
}

.cta-banner h2 {
    color: #fff;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

/* Footer — dark but readable */
.footer-ms {
    background: var(--ms-dark-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4rem 0 2rem;
    color: var(--ms-dark-muted);
}

.footer-ms h5 {
    font-family: var(--ms-font-body);
    font-weight: 600;
    color: var(--ms-gold-light);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1rem;
}

.footer-ms p { color: var(--ms-dark-muted); }
.footer-ms .text-muted { color: var(--ms-dark-subtle) !important; }

.footer-ms a {
    color: var(--ms-dark-muted);
    font-size: 0.9rem;
    display: block;
    padding: 0.25rem 0;
}
.footer-ms a:hover { color: var(--ms-gold-light); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 1.5rem;
    text-align: center;
    color: var(--ms-dark-subtle);
    font-size: 0.85rem;
}

/* Quote Builder */
.quote-builder { min-height: 70vh; }

/* —— Quote Hero —— */
.quote-hero {
    position: relative;
    padding: 3.5rem 0 4rem;
    background: var(--ms-gradient-hero);
    color: var(--ms-dark-text);
    overflow: hidden;
}

.quote-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--quote-hero-bg);
    background-size: cover;
    background-position: center 30%;
    opacity: 0.22;
}

.quote-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15,23,42,0.4) 0%, rgba(15,23,42,0.92) 100%);
}

.quote-hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 820px;
}

.quote-hero .breadcrumb-list {
    justify-content: center;
    margin-bottom: 1.25rem;
}

.quote-hero .breadcrumb-list a {
    color: var(--ms-dark-muted);
}

.quote-hero .breadcrumb-list a:hover { color: var(--ms-gold-light); }

.quote-hero-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    background: rgba(201, 151, 46, 0.15);
    border: 1px solid rgba(201, 151, 46, 0.35);
    color: var(--ms-gold-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.quote-hero h1 {
    font-size: clamp(2.75rem, 6vw, 4.5rem);
    color: #fff;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.quote-hero-lead {
    color: var(--ms-dark-muted);
    font-size: 1.1rem;
    max-width: 560px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.quote-hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.quote-hero-stat {
    text-align: center;
}

.quote-hero-stat strong {
    display: block;
    font-family: var(--ms-font-display);
    font-size: 2rem;
    color: var(--ms-gold-light);
    line-height: 1;
}

.quote-hero-stat span {
    font-size: 0.8rem;
    color: var(--ms-dark-subtle);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* —— Quote Builder Pro —— */
.quote-builder-pro {
    margin-top: -2rem;
    position: relative;
    z-index: 2;
    padding-bottom: 6rem;
}

.quote-stepper {
    background: var(--ms-surface);
    border: 1px solid var(--ms-border);
    border-radius: var(--ms-radius);
    padding: 1.25rem 1.5rem 1rem;
    box-shadow: var(--ms-shadow-lg);
    margin-bottom: 2rem;
}

.quote-progress-track {
    height: 4px;
    background: var(--ms-bg-alt);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1.25rem;
}

.quote-progress-fill {
    height: 100%;
    background: var(--ms-gradient-gold);
    border-radius: 4px;
    transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.quote-step-nav {
    display: flex;
    gap: 0.35rem;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
}

.quote-step-nav::-webkit-scrollbar { display: none; }

.quote-step-pill {
    flex: 1 0 auto;
    min-width: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 0.35rem;
    border: none;
    background: transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    opacity: 0.55;
}

.quote-step-pill:disabled { cursor: default; }

.quote-step-pill.active,
.quote-step-pill.done {
    opacity: 1;
}

.quote-step-pill.active {
    background: rgba(201, 151, 46, 0.12);
    transform: translateY(-2px);
}

.quote-step-icon { font-size: 1.25rem; line-height: 1; }

.quote-step-name {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ms-text-muted);
}

.quote-step-pill.active .quote-step-name { color: var(--ms-gold); }

.quote-panel-pro {
    padding: 2.5rem;
    border: 1px solid var(--ms-border);
    box-shadow: var(--ms-shadow-lg);
    min-height: 420px;
}

.quote-step-head {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.quote-step-num {
    font-family: var(--ms-font-display);
    font-size: 2.5rem;
    line-height: 1;
    color: var(--ms-gold);
    opacity: 0.35;
    flex-shrink: 0;
}

.quote-step-head h3 {
    font-size: 1.85rem;
    margin: 0 0 0.35rem;
    color: var(--ms-text);
}

.quote-step-head p {
    margin: 0;
    color: var(--ms-text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.quote-input-lg {
    font-size: 1.15rem !important;
    padding: 1rem 1.15rem !important;
}

.quote-flex-toggle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--ms-text-secondary);
    margin-top: 0.5rem;
}

.quote-flex-toggle input { display: none; }

.quote-flex-box {
    width: 22px;
    height: 22px;
    border: 2px solid var(--ms-border);
    border-radius: 6px;
    position: relative;
    transition: all 0.2s;
    flex-shrink: 0;
}

.quote-flex-toggle input:checked + .quote-flex-box {
    background: var(--ms-gold);
    border-color: var(--ms-gold);
}

.quote-flex-toggle input:checked + .quote-flex-box::after {
    content: '✓';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
}

.quote-group-display {
    text-align: center;
    margin: 1.5rem 0 1rem;
}

.quote-group-number {
    font-family: var(--ms-font-display);
    font-size: clamp(4rem, 12vw, 6rem);
    line-height: 1;
    color: var(--ms-navy);
    display: block;
}

.quote-group-label {
    font-size: 1rem;
    color: var(--ms-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.quote-range {
    width: 100%;
    height: 8px;
    -webkit-appearance: none;
    appearance: none;
    background: var(--ms-bg-alt);
    border-radius: 4px;
    outline: none;
    margin-bottom: 1.25rem;
}

.quote-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--ms-gradient-gold);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(201, 151, 46, 0.45);
    border: 3px solid #fff;
}

.quote-quick-picks {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.quote-quick-pick {
    padding: 0.5rem 1rem;
    border: 2px solid var(--ms-border);
    border-radius: 50px;
    background: var(--ms-bg);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--ms-text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.quote-quick-pick:hover,
.quote-quick-pick.active {
    border-color: var(--ms-gold);
    background: rgba(201, 151, 46, 0.1);
    color: var(--ms-gold);
}

.quote-nights-grid,
.quote-accom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.quote-night-card,
.quote-accom-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.35rem 1rem;
    background: var(--ms-bg);
    border: 2px solid var(--ms-border);
    border-radius: var(--ms-radius);
    cursor: pointer;
    text-align: center;
    transition: all 0.25s ease;
}

.quote-night-card input,
.quote-accom-card input { display: none; }

.quote-night-card strong,
.quote-accom-card strong {
    color: var(--ms-text);
    font-size: 0.95rem;
}

.quote-accom-icon { font-size: 2rem; line-height: 1; }

.quote-night-card:hover,
.quote-accom-card:hover,
.quote-night-card.selected,
.quote-accom-card.selected {
    border-color: var(--ms-gold);
    background: rgba(201, 151, 46, 0.06);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(201, 151, 46, 0.12);
}

.quote-activities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.quote-activity-card {
    position: relative;
    display: block;
    border: 2px solid var(--ms-border);
    border-radius: var(--ms-radius);
    overflow: hidden;
    cursor: pointer;
    background: var(--ms-surface);
    transition: all 0.25s ease;
}

.quote-activity-card input { display: none; }

.quote-activity-img {
    height: 100px;
    background-size: cover;
    background-position: center;
}

.quote-activity-body {
    padding: 0.85rem 0.9rem 1rem;
}

.quote-activity-cat {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ms-text-muted);
    margin-bottom: 0.25rem;
}

.quote-activity-body strong {
    display: block;
    font-size: 0.88rem;
    color: var(--ms-text);
    line-height: 1.3;
    margin-bottom: 0.35rem;
}

.quote-activity-price {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ms-gold);
}

.quote-activity-check {
    position: absolute;
    top: 0.6rem;
    right: 0.6rem;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--ms-gold);
    color: #fff;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.25s ease;
}

.quote-activity-card.selected {
    border-color: var(--ms-gold);
    box-shadow: 0 8px 28px rgba(201, 151, 46, 0.18);
}

.quote-activity-card.selected .quote-activity-check {
    opacity: 1;
    transform: scale(1);
}

.quote-tier-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
}

.quote-tier-card {
    position: relative;
    display: block;
    padding: 1.35rem 1rem;
    background: var(--ms-bg);
    border: 2px solid var(--ms-border);
    border-radius: var(--ms-radius);
    cursor: pointer;
    text-align: center;
    transition: all 0.25s ease;
}

.quote-tier-card input { display: none; }

.quote-tier-card strong {
    display: block;
    font-size: 1.05rem;
    color: var(--ms-text);
    margin-bottom: 0.35rem;
}

.quote-tier-card p {
    font-size: 0.78rem;
    color: var(--ms-text-muted);
    margin: 0;
    line-height: 1.45;
}

.quote-tier-badge {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ms-gradient-sunset);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    white-space: nowrap;
}

.quote-tier-card.selected {
    border-color: var(--ms-gold);
    background: linear-gradient(180deg, rgba(201,151,46,0.08) 0%, rgba(201,151,46,0.02) 100%);
    box-shadow: 0 8px 28px rgba(201, 151, 46, 0.15);
    transform: translateY(-3px);
}

.quote-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--ms-border);
    gap: 1rem;
}

.quote-nav-actions { margin-left: auto; display: flex; gap: 0.75rem; }

.quote-submit-btn {
    padding: 1rem 2rem !important;
    font-size: 1.05rem !important;
}

/* Premium sidebar */
.quote-sidebar-pro {
    position: relative;
    background: var(--ms-navy);
    border: 1px solid rgba(201, 151, 46, 0.25);
    color: var(--ms-dark-text);
    overflow: hidden;
}

.quote-sidebar-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(201,151,46,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.quote-sidebar-pro h4 {
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.quote-summary-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    position: relative;
}

.quote-summary-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 0.88rem;
}

.quote-summary-list span { color: var(--ms-dark-muted); }

.quote-summary-list strong { color: var(--ms-gold-light); }

.quote-live-estimate-pro {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(201, 151, 46, 0.3);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.25rem;
    position: relative;
}

.quote-live-estimate-pro .quote-estimate-label { color: var(--ms-dark-muted); }

.quote-live-estimate-pro .quote-estimate-total {
    color: #fff;
    font-size: 2.75rem;
}

.quote-live-estimate-pro .quote-estimate-pp { color: var(--ms-gold-light); }

.quote-live-estimate-pro .quote-breakdown li {
    border-color: rgba(255,255,255,0.08);
    color: var(--ms-dark-muted);
}

.quote-live-estimate-pro .quote-breakdown li span:last-child { color: #fff; }

.quote-estimate-loading {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--ms-dark-muted);
    font-size: 0.88rem;
    margin-bottom: 1rem;
}

.quote-spinner {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.15);
    border-top-color: var(--ms-gold);
    border-radius: 50%;
    animation: quote-spin 0.7s linear infinite;
}

@keyframes quote-spin { to { transform: rotate(360deg); } }

.quote-sidebar-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    position: relative;
}

.quote-sidebar-benefits li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.65rem;
    font-size: 0.88rem;
    color: var(--ms-dark-muted);
    line-height: 1.45;
}

.quote-sidebar-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ms-gold);
    font-weight: 700;
}

.quote-sidebar-pro .quote-sidebar-trust {
    margin-top: 1.25rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.quote-sidebar-pro .quote-sidebar-trust strong { color: var(--ms-gold-light); }

.quote-sidebar-pro .quote-sidebar-trust span { color: var(--ms-dark-muted); }

/* Mobile sticky estimate bar */
.quote-mobile-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background: var(--ms-navy);
    border-top: 1px solid rgba(201, 151, 46, 0.3);
    padding: 0.75rem 1rem;
    padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -8px 32px rgba(0,0,0,0.25);
}

.quote-mobile-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 540px;
    margin: 0 auto;
}

.quote-mobile-estimate { line-height: 1.2; }

.quote-mobile-label {
    display: block;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ms-dark-muted);
}

.quote-mobile-estimate strong {
    font-family: var(--ms-font-display);
    font-size: 1.75rem;
    color: var(--ms-gold-light);
}

.quote-mobile-estimate small {
    display: block;
    color: var(--ms-dark-muted);
    font-size: 0.75rem;
}

body:has(.quote-mobile-bar) .mobile-cta-bar { display: none !important; }

body:has(.quote-mobile-bar) .float-wa {
    bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
}

/* Legacy quote builder (shared) */
.quote-steps {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.quote-step-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ms-surface);
    border: 2px solid var(--ms-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--ms-text-muted);
}

.quote-step-dot.active {
    background: var(--ms-gold);
    border-color: var(--ms-gold);
    color: #fff;
}

.quote-step-dot.done {
    background: rgba(201, 151, 46, 0.15);
    border-color: var(--ms-gold);
    color: var(--ms-gold);
}

.quote-panel {
    background: var(--ms-surface);
    border: 1px solid var(--ms-border);
    border-radius: var(--ms-radius);
    padding: 2.5rem;
    box-shadow: var(--ms-shadow);
}

.quote-panel h3 {
    font-size: 1.75rem;
    color: var(--ms-text);
    margin-bottom: 1.5rem;
}

.form-ms label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--ms-text);
}

.form-ms input,
.form-ms select,
.form-ms textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: #fff;
    border: 1px solid var(--ms-border);
    border-radius: 8px;
    color: var(--ms-text);
    font-family: var(--ms-font-body);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-ms input:focus,
.form-ms select:focus,
.form-ms textarea:focus {
    outline: none;
    border-color: var(--ms-gold);
    box-shadow: 0 0 0 3px rgba(201, 151, 46, 0.15);
}

.form-ms select option { color: var(--ms-text); background: #fff; }

.tier-card {
    background: var(--ms-bg);
    border: 2px solid var(--ms-border);
    border-radius: var(--ms-radius);
    padding: 1.25rem;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    color: var(--ms-text);
}

.tier-card strong { color: var(--ms-text); display: block; margin-bottom: 0.35rem; }
.tier-card p { color: var(--ms-text-muted); }

.tier-card:hover,
.tier-card.selected {
    border-color: var(--ms-gold);
    background: rgba(201, 151, 46, 0.06);
}

.tier-card input { display: none; }

.activity-check {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1rem;
    background: var(--ms-bg);
    border: 1px solid var(--ms-border);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    cursor: pointer;
    color: var(--ms-text);
}

.activity-check span:first-of-type { flex: 1; color: var(--ms-text-secondary); }

.activity-check:has(input:checked) {
    border-color: var(--ms-gold);
    background: rgba(201, 151, 46, 0.06);
}

.activity-check input { accent-color: var(--ms-gold); width: 18px; height: 18px; flex-shrink: 0; }

/* Page header */
.page-header {
    background: var(--ms-gradient-hero);
    padding: 4rem 0 3rem;
    text-align: center;
    color: var(--ms-dark-text);
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 0.5rem;
}

.page-header p,
.page-header .text-muted {
    color: var(--ms-dark-muted) !important;
    font-size: 1.1rem;
    max-width: 640px;
    margin: 0 auto;
}

.page-header-compact { padding: 3rem 0 2.5rem; }

.page-header .section-label {
    color: var(--ms-gold-light);
    display: block;
    margin-bottom: 0.5rem;
}

.page-breadcrumb {
    display: inline-block;
    color: var(--ms-dark-muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-decoration: none;
}
.page-breadcrumb:hover { color: var(--ms-gold-light); }

/* Contact cards */
.contact-card {
    background: var(--ms-surface);
    border: 1px solid var(--ms-border);
    border-radius: var(--ms-radius);
    padding: 1.75rem;
    box-shadow: var(--ms-shadow);
}

.contact-card-wa { border-color: rgba(37, 211, 102, 0.25); }

.contact-card-icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.contact-card h3 {
    font-family: var(--ms-font-body);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--ms-text-secondary);
    margin-bottom: 1rem;
}

.contact-card a:not(.btn-ms) { color: var(--ms-gold); font-weight: 600; }

/* Quote sidebar */
.quote-sidebar {
    background: var(--ms-surface);
    border: 1px solid var(--ms-border);
    border-radius: var(--ms-radius);
    padding: 1.75rem;
    box-shadow: var(--ms-shadow);
}

.quote-sidebar h4 {
    font-family: var(--ms-font-body);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.quote-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.quote-sidebar li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--ms-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.quote-sidebar li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ms-gold);
    font-weight: 700;
}

.quote-sidebar-trust {
    padding-top: 1rem;
    border-top: 1px solid var(--ms-border);
    text-align: center;
}

.quote-sidebar-trust strong {
    display: block;
    font-family: var(--ms-font-display);
    font-size: 2rem;
    color: var(--ms-gold);
    line-height: 1;
}

.quote-sidebar-trust span {
    font-size: 0.85rem;
    color: var(--ms-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.quote-live-estimate {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: var(--ms-radius-sm);
    padding: 1rem 1.1rem;
    margin-bottom: 1rem;
}

.quote-estimate-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ms-text-muted);
}

.quote-estimate-total {
    font-family: var(--ms-font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ms-navy);
    line-height: 1.1;
}

.quote-estimate-pp {
    font-size: 0.95rem;
    font-weight: 600;
}

.quote-breakdown {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.85rem;
}

.quote-breakdown li {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.35rem 0;
    border-top: 1px solid var(--ms-border);
    color: var(--ms-text-muted);
}

.quote-breakdown li span:last-child {
    color: var(--ms-navy);
    font-weight: 600;
}

.quote-progress-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ms-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 0.75rem;
}

.sticky-sidebar {
    position: sticky;
    top: 100px;
}

/* CTA inline */
.cta-inline {
    background: var(--ms-bg-alt);
    border: 1px solid var(--ms-border);
    border-radius: var(--ms-radius);
    padding: 2rem;
}

.cta-inline p {
    color: var(--ms-text-secondary);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

/* Package detail */
.package-hero-img {
    height: 360px;
    border-radius: var(--ms-radius);
    background-size: cover;
    background-position: center;
    box-shadow: var(--ms-shadow);
}

.package-includes {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.5rem;
}

.package-includes li {
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background: var(--ms-surface);
    border: 1px solid var(--ms-border);
    border-radius: 8px;
    color: var(--ms-text-secondary);
    position: relative;
}

.package-includes li::before {
    content: '✓';
    position: absolute;
    left: 1rem;
    color: var(--ms-gold);
    font-weight: 700;
}

.activity-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.activity-meta span {
    background: var(--ms-surface);
    border: 1px solid var(--ms-border);
    border-radius: 8px;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    color: var(--ms-text-secondary);
}

.opacity-75 { opacity: 0.75; }

/* Blog */
.blog-card-img::after { display: none; }

.blog-category {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ms-gold);
    margin-bottom: 0.5rem;
}

.blog-meta { font-size: 0.95rem; }

.blog-hero-img {
    height: 320px;
    border-radius: var(--ms-radius);
    background-size: cover;
    background-position: center;
    box-shadow: var(--ms-shadow);
}

/* Guide */
.guide-intro h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 0.75rem;
}

.guide-intro .lead-text {
    font-size: 1.1rem;
    color: var(--ms-text-secondary);
    line-height: 1.75;
}

.guide-block {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--ms-surface);
    border: 1px solid var(--ms-border);
    border-radius: var(--ms-radius);
    padding: 1.5rem;
    box-shadow: var(--ms-shadow);
}

.guide-block-icon {
    font-size: 2rem;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 151, 46, 0.1);
    border-radius: 12px;
}

.guide-block h3 {
    font-family: var(--ms-font-body);
    font-weight: 700;
    font-size: 1.15rem;
    margin: 0 0 0.5rem;
    color: var(--ms-gold);
}

.guide-block p {
    margin: 0;
    color: var(--ms-text-secondary);
    line-height: 1.65;
}

.guide-tips {
    background: var(--ms-bg-alt);
    border: 1px solid var(--ms-border);
    border-radius: var(--ms-radius);
    padding: 1.75rem;
}

.guide-tips h3 {
    font-family: var(--ms-font-body);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 1rem;
}

.guide-tips ul {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--ms-text-secondary);
    line-height: 1.8;
}

.guide-tips li { margin-bottom: 0.35rem; }

/* Sidebar CTA */
.sidebar-cta h4 {
    font-family: var(--ms-font-body);
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.sidebar-cta p.text-body {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}

.sidebar-trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--ms-border);
    padding-top: 1rem;
}

.sidebar-trust-list li {
    position: relative;
    padding-left: 1.35rem;
    margin-bottom: 0.5rem;
    font-size: 0.88rem;
    color: var(--ms-text-secondary);
    line-height: 1.45;
}

.sidebar-trust-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--ms-gold);
    font-weight: 700;
}

/* Package pills */
.package-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.package-pill {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--ms-dark-muted);
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 500;
}

.package-pill-gold {
    color: var(--ms-gold-light);
    border-color: rgba(228, 184, 74, 0.35);
}

/* Quote mobile trust */
.quote-mobile-trust {
    background: var(--ms-bg-alt);
    border: 1px solid var(--ms-border);
    border-radius: var(--ms-radius);
    padding: 0.85rem 1rem;
    text-align: center;
}

.quote-mobile-trust p {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ms-text-secondary);
}

.page-header .package-pills { margin-top: 1rem; }

/* Empty state */
.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--ms-surface);
    border: 1px dashed var(--ms-border);
    border-radius: var(--ms-radius);
}

.empty-state p {
    color: var(--ms-text-secondary);
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

/* Thank you & error pages */
.thank-you-page,
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-card,
.error-card {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    background: var(--ms-surface);
    border: 1px solid var(--ms-border);
    border-radius: var(--ms-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--ms-shadow-lg);
}

.thank-you-icon { font-size: 3.5rem; margin-bottom: 0.5rem; }

.thank-you-card h1,
.error-card h1 {
    font-size: clamp(2rem, 5vw, 2.75rem);
    margin-bottom: 0.75rem;
}

.thank-you-lead {
    color: var(--ms-text-secondary);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
}

.thank-you-summary {
    text-align: left;
    margin-bottom: 1.5rem;
}

.thank-you-summary p {
    color: var(--ms-text-secondary);
    margin-bottom: 0.5rem;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.error-code {
    font-family: var(--ms-font-display);
    font-size: clamp(4rem, 15vw, 6rem);
    color: var(--ms-gold);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.error-card p { font-size: 1.05rem; }

/* Prose content */
.content-prose h2,
.content-prose h3 {
    color: var(--ms-text);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-prose p { margin-bottom: 1.25rem; }

.content-prose ul,
.content-prose ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
    color: var(--ms-text-secondary);
}

.content-prose li { margin-bottom: 0.35rem; }

.content-prose a {
    color: var(--ms-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.content-prose a:hover { color: var(--ms-coral-dark); }

/* Content pages */
.content-body {
    color: var(--ms-text-secondary);
    font-size: 1.05rem;
    line-height: 1.75;
}

.content-body h2, .content-body h3 { color: var(--ms-text); margin-top: 1.5rem; }

/* FAQ */
.faq-item {
    background: var(--ms-surface);
    border: 1px solid var(--ms-border);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.faq-question {
    padding: 1rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ms-text);
    background: var(--ms-bg);
}

.faq-answer {
    padding: 0 1.25rem 1rem;
    color: var(--ms-text-secondary);
    font-size: 0.98rem;
    line-height: 1.65;
}

/* Group payment table on light section */
.section-ms .admin-table { color: var(--ms-text); }
.section-ms .admin-table th {
    color: var(--ms-text-muted);
    border-bottom-color: var(--ms-border);
}
.section-ms .admin-table td { border-bottom-color: var(--ms-border); }

/* Alerts */
.alert-success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #065f46;
    padding: 1rem;
    border-radius: 8px;
}

.alert-danger {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
    padding: 1rem;
    border-radius: 8px;
}

.faq-question span {
    color: var(--ms-gold);
    font-size: 1.25rem;
    line-height: 1;
    transition: transform 0.2s;
}

.faq-item.open .faq-question span { transform: rotate(45deg); }

/* Group payments */
.group-summary-stat {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--ms-border);
}

.group-summary-stat:last-of-type { border-bottom: none; }

.group-summary-stat span {
    font-size: 0.9rem;
    color: var(--ms-text-muted);
}

.group-summary-stat strong {
    font-size: 1.05rem;
    color: var(--ms-text);
}

.progress-bar-ms {
    height: 8px;
    background: var(--ms-bg-alt);
    border-radius: 50px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--ms-gradient-gold);
    border-radius: 50px;
    transition: width 0.4s ease;
}

.group-table-wrap { border-radius: var(--ms-radius); }

@media (max-width: 767px) {
    .group-table thead { display: none; }

    .group-table tr {
        display: block;
        background: var(--ms-surface);
        border: 1px solid var(--ms-border);
        border-radius: var(--ms-radius);
        margin-bottom: 0.75rem;
        padding: 0.75rem 1rem;
    }

    .group-table td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0.45rem 0 !important;
        border: none !important;
        font-size: 0.9rem;
    }

    .group-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--ms-text-muted);
        margin-right: 1rem;
        flex-shrink: 0;
    }

    .group-table td .btn-ms { width: auto; }
}

/* Selection */
::selection {
    background: rgba(201, 151, 46, 0.25);
    color: var(--ms-text);
}

/* Skip link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 10000;
    background: var(--ms-navy);
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.skip-link:focus {
    top: 1rem;
    color: #fff;
}

/* Category filter chips */
.category-filter-bar {
    background: var(--ms-surface);
    border-bottom: 1px solid var(--ms-border);
    padding: 1.25rem 0;
}

.category-filter-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ms-text-muted);
    margin: 0 0 0.75rem;
}

.category-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.category-chip {
    display: inline-block;
    padding: 0.45rem 1rem;
    border-radius: 50px;
    border: 1px solid var(--ms-border);
    background: var(--ms-bg);
    color: var(--ms-text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.2s;
}

.category-chip:hover {
    border-color: var(--ms-gold);
    color: var(--ms-gold);
}

.category-chip.active {
    background: var(--ms-gold);
    border-color: var(--ms-gold);
    color: #fff;
}

/* Admin login */
.admin-login-body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ms-gradient-hero);
    padding: 1.5rem;
}

.admin-login-card {
    width: 100%;
    max-width: 400px;
    background: #fff;
    border-radius: var(--ms-radius);
    padding: 2.5rem 2rem;
    box-shadow: var(--ms-shadow-lg);
}

.admin-login-brand {
    font-family: var(--ms-font-display);
    font-size: 2rem;
    text-align: center;
    color: var(--ms-navy);
    letter-spacing: 0.05em;
}

.admin-login-brand span { color: var(--ms-gold); }

.admin-login-sub {
    text-align: center;
    color: var(--ms-text-muted);
    font-size: 0.9rem;
    margin: 0.25rem 0 1.5rem;
}

.admin-login-form .form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--ms-text);
}

.admin-login-form .form-control {
    border-radius: 8px;
    border-color: var(--ms-border);
    padding: 0.65rem 0.85rem;
}

.admin-login-form .form-control:focus {
    border-color: var(--ms-gold);
    box-shadow: 0 0 0 3px rgba(201, 151, 46, 0.15);
}

/* Admin (unchanged light theme) */
.admin-body { background: #f0f2f5; color: #333; min-height: 100vh; }

.admin-sidebar {
    background: var(--ms-navy);
    min-height: 100vh;
    width: 260px;
    position: fixed;
    left: 0;
    top: 0;
    padding: 1.5rem 0;
    z-index: 100;
}

.admin-sidebar .brand {
    font-family: var(--ms-font-display);
    font-size: 1.5rem;
    color: var(--ms-gold-light);
    padding: 0 1.5rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.admin-sidebar a {
    display: block;
    padding: 0.65rem 1.5rem;
    color: var(--ms-dark-muted);
    font-size: 0.9rem;
}
.admin-sidebar a:hover,
.admin-sidebar a.active {
    color: var(--ms-gold-light);
    background: rgba(255, 255, 255, 0.06);
}

.admin-sidebar .brand span { color: var(--ms-gold-light); }

.admin-sidebar-footer {
    margin-top: 2rem;
    padding: 1rem 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar-view {
    font-size: 0.82rem !important;
    color: var(--ms-dark-subtle) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.admin-sidebar-logout {
    color: #ff8a75 !important;
    padding-left: 0 !important;
    padding-top: 0.5rem !important;
}

.admin-mobile-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 56px;
    background: var(--ms-navy);
    z-index: 101;
    align-items: center;
    padding: 0 1rem;
    gap: 1rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.admin-mobile-title {
    font-family: var(--ms-font-display);
    color: var(--ms-gold-light);
    letter-spacing: 0.05em;
}

.admin-menu-toggle {
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.admin-menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.admin-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 99;
}

.admin-overlay.show { display: block; }

.admin-main { margin-left: 260px; padding: 2rem; }
.admin-card {
    background: #fff;
    border-radius: var(--ms-radius);
    box-shadow: var(--ms-shadow);
    padding: 1.5rem;
    border: 1px solid var(--ms-border);
}

.admin-card h5 {
    font-weight: 700;
    color: var(--ms-navy);
    margin-bottom: 1rem;
}

.stat-card {
    background: #fff;
    border-radius: var(--ms-radius);
    padding: 1.25rem;
    box-shadow: var(--ms-shadow);
    border: 1px solid var(--ms-border);
    transition: transform 0.2s;
}

.stat-card:hover { transform: translateY(-2px); }

.stat-card .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--ms-navy);
    font-family: var(--ms-font-display);
}

.stat-card .stat-label { font-size: 0.85rem; color: #64748b; }

/* 404 links */
.error-links {
    padding-top: 1.25rem;
    border-top: 1px solid var(--ms-border);
}

.error-links-label {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ms-text-muted);
    margin-bottom: 0.75rem;
}

.error-links-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
}

.error-links-grid a {
    display: block;
    padding: 0.6rem 0.85rem;
    background: var(--ms-bg);
    border: 1px solid var(--ms-border);
    border-radius: 8px;
    color: var(--ms-text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
}

.error-links-grid a:hover {
    border-color: var(--ms-gold);
    color: var(--ms-gold);
}

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th,
.admin-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}
.admin-table th {
    font-weight: 600;
    color: #64748b;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.badge-status {
    padding: 0.25rem 0.6rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}
.badge-new { background: #dbeafe; color: #1d4ed8; }
.badge-confirmed { background: #dcfce7; color: #15803d; }
.badge-pending { background: #ffedd5; color: #c2410c; }
.badge-paid { background: #dcfce7; color: #166534; }

.admin-page-sub { font-size: 0.9rem; }

.admin-page-header .btn { border-radius: 8px; }

.admin-card-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ms-gold);
    text-decoration: none;
}

.admin-card-link:hover { color: var(--ms-coral-dark); }

.admin-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.stat-card-leads { border-left: 4px solid #3b82f6; }
.stat-card-groups { border-left: 4px solid #10b981; }
.stat-card-revenue { border-left: 4px solid var(--ms-gold); }
.stat-card-pending { border-left: 4px solid #f97316; }

.admin-table a {
    color: var(--ms-navy);
    font-weight: 600;
    text-decoration: none;
}

.admin-table a:hover { color: var(--ms-gold); }

/* Animations */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up { animation: fadeUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; opacity: 0; }
.delay-2 { animation-delay: 0.2s; opacity: 0; }
.delay-3 { animation-delay: 0.3s; opacity: 0; }

.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .admin-mobile-bar { display: flex; }

    .admin-sidebar {
        display: block;
        transform: translateX(-100%);
        transition: transform 0.25s ease;
        z-index: 102;
        top: 0;
        padding-top: 4rem;
    }

    .admin-sidebar.open { transform: translateX(0); }

    .admin-main {
        margin-left: 0;
        padding: 5rem 1rem 2rem;
    }

    /* Hide floating WA — mobile bar already has WhatsApp */
    .float-wa { display: none; }

    .navbar-ms .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: var(--ms-radius);
        margin-top: 0.75rem;
        border: 1px solid var(--ms-border);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .navbar-ms .navbar-nav {
        margin-bottom: 0.5rem;
    }

    .navbar-ms .nav-link {
        padding: 0.65rem 0.5rem !important;
        border-bottom: 1px solid var(--ms-border);
    }

    .navbar-ms .nav-item:last-child .nav-link {
        border-bottom: none;
    }

    .navbar-mobile-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        width: 100%;
        padding-top: 1rem;
        margin-top: 0.5rem;
        border-top: 1px solid var(--ms-border);
    }

    .navbar-mobile-actions .lang-switch {
        justify-content: center;
    }

    .navbar-mobile-actions .btn-ms {
        width: 100%;
        justify-content: center;
    }

    .sticky-sidebar { position: static; top: auto; }
}

@media (max-width: 767px) {
    .container { padding-left: 1rem; padding-right: 1rem; }

    body {
        padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
    }

    /* Hero */
    .hero-ms {
        min-height: auto;
        padding-bottom: 1.5rem;
    }

    .hero-content { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }

    .hero-ms h1 {
        font-size: clamp(2.25rem, 11vw, 3.25rem);
        line-height: 1.05;
    }

    .hero-ms .lead {
        font-size: 1rem;
        line-height: 1.6;
    }

    .hero-badge {
        font-size: 0.78rem;
        padding: 0.35rem 0.85rem;
        margin-bottom: 1rem;
    }

    .hero-cta-group .btn-ms {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        margin-top: 1.75rem;
        padding-top: 1.5rem;
    }

    .hero-stat strong { font-size: 1.5rem; }
    .hero-stat span { font-size: 0.65rem; letter-spacing: 0.03em; }

    /* Hero collage — single image, no overflow */
    .hero-visual {
        min-height: auto;
        margin-top: 1.25rem;
        padding: 0;
    }

    .hero-visual-main {
        height: 220px;
        border-width: 2px;
    }

    .hero-visual-small { display: none; }

    .hero-visual-badge {
        bottom: 0.75rem;
        right: 0.75rem;
        left: 0.75rem;
        text-align: center;
        font-size: 0.78rem;
        padding: 0.4rem 0.75rem;
    }

    /* Trust bar */
    .trust-bar { padding: 0.75rem 0; }

    .trust-bar p {
        font-size: 0.75rem;
        line-height: 1.55;
        padding: 0 0.25rem;
    }

    /* Sections */
    .section-ms { padding: 2.5rem 0; }
    .section-header { margin-bottom: 1.75rem; }
    .section-header h2 { font-size: clamp(1.65rem, 7vw, 2.25rem); }
    .section-header p { font-size: 0.95rem; }

    /* Cards */
    .card-ms:hover { transform: none; box-shadow: var(--ms-shadow); }

    .card-ms-body { padding: 1.15rem; }

    .card-ms-body .d-flex.justify-content-between {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 0.75rem;
    }

    .card-ms-body .btn-ms.btn-sm {
        width: 100%;
        justify-content: center;
    }

    .card-ms-img { height: 180px; }

    .activity-card-img { height: 140px; }

    .activity-card-mini .p-3 { padding: 1rem !important; }

    /* Steps & testimonials */
    .step-card { padding: 1.35rem 1.25rem; }
    .step-number { font-size: 2rem; margin-bottom: 0.75rem; }
    .testimonial-card { padding: 1.35rem; }

    /* CTA banner */
    .cta-banner { padding: 2rem 1.25rem; }
    .cta-banner .d-flex { flex-direction: column; }
    .cta-banner .btn-ms { width: 100%; justify-content: center; }

    .cta-inline { padding: 1.5rem 1.25rem; }

    /* Page headers */
    .page-header { padding: 2.25rem 0 1.75rem; }
    .page-header-compact { padding: 2rem 0 1.5rem; }

    .page-header h1 {
        font-size: clamp(2rem, 9vw, 3rem);
        line-height: 1.05;
    }

    .page-header p,
    .page-header .text-muted {
        font-size: 0.95rem;
    }

    /* Quote builder pro */
    .quote-hero { padding: 2.5rem 0 3rem; }
    .quote-hero-stats { gap: 1.5rem; }
    .quote-builder-pro { margin-top: -1rem; padding-bottom: 5.5rem; }
    .quote-stepper { padding: 1rem; }
    .quote-step-name { display: none; }
    .quote-step-pill { min-width: 44px; }
    .quote-panel-pro { padding: 1.35rem; min-height: auto; }
    .quote-step-head { flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
    .quote-step-num { font-size: 1.75rem; }
    .quote-step-head h3 { font-size: 1.45rem; }
    .quote-activities-grid { grid-template-columns: 1fr; }
    .quote-tier-grid { grid-template-columns: 1fr; }
    .quote-nav-bar { flex-direction: column-reverse; }
    .quote-nav-actions { margin-left: 0; width: 100%; }
    .quote-nav-actions .btn-ms { width: 100%; justify-content: center; }
    .quote-nav-bar > .btn-ms-outline { width: 100%; justify-content: center; }

    .quote-panel { padding: 1.25rem; }
    .quote-panel h3 { font-size: 1.35rem; margin-bottom: 1rem; }

    .quote-steps {
        gap: 0.35rem;
        justify-content: center;
    }

    .quote-step-dot {
        width: 30px;
        height: 30px;
        font-size: 0.72rem;
    }

    .quote-builder .d-flex.justify-content-between.mt-4 {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }

    .quote-builder .d-flex.justify-content-between.mt-4 .ms-auto {
        margin-left: 0 !important;
        width: 100%;
    }

    .quote-builder .d-flex.justify-content-between.mt-4 .btn-ms {
        width: 100%;
        justify-content: center;
    }

    .tier-card { padding: 1rem 0.75rem; }
    .tier-card strong { font-size: 0.9rem; }

    /* Contact */
    .contact-card { padding: 1.35rem; }

    /* Package detail */
    .package-hero-img { height: 220px; }

    /* Footer */
    .footer-ms { padding: 2.5rem 0 1.5rem; }
    .footer-bottom { margin-top: 2rem; }

    /* Mobile sticky bar */
    .mobile-cta-bar {
        padding: 0.65rem 0.85rem;
        padding-bottom: calc(0.65rem + env(safe-area-inset-bottom, 0px));
        gap: 0.5rem;
    }

    .mobile-cta-bar .btn-ms {
        font-size: 0.85rem;
        padding: 0.7rem 0.75rem;
    }

    .thank-you-card,
    .error-card { padding: 2rem 1.25rem; }

    .thank-you-actions { flex-direction: column; }
    .thank-you-actions .btn-ms { width: 100%; justify-content: center; }

    .guide-block { flex-direction: column; gap: 0.75rem; }

    .blog-hero-img { height: 220px; }

    .navbar-ms .navbar-brand { font-size: 1.45rem; }
}

@media (max-width: 575px) {
    .hero-stats {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-stat strong { font-size: 1.75rem; }
    .hero-stat span { font-size: 0.72rem; }

    .trust-bar p { font-size: 0.7rem; }

    .card-badge {
        top: 0.65rem;
        left: 0.65rem;
        font-size: 0.65rem;
        padding: 0.3rem 0.6rem;
    }

    .activity-check {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .activity-check span.ms-auto {
        margin-left: 2rem !important;
        width: 100%;
    }
}

@media (hover: none) {
    .card-ms:hover,
    .step-card:hover,
    .btn-ms-primary:hover,
    .btn-ms-gold:hover {
        transform: none;
    }
}

/* SEO breadcrumbs */
.breadcrumb-nav {
    margin-bottom: 1rem;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.82rem;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    color: var(--ms-text-muted);
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    opacity: 0.5;
}

.page-header .breadcrumb-list a {
    color: var(--ms-dark-muted);
    text-decoration: none;
}

.page-header .breadcrumb-list a:hover {
    color: var(--ms-gold-light);
}

.page-header .breadcrumb-item span[aria-current="page"] {
    color: var(--ms-gold-light);
}

/* SEO internal hub */
.seo-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.5rem;
}

.seo-hub-grid a {
    display: block;
    padding: 0.65rem 0.9rem;
    background: var(--ms-bg);
    border: 1px solid var(--ms-border);
    border-radius: 8px;
    color: var(--ms-text-secondary);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
}

.seo-hub-grid a:hover {
    border-color: var(--ms-gold);
    color: var(--ms-gold);
}
