/**
 * AIMG Thoughts & Literature Conference 2026
 * Complete Design System
 * 
 * Based on the brand guidelines:
 * - Literary, dignified, scholarly aesthetic
 * - Khadi-ivory, Ink-indigo, Terracotta-saffron palette
 * - Playfair Display / Lora / Inter typography
 * - Thin-line iconography, generous whitespace
 */

/* ======================================
   1. CSS CUSTOM PROPERTIES
   ====================================== */

:root {
    /* Primary Colors */
    --color-ivory: #FDFBF7;
    --color-indigo: #7B4C33;
    --color-saffron: #C59B6D;

    /* Secondary Colors */
    --color-sandstone: #EBE3D5;
    --color-teal: #2E5E5A;
    --color-charcoal: #2A221E;

    /* Base / Neutral Colors */
    --color-white: #FFFFFF;
    --color-warm-grey: #635750;
    --color-deep-charcoal: #201916;

    /* Derived Colors */
    --color-saffron-hover: #B28756;
    --color-saffron-light: rgba(197, 155, 109, 0.1);
    --color-indigo-light: rgba(123, 76, 51, 0.08);
    --color-teal-light: rgba(46, 94, 90, 0.1);
    --color-ivory-dark: #F4EFE6;
    --color-border: rgba(99, 87, 80, 0.25);
    --color-border-light: rgba(99, 87, 80, 0.12);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Lora', Georgia, 'Times New Roman', serif;
    --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-devanagari: 'Noto Serif Devanagari', serif;

    /* Font Sizes (Desktop) */
    --fs-h1: clamp(2rem, 4vw, 3.75rem);
    --fs-h2: clamp(1.625rem, 3vw, 2.75rem);
    --fs-h3: clamp(1.375rem, 2.2vw, 2rem);
    --fs-h4: clamp(1.125rem, 1.6vw, 1.5rem);
    --fs-h5: clamp(1rem, 1.2vw, 1.125rem);
    --fs-h6: clamp(0.75rem, 1vw, 0.875rem);
    --fs-body: clamp(1rem, 1.1vw, 1.125rem);
    --fs-small: 0.875rem;
    --fs-caption: 0.8125rem;
    --fs-quote: clamp(1.5rem, 2.5vw, 2.125rem);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    --section-padding: clamp(3.5rem, 8vw, 6rem);

    /* Layout */
    --max-content: 1280px;
    --max-reading: 68ch;
    --border-radius: 4px;
    --border-radius-lg: 8px;

    /* Transitions */
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(20, 24, 31, 0.06);
    --shadow-md: 0 4px 12px rgba(20, 24, 31, 0.08);
    --shadow-lg: 0 8px 30px rgba(20, 24, 31, 0.1);
    --shadow-card: 0 2px 8px rgba(20, 24, 31, 0.06);

    /* Focus */
    --focus-ring: 2px solid var(--color-saffron);
    --focus-offset: 2px;
}


/* ======================================
   2. RESET & BASE
   ====================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-body);
    line-height: 1.7;
    color: var(--color-charcoal);
    background-color: var(--color-ivory);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Prevent body scroll when mobile menu is open */
body.nav-open {
    overflow: hidden;
}

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

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

a:hover {
    color: var(--color-saffron);
}

a:focus-visible {
    outline: var(--focus-ring);
    outline-offset: var(--focus-offset);
    border-radius: 2px;
}

::selection {
    background-color: #C59B6D;
    color: #FFFFFF;
}

::-moz-selection {
    background-color: #C59B6D;
    color: #FFFFFF;
}


/* ======================================
   3. TYPOGRAPHY
   ====================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    color: var(--color-indigo);
    line-height: 1.25;
    margin-top: 0;
}

h1 {
    font-size: var(--fs-h1);
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.15;
    margin-bottom: var(--space-md);
}

h2 {
    font-size: var(--fs-h2);
    font-weight: 600;
    letter-spacing: -0.3px;
    margin-bottom: var(--space-md);
}

h3 {
    font-size: var(--fs-h3);
    font-weight: 600;
    letter-spacing: -0.2px;
    margin-bottom: var(--space-sm);
}

h4 {
    font-size: var(--fs-h4);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

h5 {
    font-size: var(--fs-h5);
    font-weight: 500;
    letter-spacing: 0.2px;
    margin-bottom: var(--space-xs);
}

h6 {
    font-size: var(--fs-h6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--space-xs);
}

p {
    margin-bottom: var(--space-sm);
    max-width: var(--max-reading);
}

.eyebrow {
    font-family: var(--font-ui);
    font-size: var(--fs-h6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-saffron);
    display: inline-block;
    margin-bottom: var(--space-xs);
}

.lead {
    font-size: clamp(1.125rem, 1.3vw, 1.25rem);
    line-height: 1.8;
    color: var(--color-charcoal);
}

.text-muted {
    color: var(--color-warm-grey) !important;
}

.text-saffron { color: var(--color-saffron) !important; }
.text-indigo { color: var(--color-indigo) !important; }
.text-teal { color: var(--color-teal) !important; }
.text-ivory { color: var(--color-ivory) !important; }

/* Body text should never be pure black */
.body-text,
article p,
.reading-content p {
    color: var(--color-charcoal);
    max-width: var(--max-reading);
    line-height: 1.75;
}


/* ======================================
   4. PAGE LOADER (Charkha Spinner)
   ====================================== */

.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.charkha-spinner svg {
    width: 60px;
    height: 60px;
    animation: charkha-spin 2s linear infinite;
}


/* ======================================
   5. SKIP NAVIGATION (Accessibility)
   ====================================== */

.skip-nav {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-indigo);
    color: var(--color-ivory);
    padding: 0.75rem 1.5rem;
    font-family: var(--font-ui);
    font-size: var(--fs-small);
    z-index: 10000;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    transition: top 0.3s;
}

.skip-nav:focus {
    top: 0;
    color: var(--color-ivory);
}


/* ======================================
   6. TOP BAR
   ====================================== */

.top-bar {
    background: var(--color-deep-charcoal);
    color: var(--color-ivory);
    padding: 0.4rem 0;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    letter-spacing: 0.2px;
    border-bottom: 1px solid rgba(247, 243, 234, 0.08);
}

.top-bar__date,
.top-bar__venue {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-right: 1.25rem;
    color: rgba(247, 243, 234, 0.75);
}

.top-bar__date svg,
.top-bar__venue svg {
    opacity: 0.6;
}

.top-bar__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(247, 243, 234, 0.75);
    margin-left: 1rem;
    transition: color var(--transition-base);
}

.top-bar__link:hover {
    color: var(--color-ivory);
}

.top-bar__link svg {
    width: 13px;
    height: 13px;
    opacity: 0.7;
}

/* ---- Google Translate — Custom Dropdown ---- */

/* Wrapper in top bar */
.top-bar__translate {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(247, 243, 234, 0.15);
    line-height: 1;
    position: relative;
}

/* Force hide all Google-injected elements & bodies */
#google_translate_element,
.goog-te-gadget,
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip-content,
.goog-te-spinner-pos {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    position: fixed !important;
    left: -99999px !important;
    top: -99999px !important;
    width: 0 !important;
    height: 0 !important;
    z-index: -9999 !important;
}

body > .skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
    position: static !important;
}

