/* =========================================================
   HUN — HAJJ & UMRAH NIGERIA — LANDING PAGE STYLES
   Built on the Finovate CSS architecture (same class system,
   same card/button/section patterns), reskinned for HUN.
   ========================================================= */

:root {
    /* HUN Expo '25 official brand palette (Brand Guidelines, p.15) */
    --gold: #c39f6b;
    /* primary accent — HEX #C39F6B */
    --gold-dark: #b58b51;
    /* deeper gold for hover / emphasis */
    --sand: #ecd09c;
    /* secondary warm accent */
    --deep-green: #063931;
    /* faith, trust, growth — dark sections */
    --charcoal: #0a1916;
    /* authority — darkest tone, footer base */
    --ink: #0a1916;
    /* body/heading ink = charcoal */
    --ink-soft: #3a4642;
    --cream: #f3f9f9;
    /* light grey per guide, used as light section bg */
    --white: #ffffff;
    --grey-text: #5c655f;
    --border-soft: #e3dac6;
    /* warm sand-tinted hairline */

    --font-display: 'Cinzel', serif;
    /* wordmark / headings */
    --font-body: 'Ubuntu', sans-serif;
    /* body copy */

    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-pill: 999px;

    --container-width: 1240px;
}

/* Ornamental geometric pattern (Brand Guidelines, p.13) —
   gold diamond lattice, used as a decorative texture only,
   never behind body text at full strength. */
.brand-pattern {
    background-image:
        linear-gradient(135deg, transparent 46%, rgba(195, 159, 107, .55) 46%, rgba(195, 159, 107, .55) 48%, transparent 48%),
        linear-gradient(45deg, transparent 46%, rgba(195, 159, 107, .55) 46%, rgba(195, 159, 107, .55) 48%, transparent 48%);
    background-size: 34px 34px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

/* =========================================================
   BUTTONS
   ========================================================= */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn-primary {
    background: var(--gold);
    color: var(--ink);
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(195, 159, 107, .35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .5);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--ink);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--ink);
    border: 1px solid var(--ink);
}

.btn-outline-dark:hover {
    background: var(--ink);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-round {
    padding-right: 8px;
}

.btn-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold);
    font-size: 13px;
}

.btn-arrow svg {
    width: 12px;
    height: 12px;
}

.pill-ghost {
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-soft);
    background: var(--cream);
    padding: 9px 18px;
    border-radius: var(--radius-pill);
}

.icon-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-soft);
    background: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ink);
    cursor: pointer;
}

.icon-btn svg {
    width: 15px;
    height: 15px;
}

.arrow-circle {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.arrow-circle svg {
    width: 13px;
    height: 13px;
}

.arrow-circle-white {
    background: rgba(255, 255, 255, .9);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 14px;
    color: var(--ink);
}

.text-link svg {
    width: 12px;
    height: 12px;
    transition: transform .2s ease;
}

.text-link:hover svg {
    transform: translate(2px, -2px);
}

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: var(--white);
    padding: 18px 0;
}

.header-inner {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    flex: none;
}

/* Logomark: always the exact exported asset — never recoloured,
   skewed, outlined, shadowed or placed on a busy background
   (Brand Guidelines p.10, Incorrect Usage). Clearspace = 1/5 of
   the mark's own height, applied here as surrounding padding. */
.logo-mark-img {
    height: 30px;
    width: auto;
    padding: 6px;
    flex: none;
}

.logo-word {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 19px;
    letter-spacing: .3px;
    line-height: 1;
}

.logo-word em {
    font-style: normal;
    font-weight: 400;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav>li {
    position: relative;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--deep-green);
    padding: 6px 0;
}

.nav-link.active {
    color: var(--ink);
    font-weight: 600;
}

.chev {
    font-size: 10px;
    opacity: .6;
}

.chev svg {
    width: 8px;
    height: 8px;
}

.nav-dropdown {
    position: absolute;
    top: 130%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    border-radius: 14px;
    box-shadow: 0 20px 40px rgba(20, 38, 31, .14);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: all .2s ease;
}

.main-nav>li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 9px 12px;
    border-radius: 9px;
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--deep-green);
}

.nav-dropdown a:hover {
    background: var(--cream);
    color: var(--ink);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    border: 1px solid var(--border-soft);
    background: var(--white);
    cursor: pointer;
    flex: none;
    transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.menu-toggle:hover {
    border-color: var(--gold);
    background: var(--cream);
}

.menu-toggle:active {
    transform: scale(.94);
}

.menu-toggle-bar {
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--deep-green);
    transition: transform .3s cubic-bezier(.4, 0, .2, 1), opacity .2s ease, background .2s ease;
}

.menu-toggle.is-active {
    background: var(--gold);
    border-color: var(--gold);
}

.menu-toggle.is-active .menu-toggle-bar {
    background: var(--charcoal);
}

.menu-toggle.is-active .menu-toggle-bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-active .menu-toggle-bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .menu-toggle-bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
    padding: 8px 0 0;
}

.hero-frame {
    position: relative;
    max-width: var(--container-width);
    margin: 0 auto;
    min-height: 620px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 60px 48px 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    background:
        linear-gradient(100deg, rgba(6, 57, 49, .93) 5%, rgba(6, 57, 49, .6) 42%, rgba(6, 57, 49, 0) 68%),
        var(--deep-green) center / cover no-repeat;
}

.hero-frame-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-copy {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.hero-copy .eyebrow-pill {
    background: rgba(255, 255, 255, .12);
    color: var(--gold);
    border: 1px solid rgba(255, 255, 255, .25);
    margin-bottom: 22px;
}

.hero-copy h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(34px, 4.6vw, 54px);
    line-height: 1.12;
    color: var(--white);
    margin: 0 0 20px;
}

.hero-copy h1 span {
    color: var(--gold);
}

.hero-copy p {
    font-size: 16.5px;
    font-weight: 800;
    font-family: var(--font-body);
    line-height: 1.75;
    color: var(--white);
    max-width: 480px;
    margin: 0 0 32px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-stepper {
    position: absolute;
    top: 60px;
    right: 48px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    height: 130px;
}

.step-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: .5px;
}

.step-label.muted {
    color: rgba(255, 255, 255, .45);
}

.step-line {
    flex: 1;
    width: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.hero-tags {
    position: relative;
    z-index: 2;
    margin-top: auto;
    display: flex;
    gap: 14px;
    padding: 26px 0;
    flex-wrap: wrap;
}

.hero-tag {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 15px 20px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    background: rgba(6, 57, 49, .55);
    border: 1px solid rgba(255, 255, 255, .3);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    text-shadow: 0 1px 3px rgba(0, 0, 0, .35);
}

.hero-tag:first-child {
    background: rgba(244, 242, 236, .92);
    color: var(--deep-green);
    border-color: transparent;
    font-weight: 600;
}

/* =========================================================
   VALUE STRIP
   ========================================================= */

.value-strip {
    background: var(--deep-green);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.value-item {
    padding: 34px 26px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
}

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

.value-item strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--white);
    font-size: 17px;
    margin-bottom: 5px;
}

.value-item span {
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
}

/* =========================================================
   FEATURE CARDS (who we are triptych)
   ========================================================= */

.feature-cards {
    padding: 90px 0 20px;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr 1fr;
    gap: 22px;
    align-items: stretch;
}

.card {
    border-radius: var(--radius-lg);
    padding: 26px;
    display: flex;
    flex-direction: column;
}

.card-light {
    background: var(--white);
    border: 1px solid var(--border-soft);
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.eyebrow-pill {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--ink-soft);
    background: var(--cream);
    padding: 7px 14px;
    border-radius: var(--radius-pill);
}

.eyebrow-pill-dark {
    background: rgba(18, 56, 50, .1);
    color: var(--deep-green);
}

.eyebrow-standalone {
    background: var(--cream);
}

.card-heading {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--deep-green);
    margin: 0 0 22px;
    flex-grow: 1;
}

.card-photo {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 230px;
}

.card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Accent (middle) card */

.card-accent {
    background: var(--gold);
    padding: 22px;
    justify-content: space-between;
}

.card-photo-blob {
    height: 340px;
    border-radius: 46% 54% 38% 62% / 52% 40% 60% 48%;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-photo-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-bottom {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.card-bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.card-accent-text {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--ink);
    margin: 0;
}

/* =========================================================
   SERVICES / MEMBERSHIP GRID
   ========================================================= */

.services {
    padding: 90px 0 110px;
    background: var(--cream);
}

.section-heading {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 50px;
}

.section-heading h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1.25;
    color: var(--deep-green);
    margin: 16px 0 0;
}

