/* ===========================
   CSS Reset & Base Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --header-logo-h: 46px;
    --header-logo-max-w: 200px;
    --header-min-height: calc(var(--header-logo-h) + 2.25rem);
    --nav-menu-gap: 24px;
    /* Modern dark palette */
    --primary-color: #14171f;      /* Main brand background */
    --secondary-color: #d4b26a;    /* Accessible gold accent */
    --accent-color: #e2c684;       /* Gold hover/highlight */
    --cream: #d7deea;              /* Soft cool neutral */
    --dark: #14171f;               /* Unified dark background */
    --light: #ffffff;              /* White */
    --gray: #14171f;               /* Dark (same as primary) */
    --gray-alt: #14171f;           /* Dark (unified with primary) */
    --text-dark: #ffffff;          /* White text (same as light) */
    --text-mid: #d7deea;           /* Cool neutral text */
    --text-light: #e2c684;         /* Accent text */
    --text-dark-bg: #14171f;       /* Dark background (unified with primary) */
    --border-color: rgba(212, 178, 106, 0.26); /* Accent border */
    /* Editorial motion: calm ease-out, no snappy linear segments */
    --ease-out-luxe: cubic-bezier(0.22, 1, 0.36, 1);
    --transition: 0.42s var(--ease-out-luxe);
    
    /* Typography Scale */
    --font-serif: 'Spectral', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: var(--font-serif);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-min-height);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

.skip-link {
    position: fixed;
    top: 0;
    left: 1rem;
    z-index: 10002;
    padding: 0.65rem 1.1rem;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 2px;
    transform: translateY(-130%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.skip-link:focus {
    transform: translateY(0.75rem);
    outline: 3px solid var(--light);
    outline-offset: 2px;
}

body {
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.55;
    color: var(--text-dark);
    background-color: var(--primary-color);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.005em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0;
    color: var(--light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ===========================
   Container & Layout - Editorial Density
   =========================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
}

.container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 3rem;
}

.container-split.reverse {
    direction: rtl;
}

.container-split.reverse > * {
    direction: ltr;
}

/* ===========================
   Buttons - Refined & Restrained
   =========================== */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 0;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--dark);
    border: 1px solid var(--secondary-color);
}

.btn-primary:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--dark);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
}

.btn-light {
    background: #ffffff;
    color: var(--primary-color);
    border: 1px solid #ffffff;
}

.btn-light:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
}

.btn-enquire {
    background: var(--secondary-color);
    color: var(--light);
    padding: 0.75rem 1.75rem;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid var(--secondary-color);
    transition: var(--transition);
}

.btn-enquire:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

/* ===========================
   Header - Discreet & Traditional
   =========================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(20, 23, 31, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    /* Stable bar height so content below does not jump when fonts load */
    min-height: var(--header-min-height);
    box-sizing: border-box;
    transition:
        box-shadow 0.55s var(--ease-out-luxe),
        background-color 0.55s var(--ease-out-luxe),
        border-color 0.45s var(--ease-out-luxe);
}

.header.scrolled {
    background: rgba(20, 23, 31, 0.99);
    border-bottom-color: rgba(212, 178, 106, 0.2);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.22);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 3rem;
    display: grid;
    /* Logo + actions stay intrinsic width; all extra horizontal space lives in the centre
       so the nav cluster does not drift when the viewport widens. */
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 1rem;
    row-gap: 0;
    min-height: var(--header-min-height);
    box-sizing: border-box;
}

.logo {
    justify-self: start;
    width: fit-content;
    max-width: var(--header-logo-max-w);
    flex-shrink: 0;
}

.logo a {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 400;
    color: var(--light);
    letter-spacing: 0;
    display: block;
    line-height: 0;
    flex-shrink: 0;
}

.header .logo img,
.header .logo .logo-img {
    display: block;
    height: var(--header-logo-h);
    width: auto;
    max-width: var(--header-logo-max-w);
    max-height: var(--header-logo-h);
    object-fit: contain;
    object-position: left center;
    flex-shrink: 0;
}

.main-nav {
    justify-self: stretch;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding-inline: 0.5rem;
    box-sizing: border-box;
}

.header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-shrink: 0;
    padding-left: 0.75rem;
    box-sizing: border-box;
}