/* Custom trigger button */
.gt-custom {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.gt-trigger {
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    background: rgba(247, 243, 234, 0.08);
    border: 1px solid rgba(247, 243, 234, 0.16);
    border-radius: 20px;
    color: var(--color-ivory, #F7F3EA);
    font-size: 0.78rem;
    font-family: var(--font-ui, 'Inter', sans-serif);
    font-weight: 600;
    letter-spacing: 0.4px;
    cursor: pointer;
    padding: 0.28rem 0.68rem;
    line-height: 1;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
    outline: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.gt-trigger:hover {
    background: rgba(247, 243, 234, 0.16);
    border-color: rgba(247, 243, 234, 0.32);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.25);
}

.gt-trigger:active,
.gt-trigger[aria-expanded="true"] {
    background: var(--color-saffron, #C59B6D);
    border-color: var(--color-saffron, #C59B6D);
    color: #ffffff;
    box-shadow: 0 2px 10px rgba(197, 155, 109, 0.35);
}

.gt-globe-icon {
    opacity: 0.85;
    flex-shrink: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.gt-trigger:hover .gt-globe-icon {
    opacity: 1;
    transform: rotate(15deg);
}

.gt-label {
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.gt-chevron {
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0.75;
}

.gt-trigger[aria-expanded="true"] .gt-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* Dropdown panel */
.gt-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 250px;
    background: rgba(14, 30, 56, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(247, 243, 234, 0.12);
    border-radius: 12px;
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.55),
        0 4px 12px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    z-index: 9999;
    /* smooth reveal */
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
    pointer-events: none;
    transition:
        opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.25s;
    visibility: hidden;
    transform-origin: top right;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.gt-dropdown.is-open {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    visibility: visible;
}

/* Small arrow notch */
.gt-dropdown::before {
    content: '';
    position: absolute;
    top: -5px;
    right: 18px;
    width: 10px;
    height: 10px;
    background: #0e1e38;
    border-top: 1px solid rgba(247, 243, 234, 0.12);
    border-left: 1px solid rgba(247, 243, 234, 0.12);
    transform: rotate(45deg);
    z-index: 1;
}

/* Dropdown header with search input */
.gt-dropdown-header {
    padding: 0.6rem 0.65rem 0.45rem;
    border-bottom: 1px solid rgba(247, 243, 234, 0.08);
    background: rgba(10, 25, 47, 0.6);
    position: relative;
    z-index: 2;
}

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

.gt-search-icon {
    position: absolute;
    left: 0.55rem;
    color: rgba(247, 243, 234, 0.45);
    pointer-events: none;
}

.gt-search-input {
    width: 100%;
    background: rgba(247, 243, 234, 0.06);
    border: 1px solid rgba(247, 243, 234, 0.12);
    border-radius: 6px;
    padding: 0.35rem 0.5rem 0.35rem 1.7rem;
    color: var(--color-ivory, #F7F3EA);
    font-family: var(--font-ui, 'Inter', sans-serif);
    font-size: 0.75rem;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.gt-search-input:focus {
    border-color: var(--color-saffron, #C59B6D);
    background: rgba(247, 243, 234, 0.1);
}

.gt-search-input::placeholder {
    color: rgba(247, 243, 234, 0.35);
}

/* Scrollable inner list */
.gt-dropdown-inner {
    max-height: 270px;
    overflow-y: auto;
    padding: 0.35rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(247, 243, 234, 0.2) transparent;
}

.gt-dropdown-inner::-webkit-scrollbar {
    width: 4px;
}
.gt-dropdown-inner::-webkit-scrollbar-track {
    background: transparent;
}
.gt-dropdown-inner::-webkit-scrollbar-thumb {
    background: rgba(247, 243, 234, 0.2);
    border-radius: 2px;
}

/* Section title inside dropdown */
.gt-section-title {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: rgba(247, 243, 234, 0.4);
    padding: 0.4rem 0.5rem 0.2rem;
    margin: 0;
}

/* Language option rows */
.gt-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.45rem 0.65rem;
    margin: 0.1rem 0;
    background: transparent;
    border: none;
    text-align: left;
    color: rgba(247, 243, 234, 0.8);
    font-family: var(--font-ui, 'Inter', sans-serif);
    font-size: 0.8rem;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
    text-decoration: none;
    outline: none;
}

.gt-option:hover {
    background: rgba(247, 243, 234, 0.1);
    color: #ffffff;
    transform: translateX(2px);
}

.gt-option:active {
    transform: scale(0.98);
}

.gt-option.is-active {
    background: rgba(197, 155, 109, 0.18);
    color: var(--color-saffron, #C59B6D);
    font-weight: 600;
}

.gt-option-left {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
}

.gt-option-native {
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.2;
}

.gt-option-latin {
    font-size: 0.7rem;
    color: rgba(247, 243, 234, 0.45);
    line-height: 1.1;
}

.gt-option.is-active .gt-option-latin {
    color: rgba(197, 155, 109, 0.7);
}

.gt-option-right {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.gt-option-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.12rem 0.35rem;
    border-radius: 4px;
    background: rgba(247, 243, 234, 0.08);
    color: rgba(247, 243, 234, 0.6);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.gt-option.is-active .gt-option-badge {
    background: var(--color-saffron, #C59B6D);
    color: #ffffff;
}

.gt-option-check {
    display: none;
    width: 12px;
    height: 12px;
    color: var(--color-saffron, #C59B6D);
    flex-shrink: 0;
}

.gt-option.is-active .gt-option-check {
    display: block;
}

.gt-no-results {
    padding: 1rem 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(247, 243, 234, 0.4);
}

/* Stagger-in animation */
.gt-dropdown.is-open .gt-option {
    animation: gtOptionIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.lang-switcher {
    display: inline-flex;
    align-items: center;
    margin-left: 1.25rem;
    padding-left: 1.25rem;
    border-left: 1px solid rgba(247, 243, 234, 0.15);
}

.lang-switcher__link {
    color: rgba(247, 243, 234, 0.5);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.15rem 0.4rem;
    border-radius: 2px;
    transition: all var(--transition-base);
}

.lang-switcher__link:hover {
    color: var(--color-ivory);
}

.lang-switcher__link.active {
    color: var(--color-ivory);
    background: rgba(247, 243, 234, 0.12);
}


/* ======================================
   7. NAVBAR
   ====================================== */

.navbar {
    background: var(--color-indigo);
    padding: 0;
    transition: all var(--transition-base);
    z-index: 1030;
    box-shadow: none;
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

.navbar .container {
    padding-top: 0;
    padding-bottom: 0;
}

/* Brand */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.65rem 0;
    color: var(--color-ivory) !important;
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--color-ivory) !important;
}

.navbar-brand__emblem {
    display: flex;
    align-items: center;
    color: var(--color-ivory);
}

.brand-logo-img,
.navbar-brand .brand-logo-img,
.navbar-brand__emblem .brand-logo-img {
    height: 130px;
    width: auto;
	padding-top:10px;
	padding-bottom:10px;
    max-height: 130px;
    object-fit: contain;
    display: inline-block;
    vertical-align: middle;
}

.navbar-brand__emblem .brand-wheel {
    width: 36px;
    height: 36px;
}

.navbar-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    gap: 2px;
}

.navbar-brand__title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.2px;
}

.navbar-brand__subtitle {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.6;
}

/* Nav Links */
.navbar-nav {
    gap: 0;
}

.navbar-nav .nav-link {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: rgba(247, 243, 234, 0.9) !important;
    padding: 1rem 0.75rem;
    position: relative;
    transition: color var(--transition-base);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active > .nav-link {
    color: var(--color-ivory) !important;
}

.navbar-nav .nav-item.active > .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0.75rem;
    right: 0.75rem;
    height: 2px;
    background: var(--color-saffron);
}

/* Dropdown & Auto-Hover */
.dropdown-chevron {
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.nav-link__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.navbar-nav .nav-link:hover .nav-link__icon {
    opacity: 1;
    transform: scale(1.1);
}

@media (min-width: 1200px) {
    .navbar-nav .nav-item.dropdown {
        position: relative;
    }

    /* Invisible bridge to maintain hover state when cursor moves down to menu */
    .navbar-nav .nav-item.dropdown::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        right: 0;
        height: 14px;
        display: block;
        z-index: 1001;
    }

    .navbar-nav .nav-item.dropdown .dropdown-menu {
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s cubic-bezier(0.16, 1, 0.3, 1);
        pointer-events: none;
        margin-top: 0;
        top: 100%;
        left: 0;
    }

    .navbar-nav .nav-item.dropdown:hover > .dropdown-menu,
    .navbar-nav .nav-item.dropdown .dropdown-menu:hover,
    .navbar-nav .nav-item.dropdown:focus-within > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .navbar-nav .nav-item.dropdown:hover > .dropdown-toggle .dropdown-chevron,
    .navbar-nav .nav-item.dropdown:focus-within > .dropdown-toggle .dropdown-chevron {
        transform: rotate(180deg);
    }
}

.dropdown-menu {
    background: #ffffff;
    border: 1px solid rgba(10, 25, 47, 0.1);
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(10, 25, 47, 0.15);
    padding: 0.5rem;
    margin-top: 0;
    min-width: 240px;
}

.dropdown-item {
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-charcoal);
    padding: 0.6rem 0.85rem;
    border-radius: 7px;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dropdown-item__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgba(15, 32, 67, 0.06);
    color: var(--color-indigo);
    flex-shrink: 0;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.dropdown-item__text {
    flex-grow: 1;
    font-weight: 500;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background: rgba(15, 32, 67, 0.06);
    color: var(--color-indigo);
    transform: translateX(4px);
}

.dropdown-item:hover .dropdown-item__icon,
.dropdown-item:focus .dropdown-item__icon {
    background: var(--color-indigo);
    color: #ffffff;
    transform: scale(1.08);
}

.dropdown-item.active {
    background: var(--color-saffron-light);
    color: var(--color-saffron);
    font-weight: 600;
}

.dropdown-item.active .dropdown-item__icon {
    background: var(--color-saffron);
    color: #ffffff;
}

/* Hamburger Toggle */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    background: none;
    cursor: pointer;
    position: relative;
    z-index: 1050;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: var(--focus-ring);
    outline-offset: var(--focus-offset);
}

.navbar-toggler__bar {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-ivory);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.navbar-toggler.active .navbar-toggler__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggler.active .navbar-toggler__bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .navbar-toggler__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
@media (max-width: 1199.98px) {
    .navbar .container {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-brand {
        flex: 1;
        min-width: 0;
        margin-right: 0.5rem;
        white-space: normal;
    }

    .navbar-brand__emblem {
        flex-shrink: 0;
    }

    .brand-logo-img,
    .navbar-brand .brand-logo-img,
    .navbar-brand__emblem .brand-logo-img {
        height: 122px !important;
        width: auto !important;
    }

    .navbar-brand__text {
        min-width: 0;
    }

    .navbar-brand__title {
        font-size: 0.85rem !important;
        line-height: 1.2;
        white-space: normal;
    }

    .navbar-brand__subtitle {
        font-size: 0.55rem !important;
    }

    .navbar-toggler {
        margin-left: auto;
        flex-shrink: 0;
    }

    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 380px;
        height: 100vh;
        background: var(--color-indigo);
        padding: 5rem 2rem 2rem;
        overflow-y: auto;
        transition: right 0.4s ease;
        z-index: 1040;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav .nav-link {
        padding: 0.85rem 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(247, 243, 234, 0.08);
    }

    .navbar-nav .nav-item.active > .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 1.25rem;
    }

    .dropdown-item {
        color: rgba(247, 243, 234, 0.7);
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(247, 243, 234, 0.05);
    }

    .dropdown-item:hover,
    .dropdown-item:focus {
        background: transparent;
        color: var(--color-ivory);
    }

    .dropdown-item.active {
        background: transparent;
        color: var(--color-saffron);
    }

    .nav-mobile-contact {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(247, 243, 234, 0.1);
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 24, 31, 0.6);
    z-index: 1025;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
}

.nav-overlay.active,
.nav-overlay.show {
    opacity: 1;
    visibility: visible;
}


/* ======================================
   8. BUTTONS
   ====================================== */

.btn {
    font-family: var(--font-ui);
    font-weight: 500;
    letter-spacing: 0.3px;
    border-radius: var(--border-radius);
    padding: 0.7rem 1.75rem;
    font-size: 0.9rem;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn:focus-visible {
    outline: var(--focus-ring);
    outline-offset: var(--focus-offset);
}

.btn-saffron {
    background: var(--color-saffron);
    color: var(--color-white);
    border-color: var(--color-saffron);
}

.btn-saffron:hover {
    background: var(--color-saffron-hover);
    border-color: var(--color-saffron-hover);
    color: var(--color-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(193, 98, 45, 0.3);
}

.btn-indigo {
    background: var(--color-indigo);
    color: var(--color-ivory);
    border-color: var(--color-indigo);
}

.btn-indigo:hover {
    background: var(--color-deep-charcoal);
    border-color: var(--color-deep-charcoal);
    color: var(--color-ivory);
    transform: translateY(-1px);
}

.btn-outline-indigo {
    background: transparent;
    color: var(--color-indigo);
    border-color: var(--color-indigo);
}

.btn-outline-indigo:hover {
    background: var(--color-indigo);
    color: var(--color-ivory);
}

.btn-outline-ivory {
    background: transparent;
    color: var(--color-ivory);
    border-color: rgba(247, 243, 234, 0.4);
}

.btn-outline-ivory:hover {
    background: rgba(247, 243, 234, 0.1);
    border-color: var(--color-ivory);
    color: var(--color-ivory);
}

.btn-outline-saffron {
    background: transparent;
    color: var(--color-saffron);
    border-color: var(--color-saffron);
}

.btn-outline-saffron:hover {
    background: var(--color-saffron);
    color: var(--color-white);
}

.btn-text {
    background: none;
    border: none;
    color: var(--color-saffron);
    font-family: var(--font-ui);
    font-size: var(--fs-small);
    font-weight: 500;
    padding: 0.25rem 0;
    cursor: pointer;
    text-decoration: none;
}

.btn-text:hover {
    color: var(--color-saffron-hover);
}

.btn-lg {
    padding: 0.9rem 2.25rem;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.825rem;
}


/* ======================================
   9. SECTIONS & LAYOUT
   ====================================== */

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section--ivory {
    background: var(--color-ivory);
}

.section--white {
    background: var(--color-white);
}

.section--sandstone {
    background: var(--color-sandstone);
}

.section--indigo {
    background: var(--color-indigo);
    color: var(--color-ivory);
}

.section--indigo h2,
.section--indigo h3,
.section--indigo h4 {
    color: var(--color-ivory);
}

.section--indigo .eyebrow {
    color: var(--color-saffron);
}

.section--deep {
    background: var(--color-deep-charcoal);
    color: var(--color-ivory);
}

.section--deep h2,
.section--deep h3 {
    color: var(--color-ivory);
}

/* Khadi texture overlay */
.section--khadi {
    position: relative;
}

.section--khadi::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20h40M0 0h40M0 40h40' stroke='%238A8477' stroke-width='.3' fill='none'/%3E%3Cpath d='M20 0v40M0 0v40M40 0v40' stroke='%238A8477' stroke-width='.15' fill='none'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.section--khadi > * {
    position: relative;
    z-index: 1;
}

.section-header {
    margin-bottom: var(--space-xl);
}

.section-header .eyebrow {
    margin-bottom: 0.6rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    color: var(--color-warm-grey);
    max-width: 600px;
    line-height: 1.7;
}

.section-header.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* Thin horizontal rule (like a printed page divider) */
.thin-rule {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: var(--space-lg) 0;
}


/* ======================================
   10. HERO SECTION
   ====================================== */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--color-indigo);
    color: var(--color-ivory);
    overflow: hidden;
    padding: var(--space-3xl) 0 var(--space-2xl);
}

.hero--page {
    min-height: 45vh;
    padding: var(--space-2xl) 0 var(--space-xl);
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(28, 43, 74, 0.95) 0%,
        rgba(28, 43, 74, 0.8) 50%,
        rgba(20, 24, 31, 0.9) 100%
    );
}

/* Khadi weave texture on hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20h40M0 0h40M0 40h40' stroke='%23F7F3EA' stroke-width='.3' fill='none'/%3E%3Cpath d='M20 0v40M0 0v40M40 0v40' stroke='%23F7F3EA' stroke-width='.15' fill='none'/%3E%3C/svg%3E");
    opacity: 0.03;
    z-index: 1;
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.hero__edition {
    font-family: var(--font-ui);
    font-size: var(--fs-h6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-saffron);
    margin-bottom: var(--space-md);
    display: inline-block;
}

.hero h1 {
    color: var(--color-ivory);
    font-size: var(--fs-h1);
    line-height: 1.12;
    margin-bottom: var(--space-md);
}

.hero__theme {
    font-family: var(--font-body);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    line-height: 1.75;
    color: rgba(247, 243, 234, 0.75);
    max-width: 600px;
    margin-bottom: var(--space-lg);
}

.hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: var(--space-lg);
    font-family: var(--font-ui);
    font-size: var(--fs-small);
}

.hero__meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(247, 243, 234, 0.8);
}

.hero__meta-item svg {
    color: var(--color-saffron);
    opacity: 0.8;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: var(--space-lg);
}

/* Decorative wheel on hero */
.hero__decoration {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.04;
    pointer-events: none;
}

.hero__decoration svg {
    width: 500px;
    height: 500px;
}

@media (max-width: 991.98px) {
    .hero {
        min-height: auto;
        padding: calc(var(--space-2xl) + 1rem) 0 var(--space-xl);
    }

    .hero--page {
        min-height: auto;
        padding: calc(var(--space-xl) + 2rem) 0 var(--space-lg);
    }

    .hero__decoration {
        display: none;
    }
}


/* ======================================
   10a. HOMEPAGE HERO SLIDESHOW
   ====================================== */

.hero-section {
    position: relative;
    padding: clamp(4rem, 10vw, 8rem) 0;
    overflow: hidden;
    color: var(--color-white);
    background-color: #160e0a;
}

.hero-marathi-title {
    font-family: var(--font-devanagari), 'Noto Serif Devanagari', serif;
    font-size: clamp(1.15rem, 2.5vw, 1.55rem);
    font-weight: 600;
    color: #E5C396;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-md);
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.5s ease-in-out, transform 7s ease-out;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    transform: scale(1.0);
}

.hero-slideshow__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(20, 12, 8, 0.86) 0%,
        rgba(40, 22, 12, 0.78) 50%,
        rgba(15, 23, 42, 0.88) 100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-slideshow__dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero-slideshow__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.4s ease;
}

.hero-slideshow__dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--color-saffron);
}


/* ======================================
   10b. PAGE HERO BANNER (Inner Pages)
   ====================================== */

.page-hero-banner {
    position: relative;
    padding: calc(var(--space-2xl) + 1rem) 0 var(--space-xl);
    background-color: #160e0a;
    color: var(--color-ivory);
    overflow: hidden;
}

/* Center-right image container */
.page-hero-banner__image {
    position: absolute;
    top: 0;
    right: 0;
    width: 62%;
    height: 100%;
    background-image: var(--hero-bg-img);
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0.95;
}

/* Left-side dark overlay fading smoothly towards the right */
.page-hero-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        #160e0a 0%,
        #160e0a 38%,
        rgba(22, 14, 10, 0.88) 55%,
        rgba(22, 14, 10, 0.45) 75%,
        rgba(22, 14, 10, 0.15) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Khadi-weave texture overlay */
.page-hero-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20h40M0 0h40M0 40h40' stroke='%23F7F3EA' stroke-width='.3' fill='none'/%3E%3Cpath d='M20 0v40M0 0v40M40 0v40' stroke='%23F7F3EA' stroke-width='.15' fill='none'/%3E%3C/svg%3E");
    opacity: 0.04;
    z-index: 1;
    pointer-events: none;
}

/* Bottom fade border */
.page-hero-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--color-saffron) 30%,
        rgba(193, 98, 45, 0.6) 70%,
        transparent 100%
    );
    z-index: 3;
}

