:root {
    --blue: #2f4a99;
    --blue-dark: #17336f;
    --blue-bright: #1267df;
    --gold: #e5ad32;
    --dark: #05070b;
    --anthracite: #111827;
    --text: #1f2937;
    --muted: #667085;
    --white: #ffffff;
    --border: rgba(17, 24, 39, 0.12);
    --shadow: 0 18px 50px rgba(15, 23, 42, 0.14);
    --radius: 18px;
    --container: 1280px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    color: var(--text);
    background: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(17, 24, 39, 0.08);
    backdrop-filter: blur(14px);
}

.header-container {
    width: min(100%, var(--container));
    min-height: 96px;
    height: auto;
    margin: 0 auto;
    padding: 10px 32px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.header-logo-img {
    display: block;
    width: auto;
    height: 86px;
    max-height: 100px;
    object-fit: contain;
}

.desktop-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    position: relative;
    border: 0;
    background: transparent;
    padding: 22px 0;
    font-size: 13px;
    font-weight: 500;
    color: #111827;
    cursor: pointer;
}

.nav-link:hover {
    color: var(--blue);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dropdown-arrow {
    width: 7px;
    height: 7px;
    border-right: 1.6px solid currentColor;
    border-bottom: 1.6px solid currentColor;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 0.2s ease;
}

.nav-dropdown.is-open .dropdown-arrow,
.mobile-dropdown.is-open .dropdown-arrow {
    transform: rotate(225deg);
    margin-top: 3px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 4px);
    left: 50%;
    width: 290px;
    padding: 10px;
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
    border: 1px solid rgba(17, 24, 39, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px);
    transition: 0.2s ease;
}

.nav-dropdown.is-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 14px;
    border-radius: 11px;
    font-size: 14px;
    font-weight: 600;
    color: #111827;
}

.dropdown-menu a:hover {
    background: #f3f6ff;
    color: var(--blue);
}

.header-cta {
    flex-shrink: 0;
    padding: 12px 25px;
    border-radius: 999px;
    background: var(--blue);
    color: var(--white);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 10px 28px rgba(47, 74, 153, 0.25);
    transition: 0.2s ease;
}

.header-cta:hover {
    background: var(--blue-dark);
    transform: translateY(-1px);
}

.mobile-menu-button {
    display: none;
    width: 42px;
    height: 42px;
    margin-left: auto;
    border: 1px solid rgba(17, 24, 39, 0.12);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
}

.mobile-menu-button span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 10px;
    background: #111827;
    transition: 0.2s ease;
}

.mobile-menu-button.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.mobile-menu-button.is-open span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

/* Hero Section */
.event-hero {
    position: relative;
    background: #f5f7fb;
    overflow: hidden;
}

.event-hero-bg {
    position: absolute;
    inset: 0 0 205px 0;
    z-index: 1;
}

.event-hero-bg img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: right 20%;
}

.event-hero-overlay {
    position: absolute;
    inset: 0 auto 205px 0;
    width: 60%;
    z-index: 2;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.9) 80%,
            rgba(255, 255, 255, 0) 100%);
}

.event-hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    min-height: 690px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.event-hero-content {
    max-width: 560px;
    padding: 82px 0 94px;
}

.event-kicker {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 30px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1267df;
}

.event-kicker span {
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: #1267df;
}

.event-hero-content h1 {
    margin: 0 0 34px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 62px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -0.065em;
    text-transform: uppercase;
    color: #05070b;
}

.event-hero-content h1 span {
    color: #1267df;
}

.event-hero-content p {
    max-width: 510px;
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    font-weight: 400;
    color: #1f2937;
}