.section-heading p {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--grey-text);
    margin: 16px 0 0;
}

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

.service-tile {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.service-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-icon {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 15px;
    height: 15px;
}

.service-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 18px 16px;
    background: linear-gradient(0deg, rgba(6, 57, 49, .85), rgba(6, 57, 49, 0));
}

.service-caption h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15px;
    color: var(--white);
    margin: 0 0 4px;
}

.service-caption p {
    font-size: 12px;
    color: rgba(255, 255, 255, .7);
    margin: 0;
}

/* =========================================================
   DARK SECTION (advisory)
   ========================================================= */

.dark-section {
    background: var(--deep-green);
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.dark-section::before {
    content: "";
    position: absolute;
    width: 460px;
    height: 460px;
    border: 1px solid rgba(195, 159, 107, .18);
    border-radius: 50%;
    right: -200px;
    top: -140px;
}

.dark-section .section-heading h2 {
    color: var(--white);
}

.dark-section .section-heading p {
    color: rgba(255, 255, 255, .65);
}

.dark-section .eyebrow-pill {
    background: rgba(255, 255, 255, .1);
    color: var(--gold);
}

.dark-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dark-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-md);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dark-card .arrow-circle {
    background: rgba(195, 159, 107, .14);
    color: var(--gold);
}

.dark-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 19px;
    color: var(--white);
    margin: 0;
}

.dark-card p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .62);
    margin: 0;
}

/* =========================================================
   PROVIDER CARDS
   ========================================================= */

.provider-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.provider-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.provider-photo {
    height: 200px;
}

.provider-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.provider-body {
    padding: 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.provider-body h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 19px;
    color: var(--deep-green);
    margin: 0;
}

.provider-body p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--grey-text);
    margin: 0;
}

.verified-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--deep-green);
}

.verified-tag svg {
    width: 13px;
    height: 13px;
    color: var(--gold-dark);
}

/* =========================================================
   INSIGHTS
   ========================================================= */

.insights {
    padding: 90px 0;
    background: var(--cream);
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.insight-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.insight-card h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 18px;
    color: var(--deep-green);
    margin: 0;
    line-height: 1.35;
}

.insight-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--grey-text);
    margin: 0;
}

/* =========================================================
   CTA
   ========================================================= */

.cta {
    background: linear-gradient(135deg, #0a1916, var(--deep-green));
    text-align: center;
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border: 1px solid rgba(195, 159, 107, .16);
    border-radius: 50%;
    right: -220px;
    top: -220px;
}

.cta-pattern-strip {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 64px;
    opacity: .5;
}

.cta-inner {
    position: relative;
    z-index: 2;
    max-width: 620px;
    margin: 0 auto;
}

.cta h2 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--white);
    font-size: clamp(30px, 4vw, 42px);
    margin: 16px 0 16px;
}

.cta p {
    color: rgba(255, 255, 255, .7);
    font-size: 15.5px;
    line-height: 1.8;
    margin: 0 0 30px;
}

/* =========================================================
   PARTNERS
   ========================================================= */

.partners {
    padding: 70px 0;
    background: var(--white);
}

.partners-heading {
    text-align: center;
    margin-bottom: 36px;
}

.partners-heading h3 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 26px;
    color: var(--deep-green);
    margin: 8px 0 0;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.partner-logo {
    height: 88px;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 22px;
}

.partner-logo img {
    max-height: 52px;
    max-width: 140px;
    object-fit: contain;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    background: #0a1916;
    color: rgba(255, 255, 255, .68);
    position: relative;
    overflow: hidden;
}

.footer-pattern-strip {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 46px;
    opacity: .35;
}

.newsletter-row {
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    flex-wrap: wrap;
}

.newsletter-row h2 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--white);
    font-size: 26px;
    max-width: 360px;
    margin: 0;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 440px;
}

.newsletter-form input {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .06);
    border-radius: var(--radius-pill);
    padding: 14px 20px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, .45);
}

.newsletter-form button {
    border: none;
}

.footer-main {
    padding: 54px 0 26px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 28px;
}

.footer-grid h4 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--white);
    font-size: 14px;
    margin: 0 0 16px;
}

.footer-grid p,
.footer-grid a {
    font-size: 13.5px;
    line-height: 1.9;
    color: rgba(255, 255, 255, .6);
}

.footer-grid li {
    margin-bottom: 4px;
}

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

.socials {
    display: flex;
    gap: 10px;
    margin-top: 40px;
}

.socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.socials svg {
    width: 15px;
    height: 15px;
    color: var(--white);
}

.socials a:hover {
    background: var(--gold);
}

.socials a:hover svg {
    color: var(--ink);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 22px 0;
    text-align: center;
    font-size: 12.5px;
    margin-top: 26px;
}

/* =========================================================
   MOBILE MENU
   ========================================================= */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 90;
    visibility: hidden;
    opacity: 0;
    transition: opacity .35s ease, visibility 0s linear .35s;
}

.mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transition: opacity .35s ease, visibility 0s linear 0s;
}

.mobile-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 15, 13, .68);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.mobile-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(340px, 86vw);
    height: 100%;
    background: linear-gradient(180deg, #0a1916 0%, #0d221d 100%);
    padding: 22px 26px calc(28px + env(safe-area-inset-bottom, 0px));
    display: flex;
    flex-direction: column;
    box-shadow: -40px 0 80px rgba(0, 0, 0, .35);
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1);
}

.mobile-menu.is-open .mobile-panel {
    transform: translateX(0);
}

.mobile-panel .logo {
    color: var(--white);
    margin: 26px 0 18px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.mobile-panel .logo-mark-img {
    height: 46px;
    width: auto;
    padding: 0;
}

.mobile-close {
    align-self: flex-end;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.mobile-close:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: rotate(90deg);
}

.mobile-close svg {
    width: 14px;
    height: 14px;
    color: var(--white);
    transition: color .2s ease;
}

.mobile-close:hover svg {
    color: var(--charcoal);
}

.mobile-panel ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
    overflow-y: auto;
}

.mobile-panel li {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-panel ul a {
    position: relative;
    color: rgba(255, 255, 255, .82);
    font-family: var(--font-display);
    font-weight: 500;
    font-size: 16px;
    letter-spacing: .2px;
    padding: 15px 4px 15px 18px;
    display: flex;
    align-items: center;
    transition: color .2s ease, padding-left .2s ease;
}

.mobile-panel ul a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 0;
    border-radius: 3px;
    background: var(--gold);
    transition: height .2s ease;
}

.mobile-panel ul a:hover,
.mobile-panel ul a:active {
    color: var(--gold);
    padding-left: 24px;
}

.mobile-panel ul a:hover::before,
.mobile-panel ul a:active::before {
    height: 20px;
}

.mobile-panel .btn-primary {
    margin-top: 20px;
    width: 100%;
    justify-content: center;
}

.mobile-panel .logo-mark-img {
    filter: brightness(0) invert(1);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

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

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

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

    .value-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

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

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

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

    .event-feature {
        grid-template-columns: 1fr;
    }

    .event-photo {
        min-height: 260px;
    }
}

@media (max-width: 860px) {

    .main-nav,
    .header-right .icon-btn {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .header-right {
        gap: 8px;
    }

    .lang-switcher {
        padding: 3px;
        gap: 3px;
    }

    .lang-btn {
        padding: 5px 8px;
        font-size: 10.5px;
    }

    .header-right .btn-primary {
        padding: 10px 14px;
        font-size: 13px;
        gap: 6px;
    }

    .header-right .btn-primary .btn-arrow {
        width: 20px;
        height: 20px;
    }

    .header-right .btn-primary .btn-arrow svg {
        width: 11px;
        height: 11px;
    }

    .hero-frame {
        padding: 34px 24px 0;
        min-height: 480px;
    }

    .hero-stepper {
        display: none;
    }

    .hero-tags {
        flex-direction: column;
        padding: 20px 0;
        gap: 10px;
    }

    .hero-tag {
        min-width: 0;
        padding: 13px 18px;
    }
}

@media (max-width: 560px) {

    .container,
    .header-inner {
        padding: 0 20px;
    }

    .hero-frame {
        padding: 28px 20px 0;
        min-height: 440px;
    }

    .hero-copy h1 {
        font-size: 30px;
        line-height: 1.18;
    }

    .hero-copy p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        justify-content: center;
    }

    .services-grid,
    .value-grid,
    .dark-grid,
    .provider-grid,
    .insight-grid,
    .partner-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .pill-ghost {
        display: none;
    }

    .newsletter-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .newsletter-form {
        max-width: 100%;
    }

    .hero-frame {
        border-radius: 20px;
    }
}