/* Decorative glow orbs */
.page-hero-banner__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.page-hero-banner__glow--1 {
    width: 500px;
    height: 500px;
    top: -180px;
    right: -100px;
    background: radial-gradient(circle, rgba(193, 98, 45, 0.18) 0%, transparent 70%);
}

.page-hero-banner__glow--2 {
    width: 350px;
    height: 350px;
    bottom: -120px;
    left: -60px;
    background: radial-gradient(circle, rgba(46, 94, 90, 0.2) 0%, transparent 70%);
}

/* Decorative geometric pattern (Ashoka chakra-inspired dots) */
.page-hero-banner__pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 420px;
    height: 100%;
    background-image: radial-gradient(circle, rgba(247, 243, 234, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 100%);
    z-index: 0;
    pointer-events: none;
}

/* Content container */
.page-hero-banner .container {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.page-hero-banner__breadcrumb {
    margin-bottom: var(--space-sm);
}

.page-hero-banner__breadcrumb ol {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
}

.page-hero-banner__breadcrumb li {
    font-family: var(--font-ui);
    font-size: var(--fs-caption);
    font-weight: 500;
    letter-spacing: 0.03em;
    color: rgba(247, 243, 234, 0.55);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.page-hero-banner__breadcrumb li + li::before {
    content: '/';
    color: rgba(193, 98, 45, 0.6);
    font-weight: 400;
}

.page-hero-banner__breadcrumb li a {
    color: rgba(247, 243, 234, 0.65);
    text-decoration: none;
    transition: color var(--transition-base);
}

.page-hero-banner__breadcrumb li a:hover {
    color: var(--color-saffron);
}

.page-hero-banner__breadcrumb li.active {
    color: rgba(247, 243, 234, 0.85);
}

/* Title */
.page-hero-banner__title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--color-ivory);
    margin: 0 0 var(--space-sm) 0;
    max-width: 750px;
}

/* Saffron underline accent on title */
.page-hero-banner__title::after {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: var(--color-saffron);
    margin-top: 0.6rem;
    border-radius: 2px;
}

/* Description */
.page-hero-banner__description {
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 1.2vw, 1.05rem);
    line-height: 1.75;
    color: rgba(247, 243, 234, 0.72);
    max-width: 620px;
    margin: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
    .page-hero-banner {
        padding: calc(var(--space-xl) + 3rem) 0 var(--space-lg);
    }

    .page-hero-banner__image {
        width: 100%;
        opacity: 0.55;
    }

    .page-hero-banner__overlay {
        background: linear-gradient(
            to right,
            rgba(22, 14, 10, 0.95) 0%,
            rgba(22, 14, 10, 0.85) 60%,
            rgba(22, 14, 10, 0.65) 100%
        );
    }

    .page-hero-banner__glow--1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -80px;
    }

    .page-hero-banner__pattern {
        width: 200px;
    }
}

@media (max-width: 767.98px) {
    .page-hero-banner__title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .page-hero-banner__overlay {
        background: linear-gradient(
            to bottom,
            rgba(22, 14, 10, 0.92) 0%,
            rgba(22, 14, 10, 0.82) 100%
        );
    }

    .page-hero-banner__glow--2 {
        display: none;
    }
}


/* ======================================
   11. GANDHI QUOTE SECTION
   ====================================== */

.quote-section {
    padding: var(--space-xl) 0;
    background: var(--color-ivory);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}

.gandhi-quote {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0;
    border: none;
    position: relative;
}

.gandhi-quote::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 5rem;
    color: var(--color-saffron);
    opacity: 0.3;
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    line-height: 1;
}

.gandhi-quote p {
    font-family: var(--font-display);
    font-style: italic;
    font-size: var(--fs-quote);
    font-weight: 500;
    color: var(--color-indigo);
    line-height: 1.5;
    max-width: none;
    margin: 0 auto var(--space-sm);
    padding-top: 1.5rem;
}

.gandhi-quote cite {
    font-family: var(--font-ui);
    font-style: normal;
    font-size: var(--fs-small);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-warm-grey);
}


/* ======================================
   12. CARDS
   ====================================== */

/* Base Card */
.card-base {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
    height: 100%;
}

.card-base:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Speaker Card */
.speaker-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.speaker-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.speaker-card__image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    background: var(--color-sandstone);
}

.speaker-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s ease;
}

.speaker-card:hover .speaker-card__image img {
    transform: scale(1.03);
}

.speaker-card__monogram {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-indigo);
    background: var(--color-sandstone);
    opacity: 0.6;
}

.speaker-card__country {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: var(--color-indigo);
    color: var(--color-ivory);
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.6rem;
    border-radius: 2px;
}

.speaker-card__content {
    padding: 1.25rem 1.25rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.speaker-card__content .eyebrow {
    font-size: 0.65rem;
    margin-bottom: 0.35rem;
}

.speaker-card__name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-indigo);
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.speaker-card__designation {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--color-charcoal);
    margin-bottom: 0.15rem;
    line-height: 1.4;
}

.speaker-card__affiliation {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--color-warm-grey);
    margin-bottom: 0.6rem;
}

.speaker-card__talk {
    font-family: var(--font-body);
    font-size: 0.85rem;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.speaker-card__bio {
    display: none;
    margin-top: 0.5rem;
}

.speaker-card__bio p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    line-height: 1.65;
    color: var(--color-charcoal);
}

.speaker-card.expanded .speaker-card__bio {
    display: block;
}

.speaker-card__bio-toggle {
    margin-top: auto;
}

.speaker-card .show-less { display: none; }
.speaker-card.expanded .show-more { display: none; }
.speaker-card.expanded .show-less { display: inline; }