.header-contact-gold {
    display: inline-flex;
    flex-shrink: 0;
    border-radius: 3px;
    background: var(--secondary-color);
    border: 1px solid rgba(0, 0, 0, 0.22);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.28);
    transition: var(--transition);
}

.header-contact-gold:hover {
    background: var(--accent-color);
    border-color: rgba(0, 0, 0, 0.18);
}

.header-contact-gold.is-active {
    background: var(--accent-color);
    border-color: rgba(0, 0, 0, 0.18);
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.28),
        0 0 0 1px rgba(255, 255, 255, 0.35);
}

.header-contact-gold:focus-within {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.header-contact-gold__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.5rem;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--primary-color);
    white-space: nowrap;
    box-sizing: border-box;
    cursor: pointer;
    transition: color var(--transition);
}

.header-contact-gold__link:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--nav-menu-gap);
    align-items: center;
    justify-content: center;
}

.nav-item a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-mid);
    text-transform: capitalize;
    position: relative;
    white-space: nowrap;
    letter-spacing: 0.02em;
    text-decoration: none;
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    line-height: 1.2;
    padding-block: 0.2rem;
}

.nav-item a:hover {
    color: var(--secondary-color);
}

.nav-item a.is-active {
    color: var(--secondary-color);
    text-decoration: underline;
}

.nav-item.has-dropdown {
    position: relative;
}

/* Mega Menu - Editorial */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--light);
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: 2rem 2.5rem;
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    min-width: 850px;
}

.nav-item.has-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.mega-menu-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.mega-menu-column h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 400;
    letter-spacing: 0;
}

.mega-menu-header {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

.mega-menu-subheader {
    font-family: var(--font-heading);
    font-size: 14px;
    margin-bottom: 0.75rem;
    margin-top: 1rem;
    color: var(--text-mid);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.mega-menu-subheader:first-of-type {
    margin-top: 0;
}

.mega-menu-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mega-menu-column ul li a {
    font-size: 13px;
    color: var(--primary-color);
    transition: var(--transition);
    line-height: 1.4;
}

.mega-menu-column ul li a:hover {
    color: var(--secondary-color);
    padding-left: 0;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(20, 23, 31, 0.98);
    border: 1px solid var(--border-color);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    padding: 1rem 0;
    margin-top: 0.75rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    min-width: 200px;
    z-index: 1100;
}

.nav-item.has-dropdown:hover .dropdown-menu,
.nav-item.has-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0.35rem;
}

.dropdown-menu ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dropdown-menu ul li a {
    display: block;
    padding: 0.7rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-mid);
    transition: var(--transition);
}

.dropdown-menu ul li a:hover,
.dropdown-menu ul li a[aria-current="page"] {
    color: var(--secondary-color);
    background: rgba(212, 178, 106, 0.08);
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
}

.header-search-input {
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-color);
    color: #ffffff;
    font-family: var(--font-sans);
    transition: var(--transition);
    width: 200px;
    border-radius: 0;
}

.header-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.header-search-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--secondary-color);
}

.header-search .search-icon {
    position: absolute;
    right: 0.75rem;
    pointer-events: none;
    color: var(--secondary-color);
}

.phone-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    white-space: nowrap;
}

.search-toggle {
    color: var(--text-mid);
    padding: 0.5rem;
    display: flex;
    align-items: center;
}