/* =========================================================
   ABOUT PAGE COMPONENTS
   ========================================================= */

/* ---------- Page hero band ---------- */

.page-hero {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: flex-end;
    padding: 70px 0 40px;
    background:
        linear-gradient(100deg, rgba(6, 57, 49, .88) 10%, rgba(6, 57, 49, .55) 60%, rgba(6, 57, 49, .25) 100%),
        var(--deep-green) center / cover no-repeat;
}

.page-hero-inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    width: 100%;
}

.page-hero h1 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(34px, 4.4vw, 50px);
    color: var(--white);
    margin: 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .65);
}

.breadcrumb a {
    color: rgba(255, 255, 255, .85);
}

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

.breadcrumb span.sep {
    color: rgba(255, 255, 255, .35);
}

.breadcrumb span.current {
    color: var(--gold);
}

/* ---------- Icon eyebrow ---------- */

.eyebrow-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.eyebrow-icon-box {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--gold);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.eyebrow-icon-box svg {
    width: 11px;
    height: 11px;
}

.eyebrow-icon span {
    text-transform: uppercase;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 1.6px;
    color: var(--ink-soft);
}

/* ---------- Intro split ---------- */

.intro-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4 / 4.6;
}

.intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro-content h2 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: clamp(28px, 3.2vw, 38px);
    line-height: 1.25;
    color: var(--deep-green);
    margin: 0 0 18px;
}

.intro-lead {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.75;
    color: var(--ink-soft);
    margin: 0 0 20px;
}

.intro-content p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--grey-text);
    margin: 0 0 16px;
}

.check-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 26px;
    margin: 26px 0 0;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--ink-soft);
}

.check-list svg {
    width: 17px;
    height: 17px;
    flex: none;
    color: var(--gold);
    margin-top: 2px;
}

/* ---------- Purpose panel ---------- */

.purpose-panel {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 46px;
    box-shadow: 0 30px 70px rgba(6, 57, 49, .07);
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 46px;
    align-items: center;
}

.purpose-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 100%;
    min-height: 380px;
}

.purpose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.purpose-rows {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.purpose-row {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 14px;
    background: var(--cream);
}

.purpose-row .icon-circle-sm {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(195, 159, 107, .16);
    color: var(--gold-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: none;
}

.purpose-row .icon-circle-sm svg {
    width: 17px;
    height: 17px;
}

.purpose-row h4 {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 15.5px;
    color: var(--deep-green);
    margin: 0 0 4px;
}

.purpose-row p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--grey-text);
    margin: 0;
}

/* =========================================================
   MISSION, VISION & VALUES
   ========================================================= */

.vm-section {
    background: var(--deep-green);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.vm-item {
    padding: 34px 26px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    text-align: center;
}

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

.vm-item strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--white);
    font-size: 17px;
    margin-bottom: 5px;
}

.vm-item span {
    color: rgba(255, 255, 255, .6);
    font-size: 13px;
}



/* =========================================================
   HUN — TRADE ADVISORY PAGE
   Matches the uploaded template style
   ========================================================= */

/* Hero */
.adv-hero {
    padding: 120px 0 90px;
    background: var(--cream);
}

.adv-hero-content {
    max-width: 720px;
}

.adv-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 52px);
    color: var(--deep-green);
    line-height: 1.15;
    margin: 18px 0 22px;
}

.adv-hero p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--grey-text);
    margin-bottom: 32px;
    max-width: 580px;
}

.adv-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: rgba(195, 159, 107, 0.12);
    padding: 7px 14px;
    border-radius: 30px;
}

/* Values Strip */
.adv-values {
    padding: 0 0 80px;
    background: var(--cream);
}

.adv-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.adv-value-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 28px 24px;
}

.adv-value-card h4 {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--deep-green);
    margin-bottom: 10px;
}

.adv-value-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--grey-text);
    margin: 0;
}

/* Highlight Block */
.adv-highlight {
    padding: 40px 0 100px;
}

.adv-highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
}

.adv-highlight-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    padding: 48px 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
}

.adv-highlight-card h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--deep-green);
    line-height: 1.25;
    margin: 16px 0 18px;
}

.adv-highlight-card h2 span {
    background: var(--gold);
    color: var(--ink);
    padding: 2px 8px;
    border-radius: 6px;
}

.adv-highlight-card p {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--grey-text);
    margin-bottom: 28px;
}

.adv-highlight-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
}

/* Advisory Team — profile-style cards */
.adv-team {
    padding: 90px 0;
    background: var(--cream);
}

.adv-team-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 50px;
    gap: 20px;
}

.adv-team-header h2 {
    font-family: var(--font-display);
    font-size: 34px;
    color: var(--deep-green);
    margin-top: 12px;
}

.adv-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.adv-team-card {
    background: var(--white);
    border-radius: 28px;
    padding: 22px 18px 18px;
    box-shadow:
        0 4px 6px rgba(10, 25, 22, 0.03),
        0 18px 40px rgba(10, 25, 22, 0.08);
    border: 1px solid rgba(227, 218, 198, 0.6);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adv-team-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 8px 16px rgba(10, 25, 22, 0.05),
        0 24px 48px rgba(10, 25, 22, 0.12);
}

.adv-team-top {
    text-align: center;
    margin-bottom: 14px;
    padding: 0 6px;
}

.adv-team-top h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--ink);
    margin: 0;
    line-height: 1.35;
}

.adv-team-photo {
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--cream);
    margin-bottom: 14px;
}

.adv-team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.adv-team-card:hover .adv-team-photo img {
    transform: scale(1.04);
}

.adv-team-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
    padding-top: 4px;
}

.adv-team-role {
    font-size: 12.5px;
    font-weight: 500;
    color: var(--grey-text);
    line-height: 1.3;
    min-width: 0;
}

.adv-team-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 14px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font-body);
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.adv-team-btn:hover {
    background: var(--deep-green);
    transform: translateY(-1px);
}

@media (max-width: 991px) {
    .adv-team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .adv-team-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .adv-team-grid {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
    }

    .adv-team-card {
        padding: 20px 16px 16px;
    }
}

/* Services */
.adv-services {
    padding: 90px 0;
}

.adv-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.adv-service-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 32px 26px;
    transition: all 0.3s ease;
}

.adv-service-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

.adv-service-card h4 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--deep-green);
    margin-bottom: 12px;
}

.adv-service-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--grey-text);
    margin: 0;
}

/* CTA */
.adv-cta {
    padding: 40px 0 100px;
}

.adv-cta-box {
    background: linear-gradient(135deg, var(--deep-green), #0a1916);
    border-radius: 28px;
    padding: 70px 50px;
    text-align: center;
}

.adv-cta-content h2 {
    font-family: var(--font-display);
    font-size: 34px;
    color: var(--white);
    margin-bottom: 16px;
}

.adv-cta-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {

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

    .adv-highlight-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 600px) {

    .adv-values-grid,
    .adv-team-grid,
    .adv-services-grid {
        grid-template-columns: 1fr;
    }

    .adv-team-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================
   HUN — PROVIDERS PAGES
   Airlines / Hospitality / Tour Operators
   Product-card style, brand colours
   ========================================================= */

/* Hero */
.prov-hero {
    padding: 110px 0 70px;
    background: var(--cream);
    text-align: center;
}

.prov-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 48px);
    color: var(--deep-green);
    margin: 14px 0 16px;
}

.prov-hero p {
    font-size: 17px;
    color: var(--grey-text);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

.prov-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: rgba(195, 159, 107, 0.12);
    padding: 7px 14px;
    border-radius: 30px;
}

/* Intro */
.prov-intro {
    padding: 50px 0 30px;
}

.prov-intro p {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    font-size: 16.5px;
    line-height: 1.8;
    color: var(--grey-text);
}

/* Grid */
.prov-grid-section {
    padding: 40px 0 90px;
}

.prov-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ---------- Product-style cards ---------- */
.prov-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(227, 218, 198, 0.55);
    box-shadow:
        0 4px 8px rgba(10, 25, 22, 0.03),
        0 20px 44px rgba(10, 25, 22, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prov-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 8px 16px rgba(10, 25, 22, 0.05),
        0 28px 56px rgba(10, 25, 22, 0.12);
}