/* Speaker Card — Featured (larger) */
.speaker-card--featured .speaker-card__image {
    aspect-ratio: 3/4;
}

.speaker-card--featured .speaker-card__name {
    font-size: 1.3rem;
}

/* Committee Card — Vertical Format */
.committee-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.15rem;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-lg, 12px);
    transition: all var(--transition-base);
    height: 100%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.committee-card:hover {
    box-shadow: var(--shadow-md, 0 10px 25px rgba(0, 0, 0, 0.08));
    transform: translateY(-4px);
    border-color: var(--color-saffron);
}

.committee-card__image {
    flex-shrink: 0;
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--border-radius, 8px);
    overflow: hidden;
    background: var(--color-sandstone);
    margin-bottom: 1rem;
    position: relative;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
}

.committee-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.committee-card:hover .committee-card__image img {
    transform: scale(1.05);
}

.committee-card__monogram {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-indigo);
    background: var(--color-sandstone);
    opacity: 0.7;
}

.committee-card__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    flex: 1;
}

.committee-card__name {
    font-family: var(--font-display);
    font-size: 1.08rem;
    font-weight: 600;
    color: var(--color-indigo);
    margin-bottom: 0.3rem;
    line-height: 1.35;
}

.committee-card__designation {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    color: var(--color-saffron);
    font-weight: 600;
    margin-bottom: 0.2rem;
    line-height: 1.4;
}

.committee-card__affiliation {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: var(--color-warm-grey);
    margin-bottom: 0;
    line-height: 1.4;
}

.committee-card__event {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--color-teal);
    margin-bottom: 0;
    margin-top: 0.3rem;
}

/* Sub-theme Card */
.subtheme-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius);
    padding: 1.25rem 1.5rem;
    transition: all var(--transition-base);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    height: 100%;
}

.subtheme-card:hover {
    border-color: var(--color-saffron);
    box-shadow: var(--shadow-sm);
}

.subtheme-card__number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-saffron);
    opacity: 0.4;
    line-height: 1;
    flex-shrink: 0;
    min-width: 2rem;
}

.subtheme-card__title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-charcoal);
    line-height: 1.5;
    margin: 0;
}

/* Special Event Card */
.event-card {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
    transition: all var(--transition-base);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.event-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-saffron-light);
    border-radius: 50%;
    margin-bottom: var(--space-sm);
    color: var(--color-saffron);
}

.event-card__icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5px;
}

.event-card h4 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--color-indigo);
    margin-bottom: 0.5rem;
}

.event-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-charcoal);
    flex: 1;
}

.event-card__curator {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--color-teal);
    font-weight: 500;
    margin-top: 0.75rem;
}

.event-card__categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.75rem;
}

.event-card__categories span {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--color-teal);
    background: var(--color-teal-light);
    padding: 0.15rem 0.55rem;
    border-radius: 2px;
}


/* ======================================
   13. LANGUAGE TRACKS
   ====================================== */

.lang-tracks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.lang-track {
    padding: var(--space-lg) var(--space-sm);
    text-align: center;
    background: var(--color-white);
    border-right: 1px solid var(--color-border-light);
    transition: background var(--transition-base);
}

.lang-track:last-child {
    border-right: none;
}

.lang-track:hover {
    background: var(--color-ivory);
}

.lang-track__label {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-saffron);
    margin-bottom: 0.5rem;
}

.lang-track__name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-indigo);
    margin-bottom: 0.25rem;
}

.lang-track__script {
    font-size: 1.1rem;
    color: var(--color-warm-grey);
}

@media (max-width: 767.98px) {
    .lang-tracks {
        grid-template-columns: repeat(2, 1fr);
    }

    .lang-track:nth-child(2) {
        border-right: none;
    }

    .lang-track:nth-child(1),
    .lang-track:nth-child(2) {
        border-bottom: 1px solid var(--color-border-light);
    }
}


/* ======================================
   14. KEY DATES TIMELINE
   ====================================== */

.dates-strip {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-lg);
    padding: var(--space-lg);
}

.dates-strip__list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.dates-strip__list::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 24px;
    right: 24px;
    height: 2px;
    background: var(--color-sandstone);
}

.dates-strip__item {
    text-align: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.dates-strip__dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-sandstone);
    border: 3px solid var(--color-white);
    margin: 0 auto 0.75rem;
    transition: all var(--transition-base);
}

.dates-strip__item.active .dates-strip__dot {
    background: var(--color-saffron);
}

.dates-strip__item.confirmed .dates-strip__dot {
    background: var(--color-teal);
}

.dates-strip__label {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-indigo);
    margin-bottom: 0.25rem;
}

.dates-strip__date {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--color-warm-grey);
}

.dates-strip__date .tba {
    color: var(--color-saffron);
    font-weight: 500;
    font-style: italic;
}

@media (max-width: 767.98px) {
    .dates-strip__list {
        flex-direction: column;
        gap: 1rem;
    }

    .dates-strip__list::before {
        top: 0;
        bottom: 0;
        left: 12px;
        right: auto;
        width: 2px;
        height: auto;
    }

    .dates-strip__item {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .dates-strip__dot {
        margin: 0;
        flex-shrink: 0;
    }
}


/* ======================================
   15. REGISTRATION TABLE
   ====================================== */

.fee-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.fee-table thead {
    background: var(--color-indigo);
    color: var(--color-ivory);
}

.fee-table th {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 1rem 1.25rem;
    text-align: left;
}

.fee-table td {
    padding: 0.9rem 1.25rem;
    border-bottom: 1px solid var(--color-border-light);
    font-family: var(--font-ui);
    font-size: 0.9rem;
}

.fee-table tbody tr:last-child td {
    border-bottom: none;
}

.fee-table tbody tr:hover {
    background: var(--color-ivory);
}

.fee-table .fee-amount {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-saffron);
}

/* Mobile: stacked cards */
@media (max-width: 767.98px) {
    .fee-table-wrapper {
        display: none;
    }

    .fee-cards {
        display: grid;
        gap: 0.75rem;
    }

    .fee-card {
        background: var(--color-white);
        border: 1px solid var(--color-border-light);
        border-radius: var(--border-radius);
        padding: 1.25rem;
    }

    .fee-card__category {
        font-family: var(--font-display);
        font-size: 1rem;
        font-weight: 600;
        color: var(--color-indigo);
        margin-bottom: 0.25rem;
    }

    .fee-card__desc {
        font-family: var(--font-ui);
        font-size: 0.8rem;
        color: var(--color-warm-grey);
        margin-bottom: 0.5rem;
    }

    .fee-card__amount {
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--color-saffron);
    }
}

@media (min-width: 768px) {
    .fee-cards {
        display: none;
    }
}


/* ======================================
   16. FORMS
   ====================================== */

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-indigo);
    margin-bottom: 0.4rem;
    display: block;
}

.form-control,
.form-select {
    font-family: var(--font-ui);
    font-size: 0.95rem;
    padding: 0.7rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--border-radius);
    background: var(--color-white);
    color: var(--color-charcoal);
    transition: all var(--transition-base);
    min-height: 48px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--color-saffron);
    box-shadow: 0 0 0 3px var(--color-saffron-light);
    outline: none;
}

.form-control::placeholder {
    color: var(--color-warm-grey);
    opacity: 0.7;
}

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

.form-check-input:checked {
    background-color: var(--color-saffron);
    border-color: var(--color-saffron);
}

.form-text {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--color-warm-grey);
}

/* Form feedback */
.form-success {
    background: rgba(46, 94, 90, 0.08);
    border: 1px solid var(--color-teal);
    color: var(--color-teal);
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    font-family: var(--font-ui);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: none;
}

.form-error {
    background: rgba(193, 98, 45, 0.08);
    border: 1px solid var(--color-saffron);
    color: var(--color-saffron);
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    font-family: var(--font-ui);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: none;
}


/* ======================================
   17. SCHEDULE / PROGRAM TABS
   ====================================== */

/* Schedule Day Tabs & Announcement Banner Redesign */
.schedule-nav-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    border-bottom: none;
    margin-bottom: 2.5rem;
}

.schedule-nav-tabs .nav-item {
    margin-bottom: 0;
}

.schedule-nav-tabs .nav-link {
    background: var(--color-white);
    border: 1.5px solid rgba(99, 87, 80, 0.2) !important;
    border-radius: 14px !important;
    padding: 0.85rem 2rem !important;
    color: var(--color-charcoal) !important;
    font-family: var(--font-ui);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 145px;
    box-shadow: 0 2px 6px rgba(42, 34, 30, 0.04);
}

.schedule-nav-tabs .nav-link .day-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-indigo);
    transition: color 0.3s ease;
}

.schedule-nav-tabs .nav-link .day-date {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-warm-grey);
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: color 0.3s ease;
}

.schedule-nav-tabs .nav-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 34, 30, 0.08);
    border-color: var(--color-saffron) !important;
}

/* Active Day Tab Styling */
.schedule-nav-tabs .nav-link.active {
    background: linear-gradient(135deg, var(--color-indigo) 0%, #543321 100%) !important;
    border-color: transparent !important;
    box-shadow: 0 8px 25px rgba(123, 76, 51, 0.35) !important;
    transform: translateY(-2px);
}

.schedule-nav-tabs .nav-link.active .day-title {
    color: var(--color-white) !important;
}

.schedule-nav-tabs .nav-link.active .day-date {
    color: var(--color-saffron) !important;
    font-weight: 600;
}

/* Schedule Announcement Card */
.schedule-announcement-card {
    background: linear-gradient(145deg, #FDFBF7 0%, #F5EFE6 100%);
    border: 1px solid rgba(197, 155, 109, 0.4);
    border-left: 4px solid var(--color-saffron);
    border-radius: 12px;
    padding: 1.75rem 2rem;
    max-width: 720px;
    margin: 0 auto 2.5rem;
    box-shadow: 0 6px 20px rgba(42, 34, 30, 0.04);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    position: relative;
    overflow: hidden;
}

.schedule-announcement-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-saffron-light);
    color: var(--color-saffron);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(197, 155, 109, 0.3);
}

.schedule-announcement-card__content {
    flex: 1;
}

.schedule-announcement-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 0.45rem;
}

.schedule-announcement-card__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-indigo);
    margin: 0;
}

.schedule-announcement-card__badge {
    font-family: var(--font-ui);
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--color-indigo);
    background: rgba(197, 155, 109, 0.2);
    padding: 0.25rem 0.7rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.pulse-dot-amber {
    width: 7px;
    height: 7px;
    background-color: var(--color-saffron);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(197, 155, 109, 0.7);
    animation: pulseAmber 2s infinite;
}

@keyframes pulseAmber {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(197, 155, 109, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(197, 155, 109, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(197, 155, 109, 0); }
}

.schedule-announcement-card__text {
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-warm-grey);
    margin: 0;
}