.search-toggle:hover {
    color: var(--light);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.35rem;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Search Modal */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-container {
    max-width: 800px;
    width: 100%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.search-input {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.5rem;
    background: var(--light);
    border: none;
    color: var(--text-dark);
}

.search-submit,
.search-close {
    color: var(--light);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.75rem 2rem;
    border: 2px solid var(--light);
    transition: var(--transition);
}

.search-submit:hover,
.search-close:hover {
    background: var(--light);
    color: var(--dark);
}

/* ===========================
   Hero Section - Video Background
   =========================== */
.hero {
    position: relative;
    height: 64vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 65px;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
    /* Dark color grading for text visibility */
    filter: brightness(0.4) contrast(1.1) saturate(0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, 
                rgba(20, 23, 31, 0.45) 0%, 
                rgba(20, 23, 31, 0.72) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    padding: 0 3rem;
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6875rem, 3.375vw, 2.8125rem);
    margin-bottom: 2rem;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0;
    color: #ffffff;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   Trust & Ambassadors Section - Side by Side
   =========================== */
.trust-ambassadors-section {
    background: var(--gray-alt);
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-ambassadors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.trust-column,
.ambassadors-column {
    text-align: center;
}

.trust-column h3,
.ambassadors-column h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 1rem;
    font-weight: 400;
    color: var(--light);
}

.stars {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    letter-spacing: 0.1em;
}

.rating {
    font-size: 15px;
    margin-bottom: 0.75rem;
    color: var(--text-mid);
}

.reviews-link {
    color: var(--text-light);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.02em;
    border-bottom: 1px solid currentColor;
    transition: var(--transition);
}

.reviews-link:hover {
    color: var(--light);
}

/* Ambassadors Grid - Horizontal with Avatars */
.ambassadors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.ambassador-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.ambassador-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 0.75rem;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.ambassador-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ambassador-card:hover .ambassador-avatar {
    border-color: var(--secondary-color);
}

.ambassador-card h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--light);
    margin-bottom: 0.25rem;
    font-weight: 400;
}

.ambassador-card p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* ===========================
   Welcome Section - Editorial
   =========================== */
.welcome-section {
    padding: 4rem 0;
    text-align: center;
    background: var(--primary-color);
}

.welcome-section h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-weight: 400;
    letter-spacing: 0;
}

.welcome-section .lead {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    max-width: 720px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.lead {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-mid);
    max-width: 720px;
    margin: 0 auto 2rem;
    font-weight: 400;
}

.section-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

/* ===========================
   Popular Events Section - Refined Cards
   =========================== */
.popular-events {
    padding: 4rem 0;
    background: var(--gray-alt);
    border-top: 1px solid var(--border-color);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 2.5rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 400;
}

.view-all {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-mid);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
}

.view-all:hover {
    color: var(--primary-color);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.event-card {
    background: transparent;
    overflow: hidden;
    border: none;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.event-image {
    position: relative;
    height: 360px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 1.75rem;
}

.event-overlay {
    color: #ffffff;
}

.event-overlay h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    margin-bottom: 0.5rem;
    font-weight: 400;
    line-height: 1.25;
    color: #ffffff;
}

.event-date {
    font-size: 14px;
    margin-bottom: 1.25rem;
    opacity: 1;
    letter-spacing: 0.01em;
    color: #ffffff;
}

/* ===========================
   Split Content Sections - Editorial Layout
   =========================== */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.content-side h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 1.25rem;
    color: #ffffff;
    font-weight: 400;
    line-height: 1.25;
}

.content-side p {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 1.75rem;
}

.image-side img {
    width: 100%;
    height: 460px;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

.access-section {
    background: var(--primary-color);
    border-top: none;
}

.inspiration-section {
    background: var(--gray-alt);
    border-top: none;
}

.hospitality-section {
    background: var(--primary-color);
    border-top: none;
}

/* ===========================
   Contact Section - Compact Heritage Form
   =========================== */
.contact-section {
    padding: 4rem 0;
    background: var(--primary-color);
    border-top: none;
}

.enquiry-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.enquiry-header h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 0.875rem;
    color: #ffffff;
    font-weight: 400;
}

.enquiry-header .lead {
    font-size: 15px;
    color: #ffffff;
    max-width: 680px;
    margin: 0 auto 1.75rem;
    line-height: 1.6;
}

/* Trust Badges - Understated */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 500;
}

.trust-badge svg {
    color: var(--secondary-color);
    width: 18px;
    height: 18px;
}

/* Contact Info Bar - Refined */
.contact-info-bar {
    max-width: 820px;
    margin: 0 auto 2rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1.25rem 1.75rem;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.contact-info-text {
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
}

.contact-info-options {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-quick-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 13px;
    transition: var(--transition);
}

.contact-quick-link:hover {
    color: var(--primary-color);
}

.contact-quick-link svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* Enterprise Form - Compact Heritage Styling */
.enterprise-form {
    max-width: 820px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem 2.5rem;
    border: 1px solid var(--border-color);
    box-shadow: none;
}

/* Progress Indicator - Refined */
.form-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid var(--border-color);
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    position: relative;
}

.progress-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.progress-step.active .progress-circle {
    background: var(--secondary-color);
    color: var(--dark);
    border-color: var(--secondary-color);
}