.event-hero-button {
    width: fit-content;
    min-width: 220px;
    height: 56px;
    margin-top: 42px;
    padding: 0 32px;
    border-radius: 2px;
    background: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(18, 103, 223, 0.24);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.event-hero-button:hover {
    transform: translateY(-2px);
    background: var(--blue-dark);
    box-shadow: 0 18px 40px rgba(18, 103, 223, 0.34);
}

.event-hero-button svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.event-features-wrap {
    position: relative;
    z-index: 4;
    background: #f5f7fb;
    border-top: 1px solid #dfe5ef;
}

.event-features {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.event-feature {
    min-height: 172px;
    padding: 34px 42px 30px;
    text-align: center;
    border-right: 1px solid #dfe5ef;
    background: #f5f7fb;
}

.event-feature:first-child {
    border-left: 1px solid #dfe5ef;
}

.event-feature-icon {
    height: 52px;
    margin-bottom: 20px;
    display: grid;
    place-items: center;
    color: #d8a132;
}

.event-feature-icon svg {
    width: 50px;
    height: 50px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.event-feature h3 {
    margin: 0 0 14px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    color: #101a3a;
}

.event-feature p {
    max-width: 250px;
    margin: 0 auto;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.65;
    font-weight: 400;
    color: #687894;
}

/* Services Section */
.event-services-section {
    background: #ffffff;
    padding: 76px 0 88px;
}

.event-services-container {
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.event-services-heading {
    max-width: 720px;
    margin: 0 auto 64px;
    text-align: center;
}

.event-services-heading h2 {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 36px;
    line-height: 1.14;
    font-weight: 850;
    letter-spacing: -0.05em;
    color: #101a3a;
}

.event-services-heading span {
    display: block;
    width: 72px;
    height: 4px;
    margin: 20px auto 30px;
    border-radius: 999px;
    background: #d8a132;
}

.event-services-heading p {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    color: #687894;
}

.event-services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 30px;
}

.event-service-card {
    min-height: 250px;
    padding: 34px 34px 32px;
    border-radius: 14px;
    background: #f3f7ff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
}

.event-service-card:hover {
    transform: translateY(-4px);
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(16, 24, 40, 0.075);
}

.event-service-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 36px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    background: #ffffff;
    color: #101a3a;
}

.event-service-icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: var(--blue);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.event-service-card h3 {
    max-width: 310px;
    margin: 0 0 20px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 850;
    letter-spacing: -0.025em;
    color: #101a3a;
}

.event-service-card p {
    max-width: 330px;
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;
    color: #52627d;
}


/* Event Types Section */
.event-types-section {
    background: #14244b;
    padding: 76px 0 86px;
    color: #ffffff;
}

.event-types-container {
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.event-types-head {
    margin-bottom: 76px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
}

.event-types-kicker {
    display: block;
    margin-bottom: 16px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: #d8a132;
}

.event-types-head h2 {
    margin: 0 0 18px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 38px;
    line-height: 1.12;
    font-weight: 850;
    letter-spacing: -0.05em;
    color: #ffffff;
}

.event-types-head p {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 15px;
    line-height: 1.65;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.62);
}

.event-types-slider {
    overflow: hidden;
}

.event-types-pagination {
    width: auto !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    padding-bottom: 12px;
}

.event-types-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 !important;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    transition:
        width 0.22s ease,
        background 0.22s ease;
}

.event-types-pagination .swiper-pagination-bullet-active {
    width: 36px;
    background: #d8a132;
}

.event-types-track {
    display: flex;
}

.event-type-card {
    position: relative;
    min-height: 295px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 9px;
    background: #0d1832;
}

.event-type-card img {
    width: 100%;
    height: 295px;
    display: block;
    object-fit: cover;
    opacity: 0.72;
    transition: transform 0.45s ease, opacity 0.45s ease;
}

.event-type-card:hover img {
    transform: scale(1.045);
    opacity: 0.88;
}

.event-type-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(20, 36, 75, 0.12) 0%, rgba(20, 36, 75, 0.9) 100%),
        linear-gradient(90deg, rgba(20, 36, 75, 0.15), rgba(20, 36, 75, 0.38));
}

.event-type-content {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 28px;
    z-index: 2;
}

.event-type-icon {
    width: 46px;
    height: 46px;
    margin-bottom: 18px;
    border-radius: 5px;
    display: grid;
    place-items: center;
    background: rgba(216, 161, 50, 0.22);
    color: #d8a132;
    backdrop-filter: blur(8px);
}

.event-type-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.event-type-card h3 {
    margin: 0 0 10px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 850;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.event-type-card p {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 13.5px;
    line-height: 1.55;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.62);
}


/* Approach Section */
.event-approach-section {
    background: #ffffff;
    padding: 82px 0 92px;
}