/* Track filter pills - Brand Guidelines Redesign */
.language-track-card {
    background: linear-gradient(145deg, #FFFFFF 0%, #FDFBF7 100%);
    border: 1px solid rgba(197, 155, 109, 0.3);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 35px rgba(42, 34, 30, 0.06), 0 2px 8px rgba(42, 34, 30, 0.03);
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    transform: none !important;
}

.language-track-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20h40M0 0h40M0 40h40' stroke='%23C59B6D' stroke-width='.25' fill='none'/%3E%3Cpath d='M20 0v40M0 0v40M40 0v40' stroke='%23C59B6D' stroke-width='.12' fill='none'/%3E%3C/svg%3E");
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.language-track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(
        90deg,
        #7B4C33 0%,
        #7B4C33 22%,
        #C59B6D 22%,
        #C59B6D 48%,
        #2E5E5A 48%,
        #2E5E5A 74%,
        #6B4C6E 74%,
        #6B4C6E 100%
    );
    z-index: 1;
}

.language-track-card > * {
    position: relative;
    z-index: 2;
}

.track-badge-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 1rem;
    background: var(--color-saffron-light);
    border: 1px solid rgba(197, 155, 109, 0.3);
    border-radius: 20px;
    font-family: var(--font-ui);
    font-size: 0.725rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--color-indigo);
    margin-bottom: 0.85rem;
}

.track-badge-eyebrow svg {
    color: var(--color-saffron);
}

.track-filter-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-top: 1.75rem;
}

.schedule-filter-btn {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-charcoal);
    background: var(--color-white);
    border: 1.5px solid rgba(99, 87, 80, 0.2);
    border-radius: 12px;
    padding: 0.75rem 1.4rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
    box-shadow: 0 2px 6px rgba(42, 34, 30, 0.04);
    position: relative;
}

.schedule-filter-btn .track-icon-badge {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    background: var(--color-ivory-dark);
    color: var(--color-indigo);
    transition: all 0.3s ease;
}

.schedule-filter-btn .track-label-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.25;
}

.schedule-filter-btn .track-title-main {
    font-weight: 600;
}

.schedule-filter-btn .track-subtitle-native {
    font-family: var(--font-devanagari), var(--font-body), serif;
    font-size: 0.775rem;
    opacity: 0.75;
    font-weight: 500;
}

.schedule-filter-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(42, 34, 30, 0.1);
    border-color: var(--color-saffron);
}

.schedule-filter-btn:hover .track-icon-badge {
    background: var(--color-indigo);
    color: var(--color-ivory);
}

.schedule-filter-btn.active {
    color: var(--color-white) !important;
    border-color: transparent !important;
    transform: translateY(-2px) scale(1.02);
}

.schedule-filter-btn.active .track-subtitle-native {
    opacity: 0.95;
    color: var(--color-sandstone);
}

.schedule-filter-btn.active .track-icon-badge {
    background: rgba(255, 255, 255, 0.22) !important;
    color: var(--color-white) !important;
}

.schedule-filter-btn.active[data-filter="all"] {
    background: linear-gradient(135deg, #7B4C33 0%, #543321 100%) !important;
    box-shadow: 0 8px 25px rgba(123, 76, 51, 0.35) !important;
}

.schedule-filter-btn.active[data-filter="English"] {
    background: linear-gradient(135deg, #7B4C33 0%, #4A2E1F 100%) !important;
    box-shadow: 0 8px 25px rgba(123, 76, 51, 0.35) !important;
}

.schedule-filter-btn.active[data-filter="Hindi"] {
    background: linear-gradient(135deg, #C59B6D 0%, #A47745 100%) !important;
    box-shadow: 0 8px 25px rgba(197, 155, 109, 0.4) !important;
}

.schedule-filter-btn.active[data-filter="Marathi"] {
    background: linear-gradient(135deg, #2E5E5A 0%, #1A3F3C 100%) !important;
    box-shadow: 0 8px 25px rgba(46, 94, 90, 0.4) !important;
}

.schedule-filter-btn.active[data-filter="Urdu"] {
    background: linear-gradient(135deg, #6B4C6E 0%, #4D3350 100%) !important;
    box-shadow: 0 8px 25px rgba(107, 76, 110, 0.4) !important;
}

.track-active-summary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding: 0.45rem 1.25rem;
    background: var(--color-ivory-dark);
    border: 1px dashed var(--color-border);
    border-radius: 20px;
    font-family: var(--font-ui);
    font-size: 0.825rem;
    color: var(--color-warm-grey);
    transition: all 0.3s ease;
}

.track-active-summary strong {
    color: var(--color-indigo);
}

/* Session Card */
.session-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius);
    margin-bottom: 0.75rem;
    transition: all var(--transition-base);
}

.session-card:hover {
    box-shadow: var(--shadow-sm);
}

.session-card__time {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-indigo);
    white-space: nowrap;
    min-width: 90px;
}

.session-card__content {
    flex: 1;
}

.session-card__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-indigo);
    margin-bottom: 0.25rem;
}

.session-card__speaker {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--color-warm-grey);
}

.session-card__track {
    font-family: var(--font-ui);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 0.15rem 0.5rem;
    border-radius: 2px;
    display: inline-block;
    margin-top: 0.35rem;
}

.session-card__track--english { background: var(--color-indigo-light); color: var(--color-indigo); }
.session-card__track--hindi { background: var(--color-saffron-light); color: var(--color-saffron); }
.session-card__track--marathi { background: var(--color-teal-light); color: var(--color-teal); }
.session-card__track--urdu { background: rgba(107, 76, 110, 0.1); color: #6B4C6E; }


/* ======================================
   18. GALLERY
   ====================================== */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

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

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

.gallery-item__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(transparent, rgba(20, 24, 31, 0.7));
    color: var(--color-ivory);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-item__overlay {
    opacity: 1;
}


/* ======================================
   19. FOOTER
   ====================================== */

.site-footer {
    background: var(--color-deep-charcoal);
    color: rgba(247, 243, 234, 0.75);
    position: relative;
}

/* Khadi texture on footer */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20h40M0 0h40M0 40h40' stroke='%23F7F3EA' stroke-width='.3' fill='none'/%3E%3Cpath d='M20 0v40M0 0v40M40 0v40' stroke='%23F7F3EA' stroke-width='.15' fill='none'/%3E%3C/svg%3E");
    opacity: 0.02;
    pointer-events: none;
}

.footer-top {
    padding: var(--space-2xl) 0 var(--space-xl);
    position: relative;
    z-index: 1;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.footer-brand__emblem {
    color: var(--color-ivory);
}

.footer-brand__emblem .brand-wheel {
    width: 32px;
    height: 32px;
}

.footer-brand__text {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-ivory);
    line-height: 1.3;
}

.footer-about {
    font-size: 0.85rem;
    line-height: 1.65;
    margin-bottom: 1rem;
    max-width: 360px;
}

.footer-institutions {
    border-top: 1px solid rgba(247, 243, 234, 0.08);
    padding-top: 1rem;
}

.footer-org {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.footer-org strong {
    color: var(--color-ivory);
}

.footer-heading {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-ivory);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(247, 243, 234, 0.08);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: rgba(247, 243, 234, 0.6);
    transition: color var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-ivory);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 0.65rem;
    margin-bottom: 0.85rem;
    font-size: 0.85rem;
    align-items: flex-start;
}

.footer-contact li svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--color-saffron);
    opacity: 0.7;
}

.footer-contact a {
    color: rgba(247, 243, 234, 0.7);
}

.footer-contact a:hover {
    color: var(--color-ivory);
}

.footer-cta {
    display: flex;
    gap: 0.75rem;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(247, 243, 234, 0.06);
    padding: 1.25rem 0;
    position: relative;
    z-index: 1;
}

.footer-copyright,
.footer-affiliation,
.footer-conference-info {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: rgba(247, 243, 234, 0.4);
    margin-bottom: 0.15rem;
}




/* ======================================
   21. READING CONTENT (Concept Note etc.)
   ====================================== */

.reading-content {
    max-width: var(--max-reading);
    margin: 0 auto;
}

.reading-content h2 {
    margin-top: var(--space-xl);
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border-light);
}

.reading-content h3 {
    margin-top: var(--space-lg);
}

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

.reading-content ul,
.reading-content ol {
    margin-bottom: 1.25rem;
    padding-left: 1.5rem;
}

.reading-content li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.reading-content blockquote {
    border-left: 3px solid var(--color-saffron);
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin: var(--space-lg) 0;
    font-style: italic;
    color: var(--color-indigo);
}


/* ======================================
   22. VENUE MAP
   ====================================== */

.map-container {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-border-light);
    height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* ======================================
   23. AWARDS SECTION
   ====================================== */

.award-card {
    text-align: center;
    padding: var(--space-lg);
}

.award-card__icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    background: var(--color-saffron-light);
    border-radius: 50%;
    color: var(--color-saffron);
}

.award-card__icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.award-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.award-card p {
    font-size: 0.85rem;
    color: var(--color-warm-grey);
    max-width: 280px;
    margin: 0 auto;
}


/* ======================================
   24. CTA BAND
   ====================================== */

.cta-band {
    background: var(--color-indigo);
    color: var(--color-ivory);
    padding: var(--space-xl) 0;
    text-align: center;
    position: relative;
}

.cta-band::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20h40M0 0h40M0 40h40' stroke='%23F7F3EA' stroke-width='.3' fill='none'/%3E%3Cpath d='M20 0v40M0 0v40M40 0v40' stroke='%23F7F3EA' stroke-width='.15' fill='none'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.cta-band h2 {
    color: var(--color-ivory);
    margin-bottom: 0.5rem;
}

.cta-band p {
    color: rgba(247, 243, 234, 0.7);
    max-width: 600px;
    margin: 0 auto var(--space-md);
}

.cta-band .btn {
    position: relative;
    z-index: 1;
}


/* ======================================
   25. ABOUT / INSTITUTIONS
   ====================================== */

.institution-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-base);
    height: 100%;
}

.institution-card:hover {
    box-shadow: var(--shadow-sm);
}

.institution-card__logo {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-ivory);
    border-radius: var(--border-radius);
    padding: 0.5rem;
}

.institution-card__logo img {
    max-width: 100%;
    max-height: 100%;
}

.institution-card h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.institution-card p {
    font-size: 0.85rem;
    color: var(--color-warm-grey);
    margin: 0;
}


/* ======================================
   26. TBA / PLACEHOLDER MODULES
   ====================================== */

.tba-module {
    text-align: center;
    padding: var(--space-xl) var(--space-lg);
    background: var(--color-ivory);
    border: 2px dashed var(--color-border);
    border-radius: var(--border-radius-lg);
}

.tba-module__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    color: var(--color-warm-grey);
}

.tba-module__icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
}

.tba-module h4 {
    font-size: 1.1rem;
    color: var(--color-indigo);
    margin-bottom: 0.4rem;
}

.tba-module p {
    font-size: 0.9rem;
    color: var(--color-warm-grey);
    max-width: 400px;
    margin: 0 auto;
}


/* ======================================
   27. BREADCRUMBS
   ====================================== */

.breadcrumb-nav {
    padding: 1rem 0;
    font-family: var(--font-ui);
    font-size: 0.8rem;
}

.breadcrumb-nav ol {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    margin: 0;
    gap: 0.25rem;
}