/* Media / logo area */
.prov-card-media {
    position: relative;
    margin: 12px 12px 0;
    border-radius: 20px;
    overflow: hidden;
    background: var(--cream);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prov-card-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.prov-card-logo img {
    max-height: 88px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.prov-card:hover .prov-card-logo img {
    transform: scale(1.05);
}

.prov-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--ink);
    box-shadow: 0 2px 8px rgba(10, 25, 22, 0.06);
}

.prov-mark {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.prov-mark svg {
    width: 16px;
    height: 16px;
}

/* Body */
.prov-card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.prov-card-body h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 4px;
    line-height: 1.3;
}

.prov-subtitle {
    display: block;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--grey-text);
    margin-bottom: 10px;
}

.prov-card-body p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--grey-text);
    margin: 0 0 20px;
    flex-grow: 1;
}

/* Footer row */
.prov-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.prov-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--cream);
    color: var(--deep-green);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.prov-meta-text {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--gold-dark);
    text-align: right;
}

/* Optional CTA button (if you add links later) */
.prov-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-body);
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.prov-cta-btn:hover {
    background: var(--deep-green);
    transform: translateY(-1px);
}

.prov-cta-btn svg {
    width: 13px;
    height: 13px;
}

/* Page CTA */
.prov-cta {
    padding: 20px 0 100px;
}

.prov-cta-box {
    background: linear-gradient(135deg, var(--deep-green), #0a1916);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
}

.prov-cta-box h2 {
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--white);
    margin-bottom: 14px;
}

.prov-cta-box p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    max-width: 520px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .prov-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .prov-hero {
        padding: 80px 0 50px;
    }

    .prov-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .prov-card-body {
        padding: 18px;
    }

    .prov-card-body h3 {
        font-size: 17px;
    }

    .prov-cta-box {
        padding: 44px 24px;
    }

    .prov-cta-box h2 {
        font-size: 24px;
    }
}

/* =========================================================
   PROVIDER CARDS — product-card style
   ========================================================= */

.providers-section {
    padding: 40px 0 90px;
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.provider-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(227, 218, 198, 0.55);
    box-shadow:
        0 4px 8px rgba(10, 25, 22, 0.03),
        0 20px 44px rgba(10, 25, 22, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 8px 16px rgba(10, 25, 22, 0.05),
        0 28px 56px rgba(10, 25, 22, 0.12);
}

/* Image area */
.provider-media {
    position: relative;
    margin: 12px 12px 0;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 3.2;
    background: var(--cream);
}

.provider-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.provider-card:hover .provider-media img {
    transform: scale(1.05);
}

.provider-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--ink);
}

.provider-mark {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.provider-mark svg {
    width: 16px;
    height: 16px;
}

/* Body */
.provider-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.provider-body h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 4px;
    line-height: 1.3;
}

.provider-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--grey-text);
    margin-bottom: 8px;
}

.provider-body p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--grey-text);
    margin: 0 0 22px;
    flex-grow: 1;
}

/* =========================================================
   SERVICE PROVIDERS LANDING — accredited-providers.html
========================================================= */

.prov-categories {
    padding: 40px 0 70px;
}

.prov-cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.prov-cat-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(227, 218, 198, 0.55);
    box-shadow:
        0 4px 8px rgba(10, 25, 22, 0.03),
        0 20px 44px rgba(10, 25, 22, 0.08);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.prov-cat-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 8px 16px rgba(10, 25, 22, 0.05),
        0 28px 56px rgba(10, 25, 22, 0.12);
}

.prov-cat-media {
    position: relative;
    margin: 12px 12px 0;
    border-radius: 20px;
    overflow: hidden;
    background: var(--cream);
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.prov-cat-media img {
    max-height: 88px;
    max-width: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.prov-cat-card:hover .prov-cat-media img {
    transform: scale(1.05);
}

.prov-cat-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.prov-cat-body h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 8px;
    line-height: 1.3;
}

.prov-cat-body p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--grey-text);
    margin: 0 0 18px;
    flex-grow: 1;
}

.prov-cat-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--deep-green);
    margin-top: auto;
}

.prov-cat-card:hover .prov-cat-link {
    color: var(--gold-dark);
}

.prov-cat-link svg {
    width: 13px;
    height: 13px;
    transition: transform 0.25s ease;
}

.prov-cat-card:hover .prov-cat-link svg {
    transform: translate(2px, -2px);
}

/* Trust strip */
.prov-trust {
    padding: 0 0 70px;
}

.prov-trust-box {
    background: var(--cream);
    border-radius: 24px;
    padding: 40px 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: center;
    border: 1px solid rgba(227, 218, 198, 0.55);
}

.prov-trust-item h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--deep-green);
    margin: 0 0 8px;
}

.prov-trust-item p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--grey-text);
    margin: 0;
}

/* Responsive — landing */
@media (max-width: 991px) {
    .prov-cat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prov-trust-box {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .prov-cat-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .prov-cat-body {
        padding: 18px;
    }

    .prov-cat-body h3 {
        font-size: 17px;
    }

    .prov-trust-box {
        padding: 32px 24px;
    }
}

/* Footer row */
.provider-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.provider-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--cream);
    color: var(--deep-green);
    font-size: 12.5px;
    font-weight: 600;
    white-space: nowrap;
}

.provider-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    font-family: var(--font-body);
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.2s ease;
}

.provider-cta svg {
    width: 13px;
    height: 13px;
}

.provider-cta:hover {
    background: var(--deep-green);
    transform: translateY(-1px);
}

.providers-section-cta {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .provider-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .providers-section {
        padding-bottom: 70px;
    }

    .provider-body {
        padding: 18px 18px 18px;
    }

    .provider-body h3 {
        font-size: 18px;
    }

    .provider-footer {
        flex-wrap: wrap;
    }

    .provider-cta {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================================
   HUN — CONTACT PAGE
   ========================================================= */

.contact-hero {
    padding: 110px 0 70px;
    background: var(--cream);
    text-align: center;
}

.contact-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.5vw, 48px);
    color: var(--deep-green);
    margin: 14px 0 16px;
}

.contact-hero p {
    font-size: 17px;
    color: var(--grey-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: rgba(195, 159, 107, 0.12);
    padding: 7px 14px;
    border-radius: 30px;
}

/* Main Grid */
.contact-main {
    padding: 80px 0 60px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info */
.contact-info h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--deep-green);
    margin-bottom: 12px;
}

.contact-intro {
    color: var(--grey-text);
    font-size: 15.5px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-item {
    display: flex;
    gap: 18px;
    margin-bottom: 28px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(195, 159, 107, 0.12);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 22px;
    height: 22px;
}

.contact-item h4 {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--deep-green);
    margin-bottom: 6px;
}

.contact-item a,
.contact-item p {
    font-size: 14.5px;
    color: var(--grey-text);
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--gold-dark);
}

.contact-socials {
    margin-top: 40px;
}

.contact-socials h4 {
    font-family: var(--font-display);
    font-size: 16px;
    color: var(--deep-green);
    margin-bottom: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-green);
    transition: all 0.25s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--ink);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h2 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--deep-green);
    margin-bottom: 8px;
}

.contact-form-wrapper>p {
    color: var(--grey-text);
    font-size: 15px;
    margin-bottom: 30px;
}

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

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--deep-green);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--ink);
    background: var(--white);
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

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

/* Map */
.contact-map {
    padding: 20px 0 100px;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Responsive */
@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 28px 22px;
    }
}

/* =========================================================
   HUN — MEMBERSHIP PAGE
   ========================================================= */

.mem-hero {
    padding: 120px 0 90px;
    background: var(--cream);
    text-align: center;
}

.mem-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 4.8vw, 52px);
    color: var(--deep-green);
    margin: 16px 0 18px;
}

.mem-hero p {
    font-size: 17.5px;
    color: var(--grey-text);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.mem-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: rgba(195, 159, 107, 0.12);
    padding: 7px 14px;
    border-radius: 30px;
}

.mem-label.light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--gold);
}

/* Why Join */
.mem-why {
    padding: 90px 0;
}

.mem-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.mem-benefit-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 32px 26px;
    transition: all 0.3s ease;
}

.mem-benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
    border-color: var(--gold);
}

.mem-benefit-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(195, 159, 107, 0.15);
    color: var(--gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 18px;
}

.mem-benefit-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--deep-green);
    margin-bottom: 10px;
}

.mem-benefit-card p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--grey-text);
    margin: 0;
}