.event-approach-container {
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.event-approach-box {
    position: relative;
    min-height: 500px;
    padding: 74px 78px;
    border: 1px solid #dfe6f1;
    border-radius: 22px;
    background: #f7faff;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.event-approach-content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.event-approach-kicker {
    display: block;
    margin-bottom: 34px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 12px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #2f4a99;
}

.event-approach-content h2 {
    max-width: 620px;
    margin: 0 0 38px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 38px;
    line-height: 1.14;
    font-weight: 850;
    letter-spacing: -0.055em;
    color: #101a3a;
}

.event-approach-content p {
    max-width: 760px;
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 20px;
    line-height: 2.05;
    font-weight: 400;
    color: #101a3a;
}

.event-approach-signature {
    margin-top: 42px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.event-approach-signature span {
    width: 48px;
    height: 1px;
    background: #cfd8e8;
}

.event-approach-signature strong {
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 850;
    font-style: italic;
    color: #101a3a;
}

.event-approach-shield {
    position: absolute;
    right: 44px;
    top: 50%;
    width: 260px;
    height: 260px;
    transform: translateY(-50%);
    color: rgba(16, 26, 58, 0.055);
    z-index: 1;
}

.event-approach-shield svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}


/* Planning Section */
.event-planning-section {
    background: #ffffff;
    padding: 86px 0 92px;
}

.event-planning-container {
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 560px 1fr;
    align-items: center;
    gap: 86px;
}

.event-planning-image-wrap {
    position: relative;
    border-radius: 18px;
}

.event-planning-image-wrap::after {
    content: "";
    position: absolute;
    right: -18px;
    bottom: -18px;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    background: #d8a132;
    z-index: 1;
}

.event-planning-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 470px;
    display: block;
    object-fit: cover;
    border: 2px solid #101a3a;
    border-radius: 18px;
    filter: grayscale(100%);
}

.event-planning-content {
    max-width: 520px;
}

.event-planning-content h2 {
    margin: 0 0 30px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 38px;
    line-height: 1.12;
    font-weight: 850;
    letter-spacing: -0.055em;
    color: #101a3a;
}

.event-planning-content p {
    max-width: 510px;
    margin: 0 0 42px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    font-weight: 400;
    color: #52627d;
}

.event-planning-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.event-planning-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 850;
    color: #101a3a;
}

.event-planning-list span {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border-radius: 999px;
    background: #eef2fb;
    display: grid;
    place-items: center;
    color: #2f4a99;
}

.event-planning-list svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}



/* Final CTA Section */
.event-final-cta-section {
    background: #3859bd;
    padding: 112px 0 118px;
}

.event-final-cta-container {
    width: min(100% - 40px, 820px);
    margin: 0 auto;
    text-align: center;
}

.event-final-cta-container h2 {
    margin: 0 0 32px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 850;
    letter-spacing: -0.055em;
    color: #ffffff;
}

.event-final-cta-container p {
    max-width: 650px;
    margin: 0 auto;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 20px;
    line-height: 1.55;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
}

.event-final-cta-button {
    min-width: 430px;
    height: 60px;
    margin-top: 58px;
    padding: 0 42px;
    border-radius: 4px;
    background: var(--blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 15px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 18px 38px rgba(10, 22, 55, 0.18);
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.event-final-cta-button:hover {
    transform: translateY(-2px);
    background: var(--blue-dark);
    box-shadow: 0 22px 46px rgba(10, 22, 55, 0.24);
}

.event-final-cta-contact {
    margin-top: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.event-final-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 850;
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.event-final-cta-link:hover {
    color: #d8a132;
}

.event-final-cta-link svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.event-final-cta-dot {
    width: 5px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.25);
}



/* Footer */
.site-footer {
    background: #14244b;
    color: #ffffff;
    padding: 56px 0 34px;
}

.footer-container {
    width: 100%;
    max-width: var(--container);
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #ffffff;
    text-decoration: none;
}

.footer-logo-img {
    display: block;
    width: auto;
    height: 100px;
    max-height: 100px;
    object-fit: contain;
}

.footer-description {
    max-width: 430px;
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.75;
    font-weight: 400;
    text-align: right;
    color: rgba(255, 255, 255, 0.58);
}

.footer-divider {
    width: 100%;
    height: 1px;
    margin: 70px 0 56px;
    background: rgba(255, 255, 255, 0.11);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr 0.8fr;
    gap: 84px;
}

.footer-column h3 {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
}

.footer-title-line {
    display: block;
    width: 28px;
    height: 3px;
    margin: 23px 0 28px;
    border-radius: 999px;
    background: #d8a132;
}

.footer-contact-list,
.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
}

.footer-contact-icon {
    width: 28px;
    height: 28px;
    flex: 0 0 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.055);
    color: #d8a132;
}