.breadcrumb-nav li {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.breadcrumb-nav li + li::before {
    content: '›';
    color: rgba(247, 243, 234, 0.4);
    margin-right: 0.25rem;
}

.breadcrumb-nav a {
    color: rgba(247, 243, 234, 0.6);
}

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

.breadcrumb-nav .current {
    color: var(--color-ivory);
}


/* ======================================
   28. UTILITY CLASSES
   ====================================== */

.bg-ivory { background-color: var(--color-ivory) !important; }
.bg-white { background-color: var(--color-white) !important; }
.bg-sandstone { background-color: var(--color-sandstone) !important; }
.bg-indigo { background-color: var(--color-indigo) !important; }

.container {
    max-width: var(--max-content);
}

.mb-section { margin-bottom: var(--section-padding); }
.mt-section { margin-top: var(--section-padding); }

/* Decorative elements */
.decor-rule {
    width: 60px;
    height: 2px;
    background: var(--color-saffron);
    margin: var(--space-sm) 0;
}

.decor-rule--center {
    margin-left: auto;
    margin-right: auto;
}


/* ======================================
   29. RESPONSIVE ADJUSTMENTS
   ====================================== */

@media (max-width: 991.98px) {
    .section {
        padding: clamp(2.5rem, 6vw, 4rem) 0;
    }

    .section-header {
        margin-bottom: var(--space-lg);
    }
}

@media (max-width: 767.98px) {
    .hero h1 {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

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

    .hero__cta {
        flex-direction: column;
    }

    .hero__cta .btn {
        width: 100%;
        justify-content: center;
    }

    .gandhi-quote p {
        font-size: clamp(1.15rem, 4vw, 1.5rem);
    }

    .gandhi-quote::before {
        font-size: 3.5rem;
        top: -1.25rem;
    }

    .section-header .eyebrow {
        font-size: 0.65rem;
    }
}

/* Print styles */
@media print {
    .navbar,
    .top-bar,
    .page-loader,
    .nav-overlay {
        display: none !important;
    }

    body {
        padding-bottom: 0;
        color: #000;
        background: #fff;
    }

    .hero {
        min-height: auto;
        padding: 2rem 0;
        background: #fff;
        color: #000;
    }

    .hero h1 { color: #000; }
}

/* ======================================
   SPECIAL EVENTS REDESIGN STYLES
   ====================================== */

.page-special-events .featured-event-section {
    background-color: var(--color-sandstone);
    position: relative;
    overflow: hidden;
}

.featured-event-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 10px 35px rgba(42, 34, 30, 0.08);
    border: 1px solid var(--color-border-light);
    padding: 2.5rem;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.featured-event-card:hover {
    box-shadow: 0 15px 40px rgba(42, 34, 30, 0.12);
}

.featured-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 340px;
}

.featured-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.featured-event-card:hover .featured-image-wrapper img {
    transform: scale(1.04);
}

.curator-floating-badge {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(8px);
    padding: 0.75rem 1rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-md);
}

.curator-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-saffron);
}

/* ======================================
   SPECIAL EVENTS — REDESIGNED SECTION
   ====================================== */

/* Outer section wrapper */
.se-section {
    background: var(--color-ivory);
}

/* ── Header Band ── */
.se-header-band {
    background: linear-gradient(135deg, #3D2210 0%, #5C2F17 55%, #4A2820 100%);
    position: relative;
    overflow: hidden;
    padding: 4rem 0 3.5rem;
}

.se-header-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 12% 50%, rgba(197,155,109,0.18) 0%, transparent 55%),
        radial-gradient(circle at 88% 30%, rgba(197,155,109,0.12) 0%, transparent 50%);
    pointer-events: none;
}

/* Subtle texture pattern */
.se-header-band::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C59B6D' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.se-header-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.se-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-saffron);
    margin-bottom: 1.1rem;
}

.se-heading {
    font-family: var(--font-display);
    font-size: clamp(1.9rem, 4vw, 2.85rem);
    font-weight: 700;
    color: #FDFBF7;
    line-height: 1.2;
    margin-bottom: 1.1rem;
    letter-spacing: -0.01em;
}

/* Ornamental divider */
.se-heading-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.se-heading-ornament span {
    display: block;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197,155,109,0.7), transparent);
}

.se-ornament-diamond {
    width: 6px !important;
    height: 6px !important;
    background: var(--color-saffron) !important;
    transform: rotate(45deg);
    border-radius: 1px;
    flex-shrink: 0;
}

.se-subheading {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(253, 251, 247, 0.72);
    margin: 0;
}

/* ── Grid Wrapper ── */
.se-grid-wrap {
    padding: 3.5rem 0 4rem;
    background: var(--color-ivory);
}

.se-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

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

/* ── Individual Event Card ── */
.se-card {
    position: relative;
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid var(--color-border-light);
    box-shadow: 0 2px 12px rgba(42, 34, 30, 0.055);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.se-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 38px rgba(42, 34, 30, 0.13);
    border-color: rgba(197, 155, 109, 0.5);
}

/* Colour stripe at top */
.se-card-stripe {
    height: 4px;
    width: 100%;
    flex-shrink: 0;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.se-card:hover .se-card-stripe {
    opacity: 1;
}

/* Hover glow effect */
.se-card-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: 12px;
    opacity: 0;
    background: radial-gradient(ellipse at 50% 0%, var(--card-glow, rgba(197,155,109,0.3)) 0%, transparent 65%);
    transition: opacity 0.4s ease;
    z-index: 0;
}

.se-card:hover .se-card-glow {
    opacity: 1;
}

/* Card body */
.se-card-body {
    padding: 1.75rem 1.75rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
}

/* Icon circle */
.se-icon-wrap {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.se-card:hover .se-icon-wrap {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 6px 18px var(--icon-glow, rgba(197,155,109,0.3));
}

/* Title */
.se-card-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-indigo);
    line-height: 1.3;
    margin-bottom: 0.6rem;
    text-align: center;
}

/* Ornamental line under title */
.se-card-divider {
    margin-bottom: 0.9rem;
}

.se-card-divider span {
    display: block;
    width: 32px;
    height: 2px;
    border-radius: 2px;
    margin: 0 auto;
    opacity: 0.7;
    transition: width 0.3s ease, opacity 0.3s ease;
}

.se-card:hover .se-card-divider span {
    width: 48px;
    opacity: 1;
}

/* Description */
.se-card-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-warm-grey);
    text-align: center;
    margin-bottom: 1.25rem;
}

/* ── Card Footer (categories + curator) ── */
.se-card-footer {
    padding: 0 1.75rem 1.75rem;
    position: relative;
    z-index: 1;
    margin-top: auto;
}

/* Categories */
.se-categories {
    padding-top: 1rem;
    border-top: 1px solid var(--color-border-light);
    margin-bottom: 0.9rem;
}

.se-categories-label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--color-warm-grey);
    margin-bottom: 0.55rem;
    text-align: center;
}

.se-categories-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
}

.se-pill {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 500;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    border: 1px solid;
    background: transparent;
    transition: background 0.2s ease;
}

.se-card:hover .se-pill {
    background: rgba(255,255,255,0.6);
}

/* Curator badge */
.se-curator {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding-top: 0.75rem;
}

.se-curator--has-cats {
    border-top: 1px solid var(--color-border-light);
}

.se-curator-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.se-curator-label {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: var(--color-warm-grey);
    flex-shrink: 0;
}

.se-curator-name {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-indigo);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cta-card-wrapper {
    background: linear-gradient(135deg, #4A2B1D 0%, #2A170E 100%) !important;
    border: 1px solid rgba(197, 155, 109, 0.35) !important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(42, 34, 30, 0.15) !important;
}

.cta-card-wrapper h2 {
    color: #FFFFFF !important;
}

.cta-card-wrapper p {
    color: #E0D6CD !important;
}

.btn-saffron {
    background-color: var(--color-saffron) !important;
    color: #FFFFFF !important;
    border: 1px solid var(--color-saffron) !important;
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-base);
}

.btn-saffron:hover,
.btn-saffron:focus {
    background-color: var(--color-saffron-hover) !important;
    color: #FFFFFF !important;
    border-color: var(--color-saffron-hover) !important;
    box-shadow: 0 6px 20px rgba(197, 155, 109, 0.45) !important;
    transform: translateY(-2px);
}

.btn-outline-ivory {
    background-color: rgba(255, 255, 255, 0.08) !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(253, 251, 247, 0.4) !important;
    font-weight: 500;
    padding: 0.85rem 2rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-base);
}

.btn-outline-ivory:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: #FFFFFF !important;
    border-color: #FFFFFF !important;
    transform: translateY(-2px);
}

/* ======================================
   ABOUT PAGE REDESIGN STYLES
   ====================================== */

.about-vision-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-sm);
    padding: 2.25rem;
    transition: all var(--transition-base);
}

.about-vision-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-saffron);
}

.pillar-badge {
    background: var(--color-sandstone);
    color: var(--color-indigo);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all var(--transition-base);
}

.pillar-badge:hover {
    background: var(--color-saffron);
    color: var(--color-white);
}

.language-track-pill {
    background: var(--color-white);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-lg);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.language-track-pill:hover {
    border-color: var(--color-saffron);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.language-native-script {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-saffron);
}

.subtheme-chip {
    background: var(--color-ivory-dark);
    color: var(--color-indigo);
    font-size: 0.82rem;
    font-weight: 500;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    border: 1px solid var(--color-border-light);
    display: inline-block;
}

.about-nav-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border-light);
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.about-nav-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-saffron);
}

.about-nav-card .nav-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-saffron-light);
    color: var(--color-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all var(--transition-base);
}

.about-nav-card:hover .nav-card-icon {
    background: var(--color-indigo);
    color: var(--color-white);
}

.btn-outline-indigo {
    background-color: transparent !important;
    color: var(--color-indigo) !important;
    border: 1px solid var(--color-indigo) !important;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: var(--border-radius);
    transition: all var(--transition-base);
}

.btn-outline-indigo:hover {
    background-color: var(--color-indigo) !important;
    color: #FFFFFF !important;
    border-color: var(--color-indigo) !important;
    box-shadow: 0 4px 15px rgba(123, 76, 51, 0.3) !important;
    transform: translateY(-2px);
}

/* ======================================
   CONCEPT NOTE REDESIGN STYLES
   ====================================== */

.toc-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border-light);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.toc-card .nav-link {
    font-family: var(--font-ui);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-warm-grey) !important;
    padding: 0.5rem 0.75rem;
    border-radius: var(--border-radius);
    border-left: 3px solid transparent;
    transition: all var(--transition-base);
}

.toc-card .nav-link:hover,
.toc-card .nav-link.active {
    color: var(--color-indigo) !important;
    background: var(--color-saffron-light);
    border-left-color: var(--color-saffron);
    padding-left: 1rem;
}

.pillar-master-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border-light);
    padding: 2.25rem;
    margin-bottom: 2rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.pillar-master-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-saffron);
    opacity: 0.8;
}

.pillar-master-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-saffron);
}