.progress-step.completed .progress-circle {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-color: #ffffff;
}

.progress-label {
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.progress-step.active .progress-label {
    color: var(--primary-color);
}

.progress-line {
    width: 80px;
    height: 1px;
    background: var(--border-color);
    margin: 0 1rem;
}

.progress-step.active ~ .progress-step .progress-line {
    background: var(--border-color);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeInUp 0.55s var(--ease-out-luxe) both;
}

.form-step.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    margin-bottom: 2.25rem;
    text-align: center;
}

.step-header h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-weight: 400;
}

.step-header p {
    font-size: 15px;
    color: var(--text-mid);
}

/* Form Groups - Refined */
.form-group {
    margin-bottom: 1.75rem;
    position: relative;
}

.form-row {
    display: grid;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    position: relative;
    z-index: 2;
    letter-spacing: 0.01em;
}

.required {
    color: #c44;
    margin-left: 2px;
}

.field-description {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 0.875rem;
    margin-top: -0.375rem;
    line-height: 1.5;
}

.field-hint {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 0.5rem;
    display: block;
    font-style: italic;
}

/* Input with Icon */
.input-with-icon {
    position: relative;
    display: block;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
    pointer-events: none;
    z-index: 10;
    flex-shrink: 0;
}

.input-with-icon input,
.input-with-icon select {
    padding-left: 3rem !important;
    width: 100%;
    display: block;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 14px;
    border: 1px solid var(--border-color);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-family: var(--font-sans);
    transition: var(--transition);
    border-radius: 0;
    position: relative;
}

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

.form-group select option {
    background: var(--primary-color);
    color: #ffffff;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 110px;
    padding-left: 1rem !important;
    line-height: 1.5;
}

/* Budget Cards - Heritage Styling */
.budget-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-top: 0.875rem;
}

.budget-card {
    position: relative;
    cursor: pointer;
}

.budget-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.budget-content {
    padding: 1.125rem 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 0;
    text-align: center;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
}

.budget-card:hover .budget-content {
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.08);
}

.budget-card input:checked ~ .budget-content {
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.12);
    border-width: 2px;
}

.budget-amount {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.375rem;
    font-family: var(--font-heading);
}

.budget-level {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

/* Priority Grid - Restrained */
.priority-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 0.875rem;
}

.priority-card {
    position: relative;
    cursor: pointer;
}

.priority-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.priority-content {
    padding: 1.375rem 1.125rem;
    border: 1px solid var(--border-color);
    border-radius: 0;
    text-align: center;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
    height: 100%;
}

.priority-content svg {
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    width: 26px;
    height: 26px;
}

.priority-content h4 {
    font-family: var(--font-heading);
    font-size: 15px;
    margin-bottom: 0.375rem;
    color: #ffffff;
    font-weight: 400;
}

.priority-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

.priority-card:hover .priority-content {
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.08);
}

.priority-card input:checked ~ .priority-content {
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.12);
    border-width: 2px;
}

.priority-card input:checked ~ .priority-content svg {
    color: var(--secondary-color);
}

/* Privacy Section */
.privacy-section {
    background: rgba(255, 255, 255, 0.03);
    padding: 1.375rem;
    border-radius: 0;
    margin: 1.75rem 0;
    border: 1px solid var(--border-color);
}