/* Who Can Join */
.mem-who {
    padding: 90px 0;
    background: var(--cream);
}

.mem-who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.mem-who-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    padding: 28px 24px;
}

.mem-who-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    color: var(--deep-green);
    margin-bottom: 8px;
}

.mem-who-card p {
    font-size: 14px;
    color: var(--grey-text);
    line-height: 1.6;
    margin: 0;
}

/* =========================================================
   MEMBERSHIP TIERS — modern 3-column
========================================================= */
.mem-tiers {
    padding: 90px 0;
}

.mem-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.mem-tier-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    padding: 36px 28px 32px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.mem-tier-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 48px rgba(6, 57, 49, 0.08);
    border-color: rgba(195, 159, 107, 0.45);
}

.mem-tier-card.featured {
    background: linear-gradient(165deg, #0a1916 0%, var(--deep-green) 100%);
    border-color: transparent;
    box-shadow: 0 24px 56px rgba(6, 57, 49, 0.28);
    color: var(--white);
}

.mem-tier-card.featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 60px rgba(6, 57, 49, 0.35);
}

.mem-tier-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 999px;
    white-space: nowrap;
}

.mem-tier-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    line-height: 1.25;
    color: var(--deep-green);
    margin: 8px 0 12px;
}

.mem-tier-card.featured h3 {
    color: var(--white);
}

.mem-tier-desc {
    font-size: 14px;
    color: var(--grey-text);
    line-height: 1.65;
    margin-bottom: 14px;
}

.mem-tier-card.featured .mem-tier-desc {
    color: rgba(255, 255, 255, 0.78);
}

.mem-tier-purpose {
    font-size: 13px;
    line-height: 1.5;
    color: var(--grey-text);
    margin: 0 0 22px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(195, 159, 107, 0.1);
    border: 1px solid rgba(195, 159, 107, 0.18);
}

.mem-tier-purpose strong {
    color: var(--gold-dark);
    font-weight: 600;
}

.mem-tier-card.featured .mem-tier-purpose {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
}

.mem-tier-card.featured .mem-tier-purpose strong {
    color: var(--gold);
}

.mem-tier-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex-grow: 1;
}

.mem-tier-list li {
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    color: var(--ink);
    margin-bottom: 11px;
    line-height: 1.45;
}

.mem-tier-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(195, 159, 107, 0.2);
    box-shadow: inset 0 0 0 3px var(--gold-dark);
}

.mem-tier-card.featured .mem-tier-list li {
    color: rgba(255, 255, 255, 0.9);
}

.mem-tier-card.featured .mem-tier-list li::before {
    background: rgba(195, 159, 107, 0.25);
    box-shadow: inset 0 0 0 3px var(--gold);
}

.mem-tier-card .btn {
    margin-top: auto;
    align-self: stretch;
    justify-content: center;
    text-align: center;
}

.mem-tier-card.featured .btn-primary {
    background: var(--gold);
    color: var(--ink);
}

.mem-tier-card.featured .btn-primary:hover {
    background: #d4b07a;
}

.mem-tier-card .btn-outline-dark {
    border: 1.5px solid var(--deep-green);
    color: var(--deep-green);
    background: transparent;
}

.mem-tier-card .btn-outline-dark:hover {
    background: var(--deep-green);
    color: var(--white);
}

/* Join Form */
.mem-join {
    padding: 40px 0 100px;
}

.mem-join-box {
    background: linear-gradient(135deg, var(--deep-green), #0a1916);
    border-radius: 28px;
    padding: 60px 50px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.mem-join-content h2 {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--white);
    margin: 14px 0 14px;
}

.mem-join-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    line-height: 1.7;
}

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

.mem-form .form-group {
    margin-bottom: 18px;
}

.mem-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 7px;
}

.mem-form input,
.mem-form select,
.mem-form textarea {
    width: 100%;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14.5px;
}

.mem-form input::placeholder,
.mem-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.mem-form input:focus,
.mem-form select:focus,
.mem-form textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.mem-form select {
    color: var(--white);
}

.mem-form select option {
    background: var(--deep-green);
    color: var(--white);
}

/* Responsive */
@media (max-width: 991px) {

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

    .mem-tiers-grid,
    .mem-join-box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .mem-benefits-grid,
    .mem-who-grid {
        grid-template-columns: 1fr;
    }

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

    .mem-join-box {
        padding: 40px 24px;
    }
}

/* =========================================================
   HUN — EVENTS PAGE
   ========================================================= */

.events-hero {
    padding: 110px 0 70px;
    background: var(--cream);
    text-align: center;
}

.events-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(34px, 4.5vw, 48px);
    color: var(--deep-green);
    margin: 14px 0 16px;
}

.events-hero p {
    font-size: 17px;
    color: var(--grey-text);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

.events-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: rgba(195, 159, 107, 0.12);
    padding: 7px 14px;
    border-radius: 30px;
}

/* Upcoming Event */
.events-upcoming {
    padding: 70px 0 40px;
}

.upcoming-card {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

.upcoming-image {
    position: relative;
    min-height: 380px;
}

.upcoming-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.upcoming-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
}

.upcoming-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.event-date {
    font-size: 13px;
    font-weight: 700;
    color: var(--gold-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.upcoming-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--deep-green);
    margin-bottom: 14px;
    line-height: 1.25;
}

.upcoming-content p {
    font-size: 15.5px;
    color: var(--grey-text);
    line-height: 1.7;
    margin-bottom: 24px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 28px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--deep-green);
    font-weight: 500;
}

.meta-item svg {
    width: 18px;
    height: 18px;
    color: var(--gold-dark);
}

/* Past Events Grid */
/* Past Events — product-card style */
.events-past {
    padding: 60px 0 90px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.event-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(227, 218, 198, 0.55);
    box-shadow:
        0 4px 8px rgba(10, 25, 22, 0.03),
        0 20px 44px rgba(10, 25, 22, 0.08);
    display: flex;
    flex-direction: column;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 8px 16px rgba(10, 25, 22, 0.05),
        0 28px 56px rgba(10, 25, 22, 0.12);
}

.event-card-image {
    position: relative;
    margin: 12px 12px 0;
    border-radius: 20px;
    overflow: hidden;
    height: 210px;
    background: var(--cream);
}

.event-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.event-card:hover .event-card-image img {
    transform: scale(1.05);
}

.event-card-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.event-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.event-card-body h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 8px;
    line-height: 1.3;
}

.event-card-body p {
    font-size: 14px;
    color: var(--grey-text);
    line-height: 1.65;
    margin: 0 0 20px;
    flex-grow: 1;
}

.event-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--deep-green);
}

.event-card-meta .arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--deep-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.event-card:hover .event-card-meta .arrow {
    background: var(--gold);
    color: var(--ink);
    transform: translate(2px, -2px);
}

@media (max-width: 991px) {
    .events-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* CTA */
.events-cta {
    padding: 20px 0 100px;
}

.events-cta-box {
    background: linear-gradient(135deg, var(--deep-green), #0a1916);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
}

.events-cta-box h2 {
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--white);
    margin-bottom: 14px;
}

.events-cta-box p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 991px) {
    .upcoming-card {
        grid-template-columns: 1fr;
    }

    .upcoming-image {
        min-height: 260px;
    }

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

@media (max-width: 600px) {
    .upcoming-content {
        padding: 32px 24px;
    }
}

/* =========================================================
   HOMEPAGE EVENTS
   ========================================================= */

.home-events-section {
    padding: 90px 0 80px;
    background: var(--cream);
}

.home-events-section .section-heading {
    margin-bottom: 48px;
}

/* Featured upcoming */
.home-upcoming-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(6, 57, 49, 0.07);
    margin-bottom: 40px;
}

.home-upcoming-image {
    position: relative;
    min-height: 380px;
}

.home-upcoming-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-upcoming-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: var(--ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 7px 14px;
    border-radius: 20px;
}

.home-upcoming-content {
    padding: 48px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.home-event-kicker {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.home-event-date {
    display: block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--deep-green);
    letter-spacing: 0.4px;
    margin-bottom: 10px;
}

.home-upcoming-content h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.8vw, 30px);
    color: var(--deep-green);
    line-height: 1.25;
    margin: 0 0 14px;
}

.home-upcoming-content p {
    font-size: 15.5px;
    color: var(--grey-text);
    line-height: 1.75;
    margin: 0 0 22px;
}

.home-event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 28px;
}

.home-event-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--deep-green);
}