.pillar-number-badge {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--color-saffron);
    background: var(--color-sandstone);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.objective-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border-light);
    padding: 1.75rem;
    height: 100%;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.objective-card:hover {
    transform: translateY(-3px);
    border-color: var(--color-saffron);
    box-shadow: var(--shadow-md);
}

.objective-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--color-saffron-light);
    color: var(--color-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.deliverable-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border-light);
    padding: 1.75rem;
    height: 100%;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.deliverable-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-saffron);
}

.deliverable-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-sandstone);
    color: var(--color-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

/* ======================================
   MASONRY GALLERY — GALLERY PAGE
   ====================================== */

.gandhi-masonry-gallery {
    columns: 4;
    column-gap: 1rem;
}

@media (max-width: 1199px) {
    .gandhi-masonry-gallery { columns: 3; }
}
@media (max-width: 767px) {
    .gandhi-masonry-gallery { columns: 2; }
}
@media (max-width: 480px) {
    .gandhi-masonry-gallery { columns: 1; }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem;
    cursor: pointer;
}

.masonry-img-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background: var(--color-sandstone);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition-base);
}

.masonry-item:hover .masonry-img-wrapper {
    box-shadow: var(--shadow-lg);
}

.masonry-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
    border-radius: var(--border-radius-lg);
}

.masonry-item:hover .masonry-img {
    transform: scale(1.04);
}

.masonry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(42, 23, 14, 0.0) 50%, rgba(42, 23, 14, 0.55) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0.75rem;
    opacity: 0;
    transition: opacity var(--transition-base);
    border-radius: var(--border-radius-lg);
}

.masonry-item:hover .masonry-overlay {
    opacity: 1;
}

.masonry-overlay-inner {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-indigo);
    box-shadow: var(--shadow-sm);
}

/* Lightbox */

.gallery-lightbox-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 10, 8, 0.92);
    z-index: 9998;
    backdrop-filter: blur(4px);
}

.gallery-lightbox-backdrop.active {
    display: block;
}

.gallery-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.gallery-lightbox.active {
    display: flex;
}

.lightbox-img-wrapper {
    max-width: 90vw;
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 86vh;
    object-fit: contain;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transition: opacity 0.2s ease;
}

.lightbox-close {
    position: fixed;
    top: 1.25rem;
    right: 1.5rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10000;
}

.lightbox-close:hover {
    background: rgba(197, 155, 109, 0.7);
    border-color: transparent;
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    font-size: 2.5rem;
    line-height: 1;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    z-index: 10000;
}

.lightbox-nav:hover {
    background: var(--color-saffron);
    border-color: transparent;
}

.lightbox-prev { left: 1.25rem; }
.lightbox-next { right: 1.25rem; }

.lightbox-counter {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.6);
    font-family: var(--font-ui);
    font-size: 0.85rem;
    letter-spacing: 1px;
    z-index: 10000;
}

@media (max-width: 600px) {
    .lightbox-nav { display: none; }
    .lightbox-img { max-height: 80vh; }
}

/* ======================================
   VENUE PAGE REDESIGN STYLES
   ====================================== */

.venue-highlight-pill {
    background: var(--color-sandstone);
    color: var(--color-indigo);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: all var(--transition-base);
    border: 1px solid transparent;
}

.venue-highlight-pill:hover {
    background: var(--color-white);
    border-color: var(--color-saffron);
    color: var(--color-indigo);
}

.travel-step-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border-light);
    padding: 1.75rem;
    margin-bottom: 1.25rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.25rem;
    align-items: start;
}

.travel-step-card:hover {
    transform: translateY(-2px);
    border-color: var(--color-saffron);
    box-shadow: var(--shadow-md);
}

.travel-step-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-saffron-light);
    color: var(--color-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
    transition: all var(--transition-base);
}

.travel-step-card:hover .travel-step-icon-box {
    background: var(--color-indigo);
    color: var(--color-white);
}

.accommodation-highlight-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border-light);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.accommodation-highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--color-saffron);
}

.accommodation-highlight-card:hover {
    border-color: var(--color-saffron);
    box-shadow: var(--shadow-md);
}

.assistance-contact-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border-light);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.assistance-contact-card:hover {
    border-color: var(--color-saffron);
    box-shadow: var(--shadow-md);
}

.attraction-destination-card {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border-light);
    padding: 1.75rem;
    height: 100%;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-sm);
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.attraction-destination-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-saffron);
    box-shadow: var(--shadow-lg);
}

.attraction-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--color-saffron-light);
    color: var(--color-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.5rem;
    transition: all var(--transition-base);
}

.attraction-destination-card:hover .attraction-badge-icon {
    background: var(--color-indigo);
    color: var(--color-white);
}

.attraction-distance-pill {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-saffron);
    background: var(--color-saffron-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
    margin-top: 1rem;
    align-self: flex-start;
}

/* Enhanced Venue & Attraction Cards */
.attraction-card-v2 {
    background: #ffffff;
    border: 1px solid rgba(197, 155, 109, 0.25);
    border-radius: 16px;
    padding: 1.85rem 1.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.attraction-card-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-saffron), var(--color-indigo));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.attraction-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(123, 76, 51, 0.15);
    border-color: var(--color-saffron);
}

.attraction-card-v2:hover::before {
    opacity: 1;
}

.attraction-icon-wrapper {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(197, 155, 109, 0.12);
    color: var(--color-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.attraction-card-v2:hover .attraction-icon-wrapper {
    background: var(--color-indigo);
    color: #ffffff;
    transform: scale(1.08) rotate(-4deg);
}

.travel-hub-card {
    background: #ffffff;
    border: 1px solid var(--color-border-light);
    border-radius: 16px;
    padding: 1.75rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.travel-hub-card:hover {
    border-color: var(--color-saffron);
    box-shadow: 0 10px 28px rgba(197, 155, 109, 0.15);
    transform: translateX(4px);
}

.travel-hub-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    background: var(--color-sandstone);
    color: var(--color-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    transition: all 0.3s ease;
}

.travel-hub-card:hover .travel-hub-icon {
    background: var(--color-saffron);
    color: #ffffff;
}

/* ======================================
   NAVBAR DROPDOWN HOVER & CHEVRON REDESIGN
   ====================================== */

/* Hide the default Bootstrap caret */
.navbar-nav .dropdown-toggle::after {
    display: none !important;
}

/* Transition properties for chevron rotation */
.dropdown-chevron {
    transition: transform var(--transition-base);
    opacity: 0.8;
}

/* Automatic open on hover (Desktop) */
@media (min-width: 1200px) {
    .navbar-nav .nav-item.dropdown:hover .dropdown-menu {
        display: block !important;
        margin-top: 0;
        animation: navDropdownFadeIn 0.2s ease-out;
    }
    
    .navbar-nav .nav-item.dropdown:hover .dropdown-chevron {
        transform: rotate(180deg);
        color: var(--color-ivory);
    }
}

/* Smooth fade-in animation for dropdown */
@keyframes navDropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================================
   REGISTRATION PAGE REDESIGN
   ====================================== */

.registration-section {
    background-color: var(--color-ivory);
    background-image: radial-gradient(var(--color-sandstone) 0.75px, transparent 0.75px);
    background-size: 24px 24px;
}

/* Card & Container Styling */
.registration-card {
    border-radius: 16px !important;
    border: 1px solid var(--color-border-light) !important;
    box-shadow: 0 15px 35px rgba(32, 25, 22, 0.05) !important;
    position: relative;
}

.registration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-saffron) 0%, var(--color-indigo) 100%);
}

.badge-accent {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    background: var(--color-saffron-light);
    color: var(--color-indigo);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Form Steps */
.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-indigo);
    color: var(--color-ivory);
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Input Groups & Floating Style */
.input-group-custom {
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.2s ease;
    border: 1px solid rgba(99, 87, 80, 0.2);
}

.input-group-custom .input-group-text {
    background: #F8F5F0;
    border: none;
    color: var(--color-indigo);
    padding-left: 0.85rem;
    padding-right: 0.65rem;
}

.input-group-custom .form-control,
.input-group-custom .form-select {
    border: none !important;
    padding: 0.65rem 0.85rem;
    font-size: 0.9rem;
    font-family: var(--font-ui);
    color: var(--color-charcoal);
    background: #FFFFFF;
}

.input-group-custom:focus-within {
    border-color: var(--color-saffron) !important;
    box-shadow: 0 0 0 3px rgba(197, 155, 109, 0.2) !important;
}

.form-control-custom {
    border: 1px solid rgba(99, 87, 80, 0.2);
    border-radius: 8px;
    padding: 0.75rem 0.85rem;
    font-size: 0.9rem;
    font-family: var(--font-ui);
    transition: all 0.2s ease;
}

.form-control-custom:focus {
    border-color: var(--color-saffron) !important;
    box-shadow: 0 0 0 3px rgba(197, 155, 109, 0.2) !important;
}

/* Payment Pill Selector */
.payment-pill-card {
    background: #FDFCF9;
    border: 1px solid var(--color-border-light) !important;
    transition: all 0.2s ease;
}

.payment-pill-card:hover {
    border-color: var(--color-saffron) !important;
    background: rgba(197, 155, 109, 0.04);
}

.payment-pill-card input[type="radio"]:checked ~ .payment-pill-icon {
    background: var(--color-saffron);
    color: #FFFFFF;
}

.payment-pill-card:has(input[type="radio"]:checked) {
    border-color: var(--color-saffron) !important;
    background: rgba(197, 155, 109, 0.08);
}