.checkbox-label-enhanced {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.checkbox-label-enhanced:last-child {
    margin-bottom: 0;
}

.checkbox-label-enhanced input {
    margin-top: 0.25rem;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label-enhanced a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.checkbox-label-enhanced a:hover {
    color: var(--primary-color);
}

/* Form Submission Note */
.form-submission-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(20, 23, 31, 0.6);
    border-left: 3px solid var(--primary-color);
    border-radius: 4px;
    margin-bottom: 2rem;
}

.form-submission-note svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.form-submission-note p {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0;
}

/* Form Actions - Refined */
.form-actions {
    display: flex;
    gap: 0.875rem;
    margin-top: 1.75rem;
    justify-content: flex-end;
}

.btn-large {
    padding: 0.875rem 2rem;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.btn-large svg {
    width: 16px;
    height: 16px;
}

.btn-submit {
    min-width: 180px;
    justify-content: center;
}

/* ===========================
   Gift Section - Refined
   =========================== */
.gift-section {
    padding: 4rem 0;
    text-align: center;
    background: rgba(20, 23, 31, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.gift-section h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 400;
}

.gift-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.75rem;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ===========================
   Footer - Heritage & Discreet
   =========================== */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 3.5rem 0 0;
    position: relative;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 460px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 0;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-logo-img {
    height: 50px;
    width: auto;
    display: block;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255,255,255,0.65);
    margin-bottom: 1.75rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--light);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

/* Footer Contact Box */
.footer-contact-box {
    background: rgba(255,255,255,0.03);
    padding: 2rem;
    border: 1px solid rgba(255,255,255,0.08);
}

.footer-contact-box h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 1.25rem;
    color: var(--secondary-color);
    font-weight: 400;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 1.75rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-method svg {
    color: var(--secondary-color);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.contact-link {
    font-size: 14px;
    color: var(--light);
    font-weight: 500;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--secondary-color);
}

.btn-enquire-footer {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Footer Main Links */
.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: var(--font-heading);
    font-size: 16px;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 400;
}

.footer-section-title-extra {
    margin-top: 1.75rem;
}

.footer-columns-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-list li a {
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    transition: var(--transition);
    display: inline-block;
    line-height: 1.4;
}

.footer-list li a:hover {
    color: var(--light);
    padding-left: 0;
}

/* Footer Bottom - Refined */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.75rem 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal a {
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--light);
}

.footer-legal .separator {
    color: rgba(255,255,255,0.25);
    font-size: 12px;
}

.copyright {
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    margin: 0;
}

.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: var(--light);
    padding: 0.75rem 1.25rem;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border: 1px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--dark);
    border-color: var(--dark);
    transform: translateY(-2px);
}

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1200px) {
    .mega-menu {
        min-width: 700px;
    }
    
    .mega-menu-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .container-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 4rem 2rem;
    }
    
    .image-side img {
        height: 400px;
    }
    
    .events-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    /* Footer Responsive */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .footer-columns-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Trust & Ambassadors Responsive */
    .trust-ambassadors-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ambassadors-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }
    
    .header-search {
        display: none;
    }
    
    .phone-link {
        display: none;
    }
    
    .hero {
        height: 70vh;
        margin-top: var(--header-min-height);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .welcome-section h2,
    .contact-section h2,
    .gift-section h2 {
        font-size: 2rem;
    }
    
    .content-side h2 {
        font-size: 2rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .enterprise-form {
        padding: 2rem 1.5rem;
    }
    
    .form-progress {
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
    }
    
    .progress-label {
        display: none;
    }
    
    .progress-line {
        width: 60px;
    }
    
    .progress-circle {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .form-row-2 {
        grid-template-columns: 1fr;
    }
    
    .budget-cards {
        grid-template-columns: 1fr;
    }
    
    .priority-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-bar {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-info-options {
        flex-direction: column;
        width: 100%;
    }
    
    .contact-quick-link {
        justify-content: center;
    }
    
    .trust-badges {
        gap: 1.5rem;
    }
    
    .form-actions {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }
    
    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Footer Responsive */
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-top {
        padding-bottom: 3rem;
        margin-bottom: 3rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-logo {
        font-size: 2rem;
    }
    
    .footer-contact-box {
        padding: 2rem;
    }
    
    .footer-contact-box h4 {
        font-size: 1.25rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .event-image {
        height: 300px;
    }
    
    .image-side img {
        height: 300px;
    }
    
    /* Footer Mobile */
    .footer-contact-box {
        padding: 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.75rem;
    }
    
    .footer-social a {
        width: 36px;
        height: 36px;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .contact-link {
        font-size: 0.95rem;
    }
    
    /* Form Mobile */
    .enterprise-form {
        padding: 1.5rem 1rem;
    }
    
    .enquiry-header h2 {
        font-size: 2rem;
    }
    
    .step-header h3 {
        font-size: 1.5rem;
    }
    
    .progress-line {
        width: 40px;
        margin: 0 0.5rem;
    }
    
    .progress-circle {
        width: 40px;
        height: 40px;
        font-size: 0.95rem;
    }
    
    .budget-cards {
        gap: 0.75rem;
    }
    
    .budget-content,
    .priority-content {
        padding: 1.25rem 1rem;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
}

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

.fade-in {
    animation: fadeIn 0.85s var(--ease-out-luxe) both;
}

@media (prefers-reduced-motion: reduce) {
    .fade-in {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .form-step {
        animation: none;
    }

    .event-subnav.is-sticky {
        animation: none;
    }
}


/* ===========================
   EVENT PAGE STYLES
   =========================== */

/* Event Hero */
.event-hero {
    position: relative;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-align: center;
}

.event-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6));
    z-index: 1;
}

.event-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    padding: 3rem 2rem;
}

.event-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.event-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 15px;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-meta-item svg {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
}

.event-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.event-tag {
    padding: 0.5rem 1rem;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.event-tag.tag-success {
    background: rgba(212, 178, 106, 0.22);
    border-color: rgba(212, 178, 106, 0.5);
    color: #f0dcaf;
}

.event-tag.tag-premium {
    background: rgba(201, 169, 110, 0.2);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.event-tag.tag-info {
    background: rgba(33, 150, 243, 0.2);
    border-color: rgba(33, 150, 243, 0.5);
    color: #90caf9;
}

.event-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Event Sub-Navigation */
.event-subnav {
    background: var(--dark);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 100;
    transition: var(--transition);
}

.event-subnav.is-sticky {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
    animation: slideDown 0.45s var(--ease-out-luxe) both;
}

@keyframes slideDown {
    from {
        transform: translateY(-0.65rem);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.event-subnav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: center;
}

.event-subnav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.event-subnav-menu li a {
    display: block;
    padding: 1.25rem 0;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition);
    position: relative;
}

.event-subnav-menu li a:hover,
.event-subnav-menu li a.active {
    color: var(--secondary-color);
}

.event-subnav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--secondary-color);
}

/* Event Section Base */
.event-section {
    padding: 5rem 0;
    background: var(--primary-color);
}

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

.event-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.event-section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.event-section-intro {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Overview Section */
.event-overview-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.event-overview-content {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
}

.event-overview-content h3,
.event-overview-content h4 {
    font-family: var(--font-heading);
    color: #ffffff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.event-overview-content h3 {
    font-size: 28px;
}

.event-overview-content h4 {
    font-size: 22px;
}

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

/* Key Details Panel */
.key-details-panel {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 2rem;
    position: sticky;
    top: 180px;
}

.key-details-panel h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.key-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    margin-bottom: 1.5rem;
}

.key-detail-item:last-child {
    margin-bottom: 0;
}

.key-detail-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--secondary-color);
}

.key-detail-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* Hospitality Options Section */
.hospitality-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.hospitality-filter-buttons {
    display: flex;
    gap: 0.75rem;
}

.filter-btn {
    padding: 0.5rem 1.25rem;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid var(--border-color);
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.hospitality-sort {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hospitality-sort label {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.hospitality-sort select {
    padding: 0.5rem 2rem 0.5rem 1rem;
    font-size: 13px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: #ffffff;
    cursor: pointer;
}

/* Hospitality Options Grid */
.hospitality-options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* Hospitality Card */
.hospitality-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.hospitality-card.is-expanded {
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.05);
}

.hospitality-card-header {
    padding: 2rem;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: start;
}

.hospitality-card-header:hover {
    background: rgba(255, 255, 255, 0.02);
}

.hospitality-card-info {
    flex: 1;
}

.hospitality-card-title-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 0.75rem;
    gap: 1rem;
}

.hospitality-card-name {
    font-family: var(--font-heading);
    font-size: 28px;
    color: #ffffff;
    margin: 0;
}

.availability-badge {
    padding: 0.375rem 0.875rem;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 0;
    white-space: nowrap;
}

.availability-badge.available {
    background: rgba(212, 178, 106, 0.2);
    color: #f0dcaf;
    border: 1px solid rgba(212, 178, 106, 0.35);
}

.availability-badge.limited {
    background: rgba(255, 152, 0, 0.15);
    color: #ffb74d;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.availability-badge.very-limited {
    background: rgba(244, 67, 54, 0.15);
    color: #ef5350;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.hospitality-card-summary {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.hospitality-card-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.625rem;
}

.hospitality-card-highlights li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 1.75rem;
    position: relative;
}

.hospitality-card-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
}

.hospitality-card-pricing {
    text-align: right;
}

.price-from {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--secondary-color);
    font-weight: 400;
    line-height: 1;
}