.home-event-meta svg {
    width: 16px;
    height: 16px;
    color: var(--gold-dark);
    flex-shrink: 0;
}

/* Story divider */
.home-events-story-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.home-events-story-label span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    color: var(--grey-text);
    white-space: nowrap;
}

.home-events-story-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--border-soft);
}

/* Secondary cards grid — product-card style */
.home-events-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.home-event-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(227, 218, 198, 0.55);
    box-shadow:
        0 4px 8px rgba(10, 25, 22, 0.03),
        0 20px 44px rgba(10, 25, 22, 0.08);
    display: flex;
    flex-direction: column;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-event-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 8px 16px rgba(10, 25, 22, 0.05),
        0 28px 56px rgba(10, 25, 22, 0.12);
}

/* Image */
.home-event-image {
    position: relative;
    margin: 12px 12px 0;
    border-radius: 20px;
    overflow: hidden;
    height: 200px;
    background: var(--cream);
}

.home-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.home-event-card:hover .home-event-image img {
    transform: scale(1.05);
}

.home-event-chip {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--ink);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(10, 25, 22, 0.06);
}

/* Body */
.home-event-body {
    padding: 20px 22px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.home-event-body .event-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 8px;
}

.home-event-body h4 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 8px;
    line-height: 1.3;
}

.home-event-body p {
    font-size: 14px;
    color: var(--grey-text);
    line-height: 1.65;
    margin: 0 0 20px;
    flex-grow: 1;
}

.home-event-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.home-event-footer span:first-child {
    font-size: 13px;
    font-weight: 600;
    color: var(--deep-green);
}

.home-event-footer .arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--deep-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.home-event-card:hover .home-event-footer .arrow {
    background: var(--gold);
    color: var(--ink);
    transform: translate(2px, -2px);
}

/* Flagship — gold edge accent */
.home-event-card--flagship {
    border-color: rgba(195, 159, 107, 0.4);
}

.home-event-card--flagship .home-event-chip {
    background: var(--deep-green);
    color: var(--gold);
    box-shadow: none;
}

/* Archive — dark product card */
.home-event-card--archive {
    background: linear-gradient(165deg, #0a1916 0%, var(--deep-green) 100%);
    border-color: transparent;
    color: var(--white);
}

.home-event-card--archive:hover {
    box-shadow:
        0 8px 16px rgba(6, 57, 49, 0.2),
        0 28px 56px rgba(6, 57, 49, 0.28);
}

.home-event-card--archive .home-event-image {
    height: 190px;
}

.home-event-image-veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            transparent 35%,
            rgba(6, 57, 49, 0.5) 100%);
    pointer-events: none;
}

.home-event-chip--archive {
    background: rgba(255, 255, 255, 0.14);
    color: var(--gold);
    border: 1px solid rgba(255, 255, 255, 0.22);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    box-shadow: none;
}

.home-event-card--archive .home-event-body {
    padding: 20px 22px 22px;
}

.home-event-year {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.home-event-card--archive h4 {
    color: var(--white);
    font-size: 19px;
    margin: 0 0 8px;
}

.home-event-card--archive p {
    color: rgba(255, 255, 255, 0.68);
    margin: 0 0 20px;
}

.home-event-card--archive .home-event-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 16px;
}

.home-event-link {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    color: var(--gold);
}

.home-event-arrow {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(195, 159, 107, 0.18);
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.home-event-card--archive:hover .home-event-arrow {
    background: var(--gold);
    color: var(--ink);
    transform: translate(2px, -2px);
}

.home-event-card--archive .home-event-footer span:first-child {
    color: var(--gold);
}

@media (max-width: 991px) {
    .home-upcoming-card {
        grid-template-columns: 1fr;
    }

    .home-upcoming-image {
        min-height: 240px;
    }

    .home-upcoming-content {
        padding: 32px 28px;
    }

    .home-events-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .home-upcoming-content {
        padding: 26px 20px;
    }

    .home-upcoming-content h3 {
        font-size: 22px;
    }

    .home-upcoming-image {
        min-height: 200px;
    }
}

/* =========================================================
   HUN — INSIGHTS PAGE
   ========================================================= */

.insights-hero {
    padding: 110px 0 70px;
    background: var(--cream);
    text-align: center;
}

.insights-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(34px, 4.5vw, 48px);
    color: var(--deep-green);
    margin: 14px 0 16px;
}

.insights-hero p {
    font-size: 17px;
    color: var(--grey-text);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.insights-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.1px;
    text-transform: uppercase;
    color: var(--gold-dark);
    background: rgba(195, 159, 107, 0.12);
    padding: 7px 14px;
    border-radius: 30px;
}

/* Featured Insight */
.insights-featured {
    padding: 40px 0 20px;
}

.featured-insight-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    color: inherit;
    transition: all 0.3s ease;
}

.featured-insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.featured-insight-image {
    min-height: 360px;
}

.featured-insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-insight-content {
    padding: 48px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-category {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 14px;
}

.featured-insight-content h2 {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--deep-green);
    line-height: 1.3;
    margin: 0 0 14px;
}

.featured-insight-content p {
    font-size: 15.5px;
    color: var(--grey-text);
    line-height: 1.7;
    margin: 0 0 20px;
}

.insight-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--grey-text);
}

/* Insights Grid */
.insights-grid-section {
    padding: 50px 0 90px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.insight-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    overflow: hidden;
    display: block;
    color: inherit;
    transition: all 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--gold);
}

.insight-card-image {
    height: 200px;
    overflow: hidden;
}

.insight-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insight-card:hover .insight-card-image img {
    transform: scale(1.05);
}

.insight-card-body {
    padding: 24px;
}

.insight-card-body h3 {
    font-family: var(--font-display);
    font-size: 18px;
    color: var(--deep-green);
    line-height: 1.35;
    margin: 0 0 10px;
}

.insight-card-body p {
    font-size: 14px;
    color: var(--grey-text);
    line-height: 1.6;
    margin: 0 0 16px;
}

/* CTA */
.insights-cta {
    padding: 20px 0 100px;
}

.insights-cta-box {
    background: linear-gradient(135deg, var(--deep-green), #0a1916);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
}

.insights-cta-box h2 {
    font-family: var(--font-display);
    font-size: 30px;
    color: var(--white);
    margin-bottom: 12px;
}

.insights-cta-box p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 16px;
    max-width: 480px;
    margin: 0 auto 28px;
    line-height: 1.7;
}

.insights-subscribe {
    display: flex;
    gap: 12px;
    max-width: 440px;
    margin: 0 auto;
}

.insights-subscribe input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 14.5px;
}

.insights-subscribe input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.insights-subscribe input:focus {
    outline: none;
    border-color: var(--gold);
}

/* Responsive */
@media (max-width: 991px) {
    .featured-insight-card {
        grid-template-columns: 1fr;
    }

    .featured-insight-image {
        min-height: 260px;
    }

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

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

    .insights-subscribe {
        flex-direction: column;
    }

    .featured-insight-content {
        padding: 28px 22px;
    }

    .featured-insight-content h2 {
        font-size: 22px;
    }
}

/* =========================================================
   INSIGHTS — PROVIDER CARD STYLE
   ========================================================= */

.insights {
    padding: 40px 0 90px;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.insights .section-heading {
    max-width: 680px;
    margin: 0 auto 42px;
    text-align: center;
}

.insights .section-heading h2 {
    margin-top: 14px;
}

.insights .section-heading p {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   INSIGHT GRID
   ========================================================= */

.insight-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 24px;
}


/* =========================================================
   INSIGHT CARD
   ========================================================= */

.insight-card {
    background: var(--white);

    border-radius: 28px;

    overflow: hidden;

    border: 1px solid rgba(227, 218, 198, 0.55);

    box-shadow:
        0 4px 8px rgba(10, 25, 22, 0.03),
        0 20px 44px rgba(10, 25, 22, 0.08);

    display: flex;
    flex-direction: column;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


/* =========================================================
   CARD HOVER
   ========================================================= */

.insight-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 8px 16px rgba(10, 25, 22, 0.05),
        0 28px 56px rgba(10, 25, 22, 0.12);
}


/* =========================================================
   IMAGE AREA
   ========================================================= */

.insight-media {
    position: relative;

    margin: 12px 12px 0;

    border-radius: 20px;

    overflow: hidden;

    aspect-ratio: 4 / 3.2;

    background: var(--cream);
}


.insight-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.5s ease;
}


.insight-card:hover .insight-media img {
    transform: scale(1.05);
}