.payment-pill-icon {
    width: 36px;
    height: 36px;
    background: var(--color-indigo-light);
    color: var(--color-indigo);
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.extra-small {
    font-size: 0.75rem;
}

/* Submit Button */
.btn-registration-submit {
    background: linear-gradient(135deg, var(--color-indigo) 0%, #5E3924 100%);
    color: var(--color-ivory);
    border: none;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-registration-submit:hover {
    background: linear-gradient(135deg, var(--color-saffron) 0%, #B28756 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(197, 155, 109, 0.3) !important;
}

/* Sidebar Elements */
.sidebar-sticky-wrapper {
    position: sticky;
    top: 100px;
}

.tariff-card {
    border: 1px solid var(--color-border-light) !important;
    padding: 1.85rem !important;
}

.tariff-badge-icon {
    width: 42px;
    height: 42px;
    background: var(--color-saffron-light);
    color: var(--color-saffron);
}

.pricing-tiers-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem !important;
}

.pricing-tier-item {
    background: #FDFCFB;
    border: 1px solid rgba(99, 87, 80, 0.15) !important;
    padding: 1.15rem 1.25rem !important;
    border-radius: 14px !important;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-tier-item:hover {
    background: #FFFFFF;
    border-color: var(--color-saffron) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(197, 155, 109, 0.15);
}

.pricing-tier-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    background: rgba(123, 76, 51, 0.08);
    color: var(--color-indigo);
    flex-shrink: 0;
}

.pricing-tier-fee {
    background: var(--color-saffron-light);
    font-size: 0.95rem;
    white-space: nowrap;
    padding: 0.4rem 0.95rem !important;
    border-radius: 30px !important;
}

.inclusions-card {
    background: linear-gradient(135deg, #FBF8F2 0%, #F5EFE4 100%);
    border: 1px solid rgba(197, 155, 109, 0.2) !important;
}

.inclusions-badge {
    width: 28px;
    height: 28px;
    background: var(--color-indigo);
    color: var(--color-ivory);
}

.check-icon {
    width: 20px;
    height: 20px;
    background: var(--color-saffron);
    color: #FFFFFF;
    font-size: 0.7rem;
    font-weight: bold;
    flex-shrink: 0;
}

.payment-notice-card {
    background: #FFFFFF;
    border: 1px dashed rgba(123, 76, 51, 0.3) !important;
}

.notice-icon-box {
    background: var(--color-indigo-light);
    color: var(--color-indigo);
    flex-shrink: 0;
}


/* ======================================
   CONTACT PAGE — Premium Redesign
   ====================================== */

/* Section */
.contact-section {
    padding: var(--section-padding) 0;
    padding-bottom: calc(var(--section-padding) + 1rem);
}

/* --- Contact Cards Row (Top) --- */
.contact-cards-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.contact-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.25rem 1.5rem;
    background: var(--color-white);
    border: 1.5px solid var(--color-border-light);
    border-radius: 12px;
    text-decoration: none;
    color: var(--color-charcoal);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-saffron), var(--color-indigo));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(123, 76, 51, 0.12);
    border-color: var(--color-saffron);
    color: var(--color-charcoal);
    text-decoration: none;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card__icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-indigo-light);
    color: var(--color-indigo);
    margin-bottom: 1rem;
    transition: all 0.4s ease;
}

.contact-card:hover .contact-card__icon {
    background: var(--color-indigo);
    color: var(--color-white);
    transform: scale(1.08);
}

.contact-card--whatsapp .contact-card__icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.contact-card--whatsapp:hover .contact-card__icon {
    background: #25d366;
    color: var(--color-white);
}

.contact-card--whatsapp:hover {
    border-color: #25d366;
}

.contact-card--whatsapp::before {
    background: linear-gradient(90deg, #25d366, #128c7e);
}

.contact-card__label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-warm-grey);
    margin-bottom: 0.35rem;
}

.contact-card__value {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
    word-break: break-word;
}

.contact-card__action {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-saffron);
    opacity: 0;
    transform: translateY(6px);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card__action {
    opacity: 1;
    transform: translateY(0);
}

.contact-card--whatsapp .contact-card__action {
    color: #25d366;
}


/* --- Contact Form Wrapper --- */
.contact-form-wrapper {
    background: var(--color-white);
    border: 1.5px solid var(--color-border-light);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-indigo), var(--color-saffron), var(--color-teal));
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-header__tag {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-saffron);
    background: var(--color-saffron-light);
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.contact-form-header__title {
    font-family: var(--font-display);
    font-size: var(--fs-h3);
    color: var(--color-indigo);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-form-header__desc {
    font-family: var(--font-body);
    font-size: var(--fs-small);
    color: var(--color-warm-grey);
    margin: 0;
    max-width: 50ch;
    line-height: 1.6;
}

/* Input with icon */
.input-icon-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-warm-grey);
    opacity: 0.5;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1;
}

.input-icon-wrap:focus-within .input-icon {
    color: var(--color-saffron);
    opacity: 1;
}

.form-control--icon {
    padding-left: 44px !important;
}

/* Contact Form specific */
.contact-form .form-control,
.contact-form .form-select {
    border-radius: 8px;
    border: 1.5px solid var(--color-border);
    background: var(--color-ivory);
    transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background: var(--color-white);
    border-color: var(--color-saffron);
    box-shadow: 0 0 0 4px var(--color-saffron-light);
}

.contact-form .form-floating-group {
    margin-bottom: 0;
}

/* Submit Button */
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2.5rem;
    background: linear-gradient(135deg, var(--color-indigo), #5E3924);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    font-family: var(--font-ui);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.contact-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-saffron), var(--color-saffron-hover));
    transition: left 0.4s ease;
    z-index: 0;
}

.contact-submit-btn:hover::before {
    left: 0;
}

.contact-submit-btn__text,
.contact-submit-btn__arrow {
    position: relative;
    z-index: 1;
}

.contact-submit-btn__arrow {
    transition: transform 0.3s ease;
}

.contact-submit-btn:hover .contact-submit-btn__arrow {
    transform: translateX(4px);
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(123, 76, 51, 0.25);
}


/* --- Organized By Card --- */
.organized-by-card {
    background: var(--color-white);
    border: 1.5px solid var(--color-border-light);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.organized-by-card__header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--color-indigo), #5E3924);
    color: var(--color-white);
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.organized-by-card__body {
    padding: 1.5rem;
}

.organized-by-card__org {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.organized-by-card__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-saffron);
    flex-shrink: 0;
    margin-top: 5px;
    box-shadow: 0 0 0 3px var(--color-saffron-light);
}

.organized-by-card__name {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-charcoal);
    margin: 0 0 0.15rem;
    line-height: 1.4;
}

.organized-by-card__role {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--color-warm-grey);
    margin: 0;
}

.organized-by-card__divider {
    height: 1px;
    background: var(--color-border-light);
    margin: 1rem 0;
}


/* --- Quick Info Card --- */
.contact-quick-info {
    background: var(--color-ivory);
    border: 1.5px solid var(--color-border-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-quick-info__title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--color-indigo);
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1.5px solid var(--color-border-light);
}

.contact-quick-info__item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 0.65rem 0;
}

.contact-quick-info__item:not(:last-child) {
    border-bottom: 1px dashed var(--color-border-light);
}

.contact-quick-info__item svg {
    flex-shrink: 0;
    color: var(--color-saffron);
    margin-top: 2px;
}

.contact-quick-info__label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-warm-grey);
    margin-bottom: 0.15rem;
}

.contact-quick-info__value {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-charcoal);
    line-height: 1.4;
}


/* --- Map Card --- */
.contact-map-card {
    background: var(--color-white);
    border: 1.5px solid var(--color-border-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.contact-map-card__header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.25rem;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-indigo);
    border-bottom: 1px solid var(--color-border-light);
}

.contact-map-card__header svg {
    color: var(--color-saffron);
}

.contact-map-card__frame {
    height: 260px;
    position: relative;
}

.contact-map-card__frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


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

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 575.98px) {
    .contact-cards-row {
        grid-template-columns: 1fr;
    }

    .contact-card {
        flex-direction: row;
        text-align: left;
        padding: 1.25rem;
        gap: 1rem;
    }

    .contact-card__icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .contact-card__action {
        opacity: 1;
        transform: none;
    }

    .contact-form-wrapper {
        padding: 1.5rem 1rem;
        border-radius: 12px;
    }



/* ==========================================================================
   Speaker Detail Page & Upgraded Speaker Card Styles
   ========================================================================== */

.speaker-card__name a {
    color: var(--color-indigo);
    text-decoration: none;
    transition: color var(--transition-base);
}

.speaker-card__name a:hover {
    color: var(--color-saffron);
}

.btn-speaker-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    background: var(--color-saffron);
    color: #ffffff !important;
    font-family: var(--font-ui);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.65rem 1.25rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-saffron);
    text-decoration: none;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(197, 155, 109, 0.25);
}

.btn-speaker-profile svg {
    transition: transform 0.25s ease;
    stroke: #ffffff;
}

.btn-speaker-profile:hover {
    background: var(--color-indigo);
    border-color: var(--color-indigo);
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(28, 35, 49, 0.3);
}

.btn-speaker-profile:hover svg {
    transform: translateX(4px);
}

/* ======================================
   SPEAKER DETAIL PAGE UNIFIED DESIGN
   ====================================== */

body.page-speaker-detail {
    overflow-x: hidden !important;
}

.page-speaker-detail main#main-content {
    overflow-x: hidden;
    max-width: 100%;
}

.speaker-avatar-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 290px;
}

.speaker-avatar-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    max-height: 360px;
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-sandstone);
    border: 3px solid rgba(197, 155, 109, 0.4);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speaker-avatar-frame:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.speaker-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.speaker-avatar-monogram {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-indigo);
    background: var(--color-sandstone);
}

.speaker-avatar-country-badge {
    position: absolute;
    bottom: 0.65rem;
    right: 0.65rem;
    background: var(--color-saffron);
    color: #ffffff;
    font-family: var(--font-ui);
    font-size: 0.725rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    letter-spacing: 0.5px;
}

/* Speaker Detail Card & Image Header (Matching Speakers List Page) */
.speaker-detail-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speaker-detail-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 3/5;
    overflow: hidden;
    background: var(--color-sandstone);
}

.speaker-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.speaker-detail-card:hover .speaker-detail-img {
    transform: scale(1.03);
}

.speaker-detail-monogram {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--color-indigo);
    background: var(--color-sandstone);
    opacity: 0.6;
}

/* LinkedIn Icon Only Button */
.speaker-linkedin-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-speaker-linkedin-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #0A66C2;
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 4px 14px rgba(10, 102, 194, 0.35);
    border: 2px solid #ffffff;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-speaker-linkedin-icon:hover {
    background: #004182;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 8px 20px rgba(10, 102, 194, 0.5);
}

.btn-speaker-linkedin-icon:active {
    transform: scale(0.95);
}

.btn-speaker-linkedin-icon svg {
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.btn-speaker-linkedin-icon:hover svg {
    transform: scale(1.1);
}

.speaker-tag-pill {
    background: rgba(197, 155, 109, 0.12);
    color: var(--color-indigo);
    border: 1px solid rgba(197, 155, 109, 0.3);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-family: var(--font-ui);
    font-size: 0.825rem;
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-block;
}

.speaker-tag-pill:hover {
    background: var(--color-saffron);
    color: #ffffff;
    border-color: var(--color-saffron);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197, 155, 109, 0.25);
}

.speaker-nav-card {
    padding: 0.4rem;
    transition: all 0.2s ease;
}

.speaker-nav-thumb {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-saffron);
}

.speaker-nav-arrow-circle {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--color-sandstone);
    color: var(--color-indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.speaker-nav-card:hover .speaker-nav-arrow-circle {
    background: var(--color-saffron);
    color: #ffffff;
    transform: scale(1.08);
}

/* ── Achievement items ─────────────────────────────── */
.achievement-item {
    padding: 0.85rem 1.1rem;
    border-radius: 10px;
    background: #fafafa;
    border: 1px solid rgba(197, 155, 109, 0.22);
    border-left: 4px solid var(--color-saffron);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-left-color 0.2s ease;
}

.achievement-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(197, 155, 109, 0.15);
    border-left-color: var(--color-indigo);
}

.achievement-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    border-radius: 50%;
    background: var(--color-saffron);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}


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

/* Mobile tweaks for partner cards */
@media (max-width: 767px) {
    .page-partners .container > div[style*="border-radius: 12px"] > div:first-child {
        flex-direction: column;
        align-items: flex-start;
    }
}