.price-currency {
    font-size: 20px;
    vertical-align: super;
}

.price-pp {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.375rem;
}

.expand-btn {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.expand-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

/* Hospitality Card Details (Expandable) */
.hospitality-card-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.hospitality-card-details-inner {
    padding: 0 2rem 2rem;
    border-top: 1px solid var(--border-color);
}

.hospitality-detail-section {
    padding-top: 2rem;
}

.hospitality-detail-section:first-child {
    padding-top: 2rem;
}

.hospitality-detail-section h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 1rem;
}

.hospitality-detail-section p {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
}

.hospitality-detail-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 0.75rem;
}

.hospitality-detail-list li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 1.75rem;
    position: relative;
}

.hospitality-detail-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.hospitality-detail-list.exclusions li::before {
    content: '−';
}

.itinerary-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.itinerary-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 1rem;
}

.itinerary-time {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 14px;
}

.itinerary-description {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.detail-info-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    padding: 1.25rem;
    margin-top: 1rem;
}

.detail-info-box p {
    margin: 0;
    font-size: 14px;
}

.hospitality-card-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Course Info Section */
.course-info-content {
    max-width: 900px;
    margin: 0 auto;
}

.course-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
}

.course-stat-item {
    text-align: center;
}

.course-stat-value {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.5rem;
}