/* =========================================================
   CATEGORY BADGE
   ========================================================= */

.insight-badge {
    position: absolute;

    top: 14px;
    left: 14px;

    padding: 6px 12px;

    border-radius: 999px;

    background: rgba(255, 255, 255, 0.88);

    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.3px;

    color: var(--ink);
}


/* =========================================================
   VERIFIED / INSIGHT MARK
   ========================================================= */

.insight-mark {
    position: absolute;

    top: 12px;
    right: 12px;

    width: 34px;
    height: 34px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.95);

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--deep-green);

    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.08);
}


.insight-mark svg {
    width: 16px;
    height: 16px;
}


/* =========================================================
   CARD BODY
   ========================================================= */

.insight-body {
    padding: 20px 22px 22px;

    display: flex;

    flex-direction: column;

    flex-grow: 1;
}


/* =========================================================
   TITLE
   ========================================================= */

.insight-body h3 {
    font-family: var(--font-display);

    font-size: 20px;

    font-weight: 600;

    color: var(--ink);

    margin: 0 0 4px;

    line-height: 1.3;
}


/* =========================================================
   SUBTITLE
   ========================================================= */

.insight-subtitle {
    display: block;

    font-size: 14px;

    font-weight: 500;

    color: var(--grey-text);

    margin-bottom: 8px;
}


/* =========================================================
   DESCRIPTION
   ========================================================= */

.insight-body p {
    font-size: 14px;

    line-height: 1.65;

    color: var(--grey-text);

    margin: 0 0 22px;

    flex-grow: 1;
}


/* =========================================================
   FOOTER
   ========================================================= */

.insight-footer {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    margin-top: auto;
}


/* =========================================================
   INSIGHT PILL
   ========================================================= */

.insight-pill {
    display: inline-flex;

    align-items: center;

    padding: 8px 14px;

    border-radius: 999px;

    background: var(--cream);

    color: var(--deep-green);

    font-size: 12.5px;

    font-weight: 600;

    white-space: nowrap;
}


/* =========================================================
   READ MORE BUTTON
   ========================================================= */

.insight-cta {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 10px 16px;

    border-radius: 999px;

    background: var(--ink);

    color: var(--white);

    font-size: 13px;

    font-weight: 600;

    font-family: var(--font-body);

    white-space: nowrap;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}


.insight-cta svg {
    width: 13px;
    height: 13px;
}


.insight-cta:hover {
    background: var(--deep-green);

    transform: translateY(-1px);
}


/* =========================================================
   SECTION CTA
   ========================================================= */

.insights-section-cta {
    text-align: center;

    margin-top: 40px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .insight-grid {
        grid-template-columns: 1fr;

        max-width: 420px;

        margin: 0 auto;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .insights {
        padding-bottom: 70px;
    }

    .insight-body {
        padding: 18px 18px 18px;
    }

    .insight-body h3 {
        font-size: 18px;
    }

    .insight-footer {
        flex-wrap: wrap;
    }

    .insight-cta {
        width: 100%;

        justify-content: center;
    }

    .insights-section-cta {
        margin-top: 30px;
    }

}

/* =========================================================
   INSIGHTS — product-card style
   ========================================================= */

.insights {
    padding: 90px 0;
    background: var(--cream);
}

.insight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.insight-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(227, 218, 198, 0.55);
    box-shadow:
        0 4px 8px rgba(10, 25, 22, 0.03),
        0 20px 44px rgba(10, 25, 22, 0.08);
    display: flex;
    flex-direction: column;
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 8px 16px rgba(10, 25, 22, 0.05),
        0 28px 56px rgba(10, 25, 22, 0.12);
}

.insight-card-top {
    padding: 18px 18px 0;
}

.insight-chip {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(195, 159, 107, 0.14);
    color: var(--gold-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.insight-card-body {
    padding: 16px 22px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.insight-card-body h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--ink);
    margin: 0 0 10px;
    line-height: 1.35;
}

.insight-card-body p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--grey-text);
    margin: 0 0 22px;
    flex-grow: 1;
}

.insight-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.insight-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--cream);
    color: var(--deep-green);
    font-size: 12.5px;
    font-weight: 600;
}

.insight-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, transform 0.25s ease;
}

.insight-card:hover .insight-arrow {
    background: var(--gold);
    color: var(--ink);
    transform: translate(2px, -2px);
}

@media (max-width: 991px) {
    .insight-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .insights {
        padding: 70px 0;
    }

    .insight-card-body {
        padding: 14px 18px 18px;
    }

    .insight-card-body h3 {
        font-size: 17px;
    }
}

/* =========================================================
   MEMORY LANE (homepage)
   ========================================================= */

.memory-lane {
    padding: 90px 0 100px;
    background: var(--white);
}

.memory-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 210px;
    gap: 14px;
}

.memory-card {
    position: relative;
    display: block;
    border-radius: 20px;
    overflow: hidden;
    background: var(--cream);
    box-shadow: 0 6px 24px rgba(10, 25, 22, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.memory-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(10, 25, 22, 0.12);
}

.memory-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease, filter 0.35s ease;
}

.memory-card:hover img {
    transform: scale(1.07);
    filter: brightness(1.05);
}

/* Soft shine on hover */
.memory-shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.18) 0%,
            transparent 45%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.memory-card:hover .memory-shine {
    opacity: 1;
}

.memory-card--featured {
    grid-column: span 2;
    grid-row: span 2;
}

.memory-lane-cta {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 1080px) {
    .memory-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    .memory-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .memory-card--featured {
        grid-column: span 2;
        grid-row: span 2;
    }
}

@media (max-width: 560px) {
    .memory-lane {
        padding: 70px 0 80px;
    }

    .memory-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
        gap: 10px;
    }

    .memory-card {
        border-radius: 14px;
    }

    .memory-card--featured {
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* =========================================================
   PAST EVENT / VIDEO
   ========================================================= */

.event-video-section {
    padding: 90px 0;
    background: var(--cream);
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.event-video-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

.event-video-heading h2 {
    margin-top: 14px;
}

.event-video-heading p {
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   VIDEO CARD
   ========================================================= */

.event-video-card {
    background: var(--white);

    border: 1px solid rgba(227, 218, 198, 0.65);

    border-radius: var(--radius-lg);

    overflow: hidden;

    box-shadow:
        0 4px 8px rgba(10, 25, 22, 0.03),
        0 20px 44px rgba(10, 25, 22, 0.08);
}


/* =========================================================
   VIDEO FRAME
   ========================================================= */

.event-video-frame {
    position: relative;

    width: 100%;

    aspect-ratio: 16 / 8.5;

    background: var(--deep-green);

    overflow: hidden;
}


/* =========================================================
   VIDEO PLACEHOLDER
   ========================================================= */

.event-video-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(circle at center,
            rgba(255, 255, 255, 0.08),
            transparent 45%),
        var(--deep-green);

    position: relative;
}


/* subtle decorative background */

.event-video-placeholder::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 50%;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);
}

.event-video-placeholder::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(255, 255, 255, 0.06);

    border-radius: 50%;

    left: 50%;
    top: 50%;

    transform: translate(-50%, -50%);
}


/* =========================================================
   PLACEHOLDER CONTENT
   ========================================================= */

.event-video-placeholder-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 14px;

    color: var(--white);
}


/* =========================================================
   PLAY BUTTON
   ========================================================= */

.event-video-play {
    width: 76px;
    height: 76px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--gold);

    color: var(--deep-green);

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.18);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.event-video-play svg {
    width: 28px;
    height: 28px;

    margin-left: 3px;
}


.event-video-card:hover .event-video-play {
    transform: scale(1.08);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   PLACEHOLDER LABEL
   ========================================================= */

.event-video-placeholder-label {
    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1px;

    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.65);
}


/* =========================================================
   EVENT INFORMATION
   ========================================================= */

.event-video-info {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    padding: 28px 32px;
}


/* =========================================================
   EVENT DETAILS
   ========================================================= */

.event-video-details {
    max-width: 720px;
}


.event-video-category {
    display: inline-block;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.6px;

    text-transform: uppercase;

    color: var(--deep-green);

    background: var(--cream);

    padding: 7px 13px;

    border-radius: var(--radius-pill);

    margin-bottom: 12px;
}


.event-video-details h3 {
    font-family: var(--font-display);

    font-size: 22px;

    font-weight: 600;

    line-height: 1.3;

    color: var(--deep-green);

    margin: 0 0 8px;
}