.footer-contact-icon svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-contact-list a,
.footer-contact-list address {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 12.5px;
    line-height: 1.55;
    font-style: normal;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.footer-contact-list a:hover {
    color: #ffffff;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 12.5px;
    line-height: 1.2;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.58);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.footer-social {
    margin-top: 42px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.055);
    color: rgba(255, 255, 255, 0.52);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
    transform: translateY(-2px);
    background: #3957b4;
    color: #ffffff;
}

.footer-social svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.footer-bottom {
    margin-top: 74px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-family: "Aptos", "Inter", Arial, sans-serif;
    font-size: 11px;
    line-height: 1.5;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.42);
}


/* Responsive */

@media (max-width: 1100px) {

    /* Hero Section */
    .event-hero-bg,
    .event-hero-overlay {
        bottom: 330px;
    }

    .event-hero-container {
        min-height: 640px;
    }

    .event-hero-content h1 {
        font-size: 54px;
    }

    .event-feature {
        padding: 32px 26px;
    }
}

@media (max-width: 1050px) {

    /* Planning Section */
    .event-planning-section {
        padding: 76px 0 82px;
    }

    .event-planning-container {
        grid-template-columns: 480px 1fr;
        gap: 58px;
    }

    .event-planning-image {
        height: 420px;
    }

    .event-planning-content h2 {
        font-size: 34px;
    }

    .event-planning-content p {
        font-size: 16px;
    }

    /* Footer */
    .footer-main {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 54px 70px;
    }

    .footer-divider {
        margin: 56px 0 48px;
    }
}