.course-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Event Gallery */
.event-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--dark);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: #ffffff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-caption {
    font-size: 14px;
    margin: 0;
}

/* Gallery Lightbox */
.gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-lightbox.is-active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 1rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
}

.lightbox-caption {
    color: #ffffff;
    font-size: 15px;
    margin-top: 1rem;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-top: 0.5rem;
}

/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item.is-expanded {
    border-color: var(--secondary-color);
}

.faq-question {
    padding: 1.5rem 4rem 1.5rem 2rem;
    font-family: var(--font-heading);
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    transition: var(--transition);
    user-select: none;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.is-expanded .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 2rem 2rem;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.85);
}

/* Footer CTA Strip */
.footer-cta-strip {
    background: var(--secondary-color);
    padding: 4rem 3rem;
    text-align: center;
}

.footer-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.footer-cta-title {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 1rem;
}

.footer-cta-text {
    font-size: 16px;
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.footer-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .event-hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    
    .event-overview-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .key-details-panel {
        position: static;
    }
    
    .event-subnav-menu {
        gap: 2rem;
    }
    
    .hospitality-card-header {
        grid-template-columns: 1fr;
    }
    
    .hospitality-card-pricing {
        text-align: left;
    }
    
    .course-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .event-hero {
        min-height: 50vh;
    }
    
    .event-section {
        padding: 3rem 0;
    }
    
    .event-section-title {
        font-size: 32px;
    }
    
    .event-subnav-container {
        padding: 0 1rem;
        overflow-x: auto;
    }
    
    .event-subnav-menu {
        gap: 1.5rem;
        flex-wrap: nowrap;
    }
    
    .event-subnav-menu li a {
        white-space: nowrap;
        font-size: 12px;
    }
    
    .hospitality-card-name {
        font-size: 22px;
    }
    
    .hospitality-card-actions {
        flex-direction: column;
    }
    
    .hospitality-card-actions .btn {
        width: 100%;
    }
    
    .event-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-prev,
    .lightbox-next {
        padding: 0.75rem;
    }
    
    .lightbox-prev {
        left: 1rem;
    }
    
    .lightbox-next {
        right: 1rem;
    }
    
    .footer-cta-strip {
        padding: 3rem 2rem;
    }
    
    .footer-cta-title {
        font-size: 28px;
    }
    
    .hospitality-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hospitality-filter-buttons {
        flex-wrap: wrap;
    }
}

/* Print Styles */
@media print {
    .event-hero,
    .event-subnav,
    .header,
    .footer,
    .footer-cta-strip,
    .btn,
    .expand-btn,
    .back-to-top {
        display: none !important;
    }
    
    .hospitality-card {
        page-break-inside: avoid;
        border: 1px solid #ccc !important;
        margin-bottom: 1rem;
    }
    
    .hospitality-card-details {
        max-height: none !important;
        display: block !important;
    }
    
    .event-section {
        padding: 2rem 0;
        page-break-inside: avoid;
    }
}