.event-video-details p {
    font-size: 14px;

    line-height: 1.65;

    color: var(--grey-text);

    margin: 0;
}


/* =========================================================
   EVENT META
   ========================================================= */

.event-video-meta {
    display: flex;

    align-items: center;

    gap: 24px;

    flex-shrink: 0;
}


.event-video-meta-item {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    font-size: 13px;

    font-weight: 600;

    color: var(--ink-soft);

    white-space: nowrap;
}


.event-video-meta-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--gold);
}


/* =========================================================
   VIEW EVENTS LINK
   ========================================================= */

.event-video-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: var(--deep-green);

    font-size: 13px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        gap 0.2s ease,
        color 0.2s ease;
}


.event-video-link svg {
    width: 14px;
    height: 14px;
}


.event-video-link:hover {
    gap: 11px;

    color: var(--gold);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {

    .event-video-section {
        padding: 75px 0;
    }

    .event-video-frame {
        aspect-ratio: 16 / 9;
    }

    .event-video-info {
        align-items: flex-start;

        flex-direction: column;

        gap: 22px;

        padding: 26px;
    }

    .event-video-meta {
        width: 100%;

        justify-content: space-between;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .event-video-section {
        padding: 65px 0;
    }

    .event-video-heading {
        margin-bottom: 30px;
    }

    .event-video-frame {
        aspect-ratio: 16 / 10;
    }

    .event-video-play {
        width: 62px;
        height: 62px;
    }

    .event-video-play svg {
        width: 23px;
        height: 23px;
    }

    .event-video-info {
        padding: 22px 20px;
    }

    .event-video-details h3 {
        font-size: 19px;
    }

    .event-video-meta {
        align-items: flex-start;

        flex-direction: column;

        gap: 14px;
    }

}

/* =========================================================
   LANGUAGE SWITCHER
   ========================================================= */

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px;
    border: 1px solid var(--border-soft, #e7e2d5);
    border-radius: 999px;
    background: var(--white, #fff);
}

.lang-btn {
    border: none;
    background: transparent;
    color: var(--grey-text, #62726c);
    font-family: var(--font-body, 'Ubuntu', sans-serif);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 11px;
    border-radius: 999px;
    cursor: pointer;
    transition: background .2s ease, color .2s ease;
}

.lang-btn:hover {
    color: var(--deep-green, #063931);
}

.lang-btn.active {
    background: var(--deep-green, #063931);
    color: #fff;
}

.lang-divider {
    color: var(--border-soft, #e7e2d5);
    font-size: 11px;
    user-select: none;
}

/* =========================================================
   RTL (Arabic)
   ========================================================= */

html[dir="rtl"] {
    direction: rtl;
}

html[dir="rtl"] body {
    font-family: "Noto Sans Arabic", "Noto Kufi Arabic", "Ubuntu", Arial, sans-serif;
}

html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4 {
    font-family: "Noto Sans Arabic", "Noto Kufi Arabic", "Cinzel", serif;
}

/* Flip directional arrows */
html[dir="rtl"] .btn-arrow svg,
html[dir="rtl"] .text-link svg,
html[dir="rtl"] .chev svg {
    transform: scaleX(-1);
}

/* Keep images normal — do not mirror photos */
html[dir="rtl"] img {
    transform: none;
}

/* =========================================================
   MOBILE FIXES — Header overflow, Events CTA, About intro
   (Appended last on purpose so these rules win over the
   earlier duplicate .lang-switcher/.lang-btn block and any
   other same-specificity rules defined above.)
   ========================================================= */

/* ---------- 1. Missing "Explore all events" CTA styling ---------- */
.home-events-cta {
    text-align: center;
    margin: 36px 0 0;
}

.home-events-cta .text-link {
    display: inline-flex;
    padding: 10px 4px;
}

.home-events-cta .text-link:hover {
    color: var(--gold-dark);
}

/* ---------- 2. Page hero background was cropping to the image's
   top-left corner instead of centring/covering the band ---------- */
.page-hero {
    background-size: cover;
    background-position: center;
}

/* ---------- 3. About "Who We Are" intro never collapsed to a
   single column on tablet/mobile — image + 4 paragraphs of text
   were being squeezed into two ~140px columns. ---------- */
@media (max-width: 900px) {
    .intro-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .intro-image {
        aspect-ratio: 16 / 10;
        order: -1;
    }
}

@media (max-width: 560px) {
    .check-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .page-hero {
        min-height: 0;
        padding: 44px 0 26px;
    }

    .page-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* ---------- 4. Header overflow on phones — the hamburger button
   was being pushed off the right edge of the viewport because the
   logo image (rendered at its raw 100x70 HTML attributes), the
   lang-switcher and the "Join HUN" button didn't leave it enough
   room. Shrink everything and lock the toggle so it can never be
   squeezed out. ---------- */
@media (max-width: 480px) {
    .header-inner {
        gap: 10px;
    }

    .header-inner .logo img {
        width: 64px;
        height: auto;
    }

    .header-right {
        gap: 6px;
    }

    .lang-switcher {
        padding: 2px;
        gap: 2px;
    }

    .lang-btn {
        padding: 4px 6px;
        font-size: 9.5px;
    }

    .lang-divider {
        font-size: 9px;
    }

    .header-right .btn-primary {
        padding: 8px 12px;
        font-size: 11.5px;
        gap: 4px;
    }

    .header-right .btn-primary .btn-arrow {
        width: 18px;
        height: 18px;
    }

    .header-right .btn-primary .btn-arrow svg {
        width: 10px;
        height: 10px;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
        flex-shrink: 0;
    }
}

@media (max-width: 380px) {
    .header-inner .logo img {
        width: 52px;
    }

    .header-right .btn-primary {
        padding: 7px 10px;
        font-size: 11px;
    }

    .header-right .btn-primary .btn-arrow {
        display: none;
    }

    .lang-btn {
        padding: 3px 5px;
        font-size: 9px;
    }
}

/* =========================================================
   EVENT VIDEO CARD — provider-card style
========================================================= */

.event-video-section {
    padding: 90px 0;
    background: var(--cream);
}

.event-video-heading {
    max-width: 720px;
    margin: 0 auto 42px;
    text-align: center;
}

/* Outer card = same as .prov-card / .insight-card */
.event-video-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(227, 218, 198, 0.55);
    box-shadow:
        0 4px 8px rgba(10, 25, 22, 0.03),
        0 20px 44px rgba(10, 25, 22, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 920px;
    margin: 0 auto;
}

.event-video-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 8px 16px rgba(10, 25, 22, 0.05),
        0 28px 56px rgba(10, 25, 22, 0.12);
}

/* Media inset — matches .prov-card-media */
.event-video-media {
    position: relative;
    margin: 12px 12px 0;
    border-radius: 20px;
    overflow: hidden;
    background: var(--deep-green);
    aspect-ratio: 16 / 9;
}

.event-video-media video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background: #000;
}

/* Optional: slightly contain if you prefer letterboxing instead of crop
.event-video-media video {
  object-fit: contain;
}
*/

/* Body — matches .prov-card-body */
.event-video-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-video-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    color: var(--deep-green);
    background: var(--cream);
    padding: 7px 13px;
    border-radius: var(--radius-pill);
    margin-bottom: 12px;
}

.event-video-details h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--deep-green);
    margin: 0 0 8px;
}

.event-video-details p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--grey-text);
    margin: 0;
}

/* Footer row — pill + link */
.event-video-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 4px;
}

.event-video-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: var(--cream);
    color: var(--deep-green);
    font-size: 12.5px;
    font-weight: 600;
}

.event-video-meta-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    flex-shrink: 0;
}

.event-video-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--deep-green);
    font-size: 13px;
    font-weight: 600;
    transition: gap 0.2s ease, color 0.2s ease;
}

.event-video-link svg {
    width: 14px;
    height: 14px;
}

.event-video-link:hover {
    gap: 11px;
    color: var(--gold-dark);
}

/* Responsive */
@media (max-width: 991px) {
    .event-video-section {
        padding: 75px 0;
    }

    .event-video-body {
        padding: 20px;
    }

    .event-video-details h3 {
        font-size: 20px;
    }
}

@media (max-width: 600px) {
    .event-video-section {
        padding: 65px 0;
    }

    .event-video-media {
        margin: 10px 10px 0;
        border-radius: 16px;
    }

    .event-video-body {
        padding: 18px;
    }

    .event-video-details h3 {
        font-size: 18px;
    }

    .event-video-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}