@media (max-width: 1024px) {

    /* Header */
    .desktop-nav,
    .header-cta {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }

    .header-container {
        width: min(100%, var(--container));
        min-height: 96px;
        height: auto;
        margin: 0 auto;
        padding: 10px 32px;
        display: flex;
        align-items: center;
        gap: 32px;
    }

    .mobile-menu {
        display: block;
        max-height: 0;
        overflow: hidden;
        background: #fff;
        border-top: 1px solid rgba(17, 24, 39, 0.08);
        transition: max-height 0.28s ease;
    }

    .mobile-menu.is-open {
        max-height: 620px;
    }

    .mobile-nav {
        padding: 14px 20px 22px;
        display: flex;
        flex-direction: column;
        gap: 6px;
    }

    .mobile-nav a,
    .mobile-dropdown-toggle {
        width: 100%;
        border: 0;
        background: transparent;
        padding: 14px 4px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 16px;
        font-weight: 700;
        color: #111827;
        text-align: left;
        cursor: pointer;
    }

    .mobile-dropdown-menu {
        display: none;
        padding: 4px 0 10px 14px;
    }

    .mobile-dropdown.is-open .mobile-dropdown-menu {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .mobile-dropdown-menu a {
        padding: 11px 12px;
        border-left: 2px solid rgba(47, 74, 153, 0.18);
        font-size: 14px;
        font-weight: 650;
        color: #344054;
    }

    .mobile-cta {
        margin-top: 10px;
        justify-content: center !important;
        padding: 15px 22px !important;
        border-radius: 999px;
        background: var(--blue) !important;
        color: var(--white) !important;
    }
}

@media (max-width: 1000px) {

    /* Services Section */
    .event-services-section {
        padding: 70px 0 78px;
    }

    .event-services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .event-services-heading {
        margin-bottom: 50px;
    }

    /* Event Types Section */
    .event-types-section {
        padding: 68px 0 76px;
    }

    .event-types-head {
        margin-bottom: 54px;
    }
}

@media (max-width: 900px) {

    /* Approach Section */
    .event-approach-section {
        padding: 70px 0 78px;
    }

    .event-approach-box {
        min-height: auto;
        padding: 58px 46px;
    }

    .event-approach-content {
        max-width: 100%;
    }

    .event-approach-content h2 {
        font-size: 34px;
    }

    .event-approach-content p {
        font-size: 17px;
        line-height: 1.85;
    }

    .event-approach-shield {
        right: 18px;
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 860px) {

    /* Hero Section */
    .event-hero {
        position: relative;
        min-height: 680px;
        background: #05070b;
        overflow: hidden;
    }

    .event-hero-bg {
        position: absolute;
        inset: 0;
        height: 100%;
        z-index: 1;
    }

    .event-hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right 20%;
    }

    .event-hero-overlay {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
        background:
            linear-gradient(180deg,
                rgba(5, 7, 11, 0.78) 0%,
                rgba(5, 7, 11, 0.56) 45%,
                rgba(5, 7, 11, 0.88) 100%);
    }

    .event-hero-container {
        position: relative;
        z-index: 3;
        min-height: 680px;
        display: flex;
        align-items: center;
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
    }

    .event-hero-content {
        max-width: 100%;
        padding: 46px 0 58px;
    }

    .event-kicker {
        color: var(--gold);
    }

    .event-kicker span {
        background: var(--gold);
    }

    .event-hero-content h1 {
        max-width: 620px;
        font-size: 46px;
        color: var(--white);
    }

    .event-hero-content h1 span {
        color: var(--gold);
    }

    .event-hero-content p {
        max-width: 680px;
        color: rgba(255, 255, 255, 0.84);
    }

    .event-features {
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-top: 1px solid #dfe5ef;
        border-left: 1px solid #dfe5ef;
    }

    .event-feature {
        min-height: 170px;
        padding: 32px 24px;
        border-right: 1px solid #dfe5ef;
        border-bottom: 1px solid #dfe5ef;
    }

    .event-feature:first-child {
        border-left: 0;
    }

    /* Planning Section */
    .event-planning-container {
        grid-template-columns: 1fr;
        gap: 54px;
        justify-items: center;
    }

    .event-planning-image-wrap {
        max-width: 620px;
    }

    .event-planning-image {
        height: 420px;
    }

    .event-planning-content {
        max-width: 680px;
    }
}

@media (max-width: 760px) {

    /* Final CTA Section */
    .event-final-cta-section {
        padding: 76px 0 82px;
    }

    .event-final-cta-container {
        width: min(100% - 32px, 820px);
    }

    .event-final-cta-container h2 {
        margin-bottom: 22px;
        font-size: 32px;
        line-height: 1.16;
    }

    .event-final-cta-container p {
        font-size: 16px;
        line-height: 1.65;
    }

    .event-final-cta-button {
        width: 100%;
        min-width: 0;
        height: 58px;
        margin-top: 38px;
        padding: 0 24px;
        font-size: 13px;
        letter-spacing: 0.12em;
    }

    .event-final-cta-contact {
        margin-top: 42px;
        flex-direction: column;
        gap: 18px;
    }

    .event-final-cta-dot {
        display: none;
    }

    .event-final-cta-link {
        font-size: 15px;
    }

    /* Footer */
    .site-footer {
        padding: 46px 0 28px;
    }

    .footer-container {
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
    }

    .footer-top {
        flex-direction: column;
        gap: 26px;
    }

    .footer-description {
        max-width: 100%;
        text-align: left;
        font-size: 13px;
    }

    .footer-divider {
        margin: 42px 0 38px;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-title-line {
        margin: 18px 0 22px;
    }

    .footer-links {
        gap: 12px;
    }

    .footer-social {
        margin-top: 28px;
    }

    .footer-bottom {
        margin-top: 44px;
        padding-top: 24px;
    }

    .footer-top {
        align-items: center;
        text-align: center;
    }

    .footer-brand {
        justify-content: center;
    }

    .footer-logo-img {
        height: 86px;
        max-height: 100px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-description {
        text-align: center;
    }

    .footer-main {
        text-align: center;
    }

    .footer-column {
        align-items: center;
    }

    .footer-title-line {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-contact-list {
        align-items: center;
    }

    .footer-contact-list li {
        justify-content: center;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-social {
        display: flex;
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }

    .header-container {
        min-height: 78px;
        height: auto;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .header-logo-img {
        height: 62px;
        max-height: 72px;
    }
}

@media (max-width: 700px) {

    /* Event Types Section */
    .event-types-section {
        padding: 56px 0 64px;
    }

    .event-types-container {
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
    }

    .event-types-head {
        margin-bottom: 38px;
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .event-types-head h2 {
        font-size: 31px;
        line-height: 1.16;
    }

    .event-types-pagination {
        justify-content: flex-start;
        padding-bottom: 0;
    }

    .event-type-card {
        min-height: 310px;
    }

    .event-type-card img {
        height: 310px;
    }

    .event-type-content {
        left: 24px;
        right: 24px;
        bottom: 24px;
    }

    .event-type-card h3 {
        font-size: 19px;
    }

    .event-type-card p {
        font-size: 13px;
    }
}

@media (max-width: 680px) {

    /* Services Section */
    .event-services-section {
        padding: 58px 0 64px;
    }

    .event-services-container {
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
    }

    .event-services-heading {
        margin-bottom: 38px;
        text-align: left;
    }

    .event-services-heading h2 {
        font-size: 31px;
        line-height: 1.18;
    }

    .event-services-heading span {
        width: 64px;
        height: 4px;
        margin: 18px 0 24px;
    }

    .event-services-heading p {
        font-size: 14.5px;
    }

    .event-services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .event-service-card {
        min-height: auto;
        padding: 28px 24px;
    }

    .event-service-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 26px;
    }

    .event-service-icon svg {
        width: 21px;
        height: 21px;
    }

    .event-service-card h3 {
        margin-bottom: 14px;
        font-size: 17px;
    }

    .event-service-card p {
        font-size: 13.5px;
    }

    /* Approach Section */
    .event-approach-section {
        padding: 58px 0 64px;
    }

    .event-approach-container {
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
    }

    .event-approach-box {
        padding: 38px 24px;
        border-radius: 18px;
    }

    .event-approach-kicker {
        margin-bottom: 24px;
        font-size: 11px;
        letter-spacing: 0.18em;
    }

    .event-approach-content h2 {
        margin-bottom: 26px;
        font-size: 29px;
        line-height: 1.18;
    }

    .event-approach-content p {
        font-size: 15.5px;
        line-height: 1.8;
    }

    .event-approach-signature {
        margin-top: 32px;
        gap: 14px;
    }

    .event-approach-signature span {
        width: 36px;
    }

    .event-approach-signature strong {
        font-size: 13px;
        line-height: 1.35;
    }

    .event-approach-shield {
        right: -28px;
        bottom: -38px;
        top: auto;
        width: 170px;
        height: 170px;
        transform: none;
    }
}


@media (max-width: 620px) {
    .event-planning-section {
        padding: 58px 0 64px;
    }

    .event-planning-container {
        width: 100%;
        max-width: var(--container);
        padding-left: 16px;
        padding-right: 16px;
        gap: 42px;
    }

    .event-planning-image-wrap::after {
        right: -10px;
        bottom: -10px;
        border-radius: 16px;
    }

    .event-planning-image {
        height: 310px;
        border-radius: 16px;
    }

    .event-planning-content h2 {
        margin-bottom: 22px;
        font-size: 30px;
        line-height: 1.16;
        text-align: center;
    }

    .event-planning-content p {
        margin-bottom: 32px;
        font-size: 15px;
        line-height: 1.7;
        text-align: center;
    }

    .event-planning-list {
        gap: 18px;
        align-items: center;
    }

    .event-planning-list li {
        align-items: flex-start;
        gap: 15px;
        font-size: 15px;
    }

    .event-planning-list span {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .event-planning-list svg {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 560px) {

    /* Hero Section */
    .event-hero {
        min-height: 720px;
    }

    .event-hero-bg,
    .event-hero-overlay {
        height: 100%;
    }

    .event-hero-container {
        min-height: 720px;
    }

    .event-kicker {
        margin-bottom: 22px;
        font-size: 12px;
        line-height: 1.35;
        letter-spacing: 0.1em;
    }

    .event-kicker span {
        width: 20px;
    }

    .event-hero-content h1 {
        margin-bottom: 28px;
        font-size: 38px;
        line-height: 1.04;
    }

    .event-hero-content p {
        font-size: 15.5px;
        line-height: 1.7;
    }

    .event-hero-button {
        width: 100%;
        min-width: 0;
        margin-top: 34px;
    }

    .event-features {
        grid-template-columns: 1fr;
    }

    .event-feature {
        min-height: auto;
        padding: 32px 22px;
    }

    .event-feature p {
        max-width: 300px;
    }
}

@media (max-width: 420px) {

    /* Final CTA Section */
    .event-final-cta-container h2 {
        font-size: 28px;
    }

    .event-final-cta-button {
        font-size: 12px;
        letter-spacing: 0.09em;
    }
}

@media (max-width: 480px) {
    .header-logo-img {
        height: 54px;
    }

    .footer-logo-img {
        height: 76px;
    }
}