:root {
    --odtu-red: #e31e24;
    --odtu-blue: #00529b;
    --odtu-dark: #0f172a;
    --odtu-muted: #64748b;
    --odtu-light: #f8fafc;
    --max-width: 1280px;
    --radius-xl: 28px;
    --radius-lg: 18px;
    --shadow-lg: 0 20px 40px -20px rgba(15, 23, 42, 0.4);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: var(--odtu-dark);
    background: #fff;
    line-height: 1.5;
}

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

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

.site-container {
    width: min(var(--max-width), calc(100% - 2rem));
    margin-inline: auto;
}

.site-main {
    min-height: 60vh;
    padding-top: 84px;
}

.home .site-main {
    padding-top: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    border-radius: 999px;
    border: 2px solid transparent;
    padding: 0.8rem 1.2rem;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.25s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-solid {
    background: var(--odtu-blue);
    color: #fff;
}

.btn-solid:hover {
    background: #003f79;
}

.btn-outline {
    border-color: var(--odtu-red);
    color: var(--odtu-red);
    background: #fff;
}

.btn-outline:hover {
    background: var(--odtu-red);
    color: #fff;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: var(--odtu-dark);
}

.btn-white {
    background: #fff;
    color: var(--odtu-red);
}

.btn-white:hover {
    background: var(--odtu-dark);
    color: #fff;
}

.btn-dark {
    background: var(--odtu-dark);
    color: #fff;
}

.btn-dark:hover {
    background: var(--odtu-red);
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.82) 0%, rgba(2, 6, 23, 0.58) 70%, rgba(2, 6, 23, 0.15) 100%);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(100, 116, 139, 0.18);
    box-shadow: 0 14px 28px -24px rgba(15, 23, 42, 0.8);
}

body.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

.nav-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.site-brand-logo .custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.site-brand-logo .custom-logo {
    width: auto;
    max-height: 44px;
}

.site-brand-title {
    font-size: clamp(1.6rem, 2vw, 1.95rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    color: #fff;
}

.site-header.is-scrolled .site-brand-title {
    color: #0f172a;
}

.desktop-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.site-header .social-links {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding-right: 1rem;
    margin-right: 0.2rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.site-header.is-scrolled .social-links {
    border-right-color: rgba(100, 116, 139, 0.25);
}

.site-header .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    transition: all 0.2s ease;
    color: #fff;
}

.site-header .social-links a svg {
    width: 18px;
    height: 18px;
    display: block;
}

.site-header .social-links a:hover {
    color: var(--odtu-red);
}

.site-header.is-scrolled .social-links a {
    color: #334155;
}

.desktop-nav {
    position: relative;
    min-width: 0;
    overflow: visible;
    scrollbar-width: none;
}

.desktop-nav::-webkit-scrollbar {
    display: none;
}

.desktop-menu,
.mobile-menu,
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: nowrap;
    overflow: visible;
}

.desktop-menu > li {
    position: relative;
    flex: 0 0 auto;
}

.desktop-menu > li > a {
    display: block;
    padding: 0.4rem 0.7rem;
    font-size: 0.83rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
}

.desktop-menu > li.menu-item-has-children > a {
    padding-right: 1rem;
}

.desktop-menu > li.menu-item-has-children > a::after {
    content: "";
    display: inline-block;
    margin-left: 0.35rem;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.2s ease;
    transform-origin: center;
}

.desktop-menu > li.menu-item-has-children:hover > a::after,
.desktop-menu > li.menu-item-has-children:focus-within > a::after {
    transform: rotate(180deg);
}

.desktop-menu > li:hover > a,
.desktop-menu > li.current-menu-item > a,
.desktop-menu > li.current-menu-ancestor > a {
    color: var(--odtu-red);
    border-color: var(--odtu-red);
}

.site-header.is-scrolled .desktop-menu > li > a {
    color: #1e293b;
}

.desktop-menu .sub-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    width: 250px;
    background: #fff;
    border: 1px solid rgba(100, 116, 139, 0.2);
    border-radius: 18px;
    padding: 0.45rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: all 0.22s ease;
    z-index: 40;
}

.desktop-menu li:hover > .sub-menu,
.desktop-menu li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.desktop-menu .sub-menu li a {
    display: block;
    padding: 0.6rem 0.75rem;
    font-size: 0.84rem;
    font-weight: 700;
    border-radius: 10px;
    color: #334155;
}

.desktop-menu .sub-menu li a:hover {
    background: #f8fafc;
    color: var(--odtu-red);
}

.desktop-menu .uyelikbuton > a {
    background: var(--odtu-blue);
    color: #fff;
    border-radius: 999px;
    border: 0;
}

.desktop-menu .uyelikbuton:hover > a {
    color: #fff;
    border-color: transparent;
    background: #003f79;
}

.header-ctas {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-left: 0.25rem;
    flex: 0 0 auto;
}

.site-header .btn {
    padding: 0.66rem 1.1rem;
    font-size: 0.8rem;
}

.site-header:not(.is-scrolled) .btn-outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.78);
}

.site-header:not(.is-scrolled) .btn-outline:hover {
    background: #fff;
    color: #0f172a;
    border-color: #fff;
}

.site-header:not(.is-scrolled) .btn-solid {
    background: var(--odtu-blue);
    color: #fff;
}

.site-header:not(.is-scrolled) .btn-solid:hover {
    background: #0b5cb7;
}

.mobile-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.45);
    cursor: pointer;
    padding: 0.5rem;
}

.site-header.is-scrolled .mobile-toggle {
    background: #fff;
    border-color: rgba(100, 116, 139, 0.3);
}

.mobile-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 5px 0;
    transition: all 0.2s ease;
}

.site-header.is-scrolled .mobile-toggle span {
    background: #111827;
}

.mobile-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding: 1rem;
    background: rgba(2, 6, 23, 0.96);
}

.mobile-panel[hidden] {
    display: none !important;
}

.site-header.is-scrolled .mobile-panel {
    border-top-color: rgba(100, 116, 139, 0.2);
    background: #fff;
}

.mobile-menu > li > a {
    display: block;
    padding: 0.75rem 0.1rem;
    font-size: 0.96rem;
    font-weight: 800;
    color: #f8fafc;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .mobile-menu > li > a {
    color: #0f172a;
    border-bottom-color: rgba(100, 116, 139, 0.18);
}

.mobile-menu .sub-menu {
    padding: 0.35rem 0 0.8rem 1rem;
}

.mobile-menu .sub-menu a {
    display: block;
    padding: 0.35rem 0;
    font-weight: 600;
    color: #cbd5e1;
}

.site-header.is-scrolled .mobile-menu .sub-menu a {
    color: #475569;
}

.mobile-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 1rem;
}

.mobile-social {
    margin-top: 1rem;
    padding-right: 0;
    margin-right: 0;
    border-right: 0;
}

.footer-social,
.contact-cards .social-links {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.footer-social a,
.contact-cards .social-links a {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid rgba(100, 116, 139, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.65rem;
    color: #1e293b;
    transition: all 0.2s ease;
}

.footer-social a svg,
.contact-cards .social-links a svg {
    width: 17px;
    height: 17px;
    display: block;
}

.footer-social a:hover,
.contact-cards .social-links a:hover {
    border-color: var(--odtu-red);
    color: var(--odtu-red);
}

.hero {
    position: relative;
    min-height: calc(88vh - 84px);
    overflow: hidden;
    background: #020617;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    overflow: hidden;
}

.hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slide > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    filter: brightness(0.45);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.88) 0%, rgba(2, 6, 23, 0.3) 58%, rgba(2, 6, 23, 0.1) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    min-height: calc(88vh - 84px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 760px;
}

.hero-content h1 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.9rem, 5vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    font-weight: 900;
}

.hero-content p {
    color: #e2e8f0;
    margin: 1.2rem 0 1.8rem;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    max-width: 62ch;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
}

.hero-controls {
    position: absolute;
    right: 1rem;
    bottom: 1.1rem;
    z-index: 3;
    display: flex;
    justify-content: flex-end;
    gap: 0.5rem;
}

.hero-arrow {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(15, 23, 42, 0.32);
    color: #fff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
}

.hero-arrow:hover {
    background: #fff;
    color: #0f172a;
}

.hero-dots {
    position: absolute;
    left: 1rem;
    bottom: 1.45rem;
    z-index: 3;
    display: flex;
    gap: 0.4rem;
}

.hero-dot {
    width: 18px;
    height: 5px;
    border-radius: 999px;
    border: 0;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.hero-dot.is-active {
    width: 42px;
    background: var(--odtu-red);
}

.section-head {
    padding: 4.5rem 0 1.4rem;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.section-head h2 {
    margin: 0.55rem 0 0;
    font-size: clamp(1.6rem, 4vw, 3rem);
    letter-spacing: -0.03em;
    text-transform: uppercase;
    line-height: 1.1;
}

.section-head p {
    margin: 0.8rem 0 0;
    color: #475569;
    max-width: 62ch;
}

.section-head-light h2,
.section-head-light p,
.section-head-light .section-kicker {
    color: #fff;
}

.section-kicker {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 800;
    color: #cbd5e1;
}

.mini-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.45rem 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    color: var(--odtu-red);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.mini-link:hover {
    background: var(--odtu-red);
    color: #fff;
    border-color: var(--odtu-red);
}

.carousel-controls {
    display: flex;
    gap: 0.4rem;
}

.carousel-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid #cbd5e1;
    border-radius: 999px;
    background: #fff;
    color: #475569;
    font-size: 1.4rem;
    cursor: pointer;
}

.carousel-arrow:hover {
    border-color: var(--odtu-red);
    color: var(--odtu-red);
}

.carousel-arrow.light {
    border-color: rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #fff;
}

.carousel-arrow.light:hover {
    background: #fff;
    color: #111827;
}

.event-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.2rem;
}

.event-filters button {
    border: 2px solid #e2e8f0;
    background: #fff;
    color: #334155;
    border-radius: 999px;
    padding: 0.45rem 0.85rem;
    font-size: 0.75rem;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.event-filters button.is-active,
.event-filters button:hover {
    border-color: var(--odtu-blue);
    background: var(--odtu-blue);
    color: #fff;
}

.events-carousel,
.groups-carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0 1rem 2rem;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.events-carousel::-webkit-scrollbar,
.groups-carousel::-webkit-scrollbar {
    display: none;
}

.event-card,
.group-card {
    width: min(360px, 84vw);
    flex: 0 0 auto;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 30px -20px rgba(15, 23, 42, 0.4);
}

.event-card-image,
.group-media {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.event-card-image img,
.group-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.event-card:hover img,
.group-card:hover img,
.archive-card:hover img,
.event-list-card:hover img,
.gallery-grid figure:hover img,
.group-grid-card:hover img {
    transform: scale(1.07);
}

.event-badge {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    color: var(--odtu-red);
    font-size: 0.67rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.55rem;
}

.event-card-body,
.group-body,
.archive-card,
.event-list-content {
    padding: 1rem;
}

.event-card-body h3,
.group-body h3,
.archive-card h2,
.event-list-content h2 {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.event-meta {
    margin: 0.45rem 0 0;
    font-size: 0.8rem;
    color: #64748b;
}

.event-card-body p,
.group-body p,
.archive-card p,
.event-list-content p {
    margin-top: 0.65rem;
    color: #475569;
}

.event-more,
.group-link {
    margin-top: 0.9rem;
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    color: var(--odtu-blue);
}

.event-more:hover,
.group-link:hover {
    color: var(--odtu-red);
}

.cta-stack {
    margin-top: 1rem;
}

.cta-block {
    color: #fff;
}

.cta-red {
    background: var(--odtu-red);
}

.cta-blue {
    background: var(--odtu-blue);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 4rem 0;
}

.cta-inner.reverse {
    flex-direction: row-reverse;
}

.cta-inner h2 {
    margin: 0;
    font-size: clamp(1.8rem, 4.5vw, 3.8rem);
    line-height: 1.05;
    text-transform: uppercase;
}

.cta-inner p {
    margin: 0.9rem 0 1.4rem;
    max-width: 64ch;
    color: rgba(255, 255, 255, 0.88);
}

.cta-emoji {
    width: 180px;
    height: 180px;
    border-radius: 34px;
    background: rgba(255, 255, 255, 0.14);
    display: grid;
    place-items: center;
    font-size: 4.2rem;
    flex: 0 0 auto;
}

.groups-section {
    background: #0f172a;
    color: #fff;
    padding-bottom: 2.4rem;
}

.group-body p {
    color: #475569;
}

.group-link {
    color: var(--odtu-blue);
}

.group-body h3,
.group-body h3 a {
    color: #0f172a;
}

.closing-banner {
    background: #f8fafc;
    padding: 1.5rem 0 4.6rem;
}

.closing-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    min-height: 440px;
    box-shadow: var(--shadow-lg);
}

.closing-card > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.58);
}

.closing-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 6, 23, 0.84), rgba(2, 6, 23, 0.2));
}

.closing-content {
    position: relative;
    z-index: 2;
    padding: 3.2rem;
    color: #fff;
    max-width: 740px;
}

.closing-content h3 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 3.3rem);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.closing-content p {
    margin-top: 0.85rem;
    color: #e2e8f0;
}

.site-footer {
    background: #fff;
    border-top: 1px solid #e2e8f0;
    padding: 3.4rem 0 1.8rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1.7fr 1fr 1fr 1fr 1fr;
}

.footer-logo {
    width: 52px;
    height: 52px;
    background: var(--odtu-red);
    border-radius: 999px;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.4rem;
    font-weight: 900;
}

.footer-brand h2 {
    margin: 0.75rem 0 0.15rem;
}

.footer-subtitle {
    margin: 0;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-desc {
    margin-top: 0.8rem !important;
    max-width: 52ch;
    color: #64748b;
}

.footer-menu-wrap h3,
.footer-contact h3 {
    margin-top: 0;
    font-size: 1rem;
    font-weight: 800;
    padding-left: 0.65rem;
    border-left: 4px solid var(--odtu-red);
}

.footer-grid > .footer-menu-wrap:nth-child(3) h3 {
    border-left-color: var(--odtu-red);
}

.footer-grid > .footer-menu-wrap:nth-child(4) h3 {
    border-left-color: var(--odtu-blue);
}

.footer-contact h3 {
    border-left-color: #94a3b8;
}

.footer-menu li + li {
    margin-top: 0.4rem;
}

.footer-menu a {
    color: #475569;
    font-weight: 600;
}

.footer-menu a:hover {
    color: var(--odtu-red);
}

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

.footer-contact li {
    color: #475569;
    margin-bottom: 0.45rem;
}

.footer-bottom {
    border-top: 1px solid #f1f5f9;
    margin-top: 2rem;
    padding-top: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.85rem;
}

@media (max-width: 1320px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr;
    }
}

.about-hero {
    position: relative;
    background: #0b1223;
    overflow: hidden;
    padding: 4.5rem 0 3.2rem;
}

.about-hero-glow {
    position: absolute;
    width: 540px;
    height: 540px;
    border-radius: 999px;
    filter: blur(140px);
    opacity: 0.24;
}

.about-hero-glow-left {
    left: -180px;
    bottom: -280px;
    background: #00529b;
}

.about-hero-glow-right {
    right: -180px;
    top: -260px;
    background: #e31e24;
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
}

.about-hero-title {
    margin: 0;
    font-size: clamp(2.8rem, 10vw, 8rem);
    line-height: 0.98;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    font-weight: 900;
    background: linear-gradient(90deg, #fbbf24, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-hero-intro {
    margin: 1.2rem auto 0;
    max-width: 860px;
    color: #fff;
    font-size: clamp(1.1rem, 2.3vw, 2rem);
    font-weight: 700;
    line-height: 1.35;
}

.about-hero-motto {
    margin: 1.25rem 0 0;
    color: #ef4444;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 800;
    font-style: italic;
}

.about-page-nav {
    position: sticky;
    top: 78px;
    z-index: 35;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #e2e8f0;
    backdrop-filter: blur(8px);
}

body.admin-bar .about-page-nav {
    top: 110px;
}

.about-page-nav-wrap {
    overflow-x: auto;
    scrollbar-width: none;
}

.about-page-nav-wrap::-webkit-scrollbar {
    display: none;
}

.about-page-nav-list {
    display: flex;
    justify-content: center;
    min-width: max-content;
}

.about-page-nav-btn {
    border: 0;
    border-bottom: 4px solid transparent;
    background: transparent;
    color: #94a3b8;
    padding: 1.1rem 1.35rem;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.about-page-nav-btn:hover {
    color: #334155;
}

.about-page-nav-btn.is-active {
    color: #e31e24;
    border-color: #e31e24;
}

.about-panels {
    padding: 2.7rem 0 3.8rem;
}

.about-tab-panel {
    display: none;
    animation: odtumist-fade-in 0.25s ease;
}

.about-tab-panel.is-active {
    display: block;
}

.about-panel-title {
    margin: 0;
    font-size: clamp(2rem, 5vw, 4.2rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.about-richtext {
    margin-top: 1rem;
    max-width: 900px;
    color: #334155;
}

.about-richtext p {
    font-size: clamp(1rem, 2vw, 1.42rem);
    line-height: 1.52;
    color: #475569;
}

.about-richtext strong {
    color: #0f172a;
}

.about-groups-intro {
    margin-bottom: 1.4rem;
}

.about-groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
}

.about-group-card {
    border-radius: 30px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 34px -26px rgba(15, 23, 42, 0.45);
}

.about-group-media {
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.about-group-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.about-group-card:hover .about-group-media img {
    transform: scale(1.07);
}

.about-group-body {
    padding: 1rem;
}

.about-group-body h3 {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.2;
}

.about-group-body h3 a {
    color: #0f172a;
}

.about-group-body p {
    margin: 0.65rem 0 0;
    color: #475569;
}

.about-group-link {
    margin-top: 0.85rem;
    display: inline-flex;
    color: #00529b;
    font-size: 0.74rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.about-group-link:hover {
    color: #e31e24;
}

.about-join-grid {
    margin-top: 1.2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.about-join-card {
    border-radius: 36px;
    border: 2px solid #dbeafe;
    background: #fff;
    color: #0f172a;
    min-height: 200px;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 1rem;
    transition: all 0.22s ease;
}

.about-join-card:hover {
    border-color: #00529b;
    box-shadow: 0 16px 34px -25px rgba(2, 6, 23, 0.45);
}

.about-join-card-red {
    border-color: #fecaca;
}

.about-join-card-red:hover {
    border-color: #e31e24;
}

.about-join-icon {
    font-size: 3rem;
    display: block;
}

.about-join-title {
    margin-top: 0.5rem;
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.about-history-grid {
    margin-top: 1.1rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.about-history-card {
    border: 1px solid #e2e8f0;
    border-radius: 30px;
    overflow: hidden;
    background: #fff;
}

.about-history-media {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.about-history-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-history-body {
    padding: 1rem;
}

.about-history-body h3 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.2;
}

.about-history-body p {
    margin-top: 0.65rem;
    color: #475569;
}

.about-management-grid {
    margin-top: 1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.9rem;
}

.about-management-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 26px;
    padding: 1rem 1.1rem;
}

.about-management-card h3 {
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.2;
}

.about-management-card p {
    margin: 0.55rem 0 0;
    color: #475569;
}

@keyframes odtumist-fade-in {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.page-hero {
    padding: 4.2rem 0 2.2rem;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 4rem);
    letter-spacing: -0.03em;
    line-height: 1.05;
    text-transform: uppercase;
}

.page-hero p {
    margin: 0.8rem 0 0;
    max-width: 66ch;
    color: #475569;
}

.page-hero-dark {
    background: #0f172a;
    color: #fff;
}

.page-hero-dark p {
    color: #cbd5e1;
}

.page-content-block {
    padding: 1.6rem 0 2.8rem;
}

.prose-block {
    max-width: 900px;
}

.prose-block p,
.prose-block li {
    color: #334155;
}

.prose-block h2,
.prose-block h3,
.prose-block h4 {
    margin-top: 1.3rem;
    line-height: 1.2;
}

.groups-grid-section,
.history-facts,
.gallery-section,
.membership-steps,
.membership-cta-final,
.archive-listing,
.events-page-grid,
.contact-main,
.contact-form-block,
.solidarity-cta {
    padding: 2.4rem 0 3rem;
}

.groups-grid,
.facts-grid,
.gallery-grid,
.steps-grid,
.archive-grid,
.events-grid {
    display: grid;
    gap: 1rem;
}

.groups-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.group-grid-card {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
}

.group-grid-card h3,
.group-grid-card p {
    padding-inline: 1rem;
}

.group-grid-card h3 {
    margin: 0.85rem 0 0;
}

.group-grid-card p {
    margin: 0.55rem 0 1rem;
    color: #475569;
}

.facts-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.facts-grid article {
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 1rem;
    background: #fff;
}

.facts-grid h3 {
    margin: 0;
}

.facts-grid p {
    margin: 0.6rem 0 0;
    color: #475569;
}

.solidarity-item {
    padding: 2.8rem 0;
}

.solidarity-item h2 {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.solidarity-item p {
    margin-top: 0.7rem;
    max-width: 70ch;
}

.tone-blue {
    background: var(--odtu-blue);
    color: #fff;
}

.tone-light {
    background: #f8fafc;
}

.tone-orange {
    background: #f97316;
    color: #fff;
}

.tone-red {
    background: var(--odtu-red);
    color: #fff;
}

.tone-dark {
    background: #0f172a;
    color: #fff;
}

.tone-cream {
    background: #fff7ed;
}

.solidarity-cta {
    background: var(--odtu-red);
    color: #fff;
    text-align: center;
}

.solidarity-cta p {
    color: #fee2e2;
    margin-bottom: 1.2rem;
}

.contact-hero {
    position: relative;
    min-height: 52vh;
}

.contact-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.55);
}

.contact-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    min-height: 52vh;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-hero-content p {
    color: #e2e8f0;
}

.contact-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}

.contact-cards {
    background: #0f172a;
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 1.4rem;
}

.contact-cards article + article {
    margin-top: 0.85rem;
}

.contact-cards p,
.contact-cards a {
    color: #e2e8f0;
}

.contact-map-wrap {
    border-radius: var(--radius-xl);
    overflow: hidden;
    min-height: 380px;
    box-shadow: var(--shadow-lg);
}

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

.basic-contact-form {
    margin-top: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.basic-contact-form label {
    display: block;
    margin-bottom: 0.8rem;
}

.basic-contact-form span {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: #334155;
}

.basic-contact-form input,
.basic-contact-form textarea {
    width: 100%;
    border: 1px solid #cbd5e1;
    border-radius: 12px;
    padding: 0.65rem 0.75rem;
    font: inherit;
}

.steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.steps-grid article {
    border-radius: 22px;
    border: 1px solid #e2e8f0;
    padding: 1rem;
    background: #fff;
}

.steps-grid h2 {
    margin: 0;
    font-size: 1.05rem;
    text-transform: uppercase;
}

.steps-grid p {
    margin: 0.55rem 0 0;
    color: #475569;
}

.membership-cta-final {
    text-align: center;
    background: #f97316;
    color: #fff;
}

.membership-cta-final h2 {
    margin-top: 0;
    text-transform: uppercase;
}

.archive-grid,
.events-grid,
.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.archive-card,
.event-list-card {
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
}

.archive-thumb,
.event-list-thumb {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.archive-thumb img,
.event-list-thumb img,
.gallery-grid img,
.group-grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-grid figure {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.pagination-wrap {
    grid-column: 1 / -1;
}

.empty-state {
    padding: 1rem 1.2rem;
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
    color: #64748b;
    background: #f8fafc;
}

.empty-state.light {
    background: rgba(255, 255, 255, 0.06);
    color: #cbd5e1;
    border-color: rgba(255, 255, 255, 0.28);
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1140px) {
    .desktop-right {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .site-main {
        padding-top: 76px;
    }

    .home .site-main {
        padding-top: 0;
    }

    .nav-inner {
        min-height: 76px;
    }

    .hero,
    .hero-content {
        min-height: calc(78vh - 76px);
    }

    .cta-emoji {
        width: 120px;
        height: 120px;
        border-radius: 24px;
        font-size: 2.8rem;
    }

    .about-page-nav {
        top: 76px;
    }

    body.admin-bar .about-page-nav {
        top: 122px;
    }
}

@media (max-width: 860px) {
    .section-head,
    .cta-inner,
    .contact-grid,
    .footer-grid,
    .form-grid {
        grid-template-columns: 1fr;
        display: grid;
    }

    .cta-inner,
    .cta-inner.reverse {
        display: block;
    }

    .about-hero {
        padding: 3.8rem 0 2.6rem;
    }

    .about-page-nav-btn {
        padding: 0.95rem 0.8rem;
        letter-spacing: 0.11em;
        font-size: 0.68rem;
    }

    .about-join-grid,
    .about-history-grid {
        grid-template-columns: 1fr;
    }

    .about-richtext p {
        font-size: 1.02rem;
    }

    .cta-emoji {
        margin-top: 1rem;
    }

    .contact-map-wrap {
        min-height: 300px;
    }

    .hero-controls,
    .hero-dots {
        position: relative;
        inset: auto;
        width: min(var(--max-width), calc(100% - 2rem));
        margin: 0 auto;
        padding-bottom: 1rem;
    }

    .hero-controls {
        justify-content: flex-start;
    }

    .hero-dots {
        margin-top: -0.5rem;
    }
}

@media (max-width: 640px) {
    .site-container {
        width: min(var(--max-width), calc(100% - 1.2rem));
    }

    .btn {
        width: 100%;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .closing-content {
        padding: 1.5rem;
    }

    .closing-card {
        min-height: 340px;
    }

    .event-card,
    .group-card {
        width: min(310px, 87vw);
    }

    body.admin-bar .about-page-nav,
    body.admin-bar .membership-nav {
        top: 118px;
    }
}

/* ──────────────────────────────────────────────
   Stats Section
   ────────────────────────────────────────────── */
.stats-section {
    background: #0f172a;
    color: #fff;
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    cursor: default;
}

.stat-value {
    display: block;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    font-weight: 900;
    transition: color 0.3s ease;
}

.stat-item:hover .stat-value {
    color: var(--odtu-red);
}

.stat-label {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: #9ca3af;
}

/* ──────────────────────────────────────────────
   Hero Gradient Text
   ────────────────────────────────────────────── */
.gradient-text {
    background: linear-gradient(90deg, #fbbf24, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-btn-primary {
    background: var(--odtu-red);
    color: #fff;
    border-color: var(--odtu-red);
}

.hero-btn-primary:hover {
    background: #b91c1c;
    border-color: #b91c1c;
}

/* ──────────────────────────────────────────────
   Flip Cards (Working Groups 3D)
   ────────────────────────────────────────────── */
.flip-card {
    perspective: 1200px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.flip-card-front {
    display: flex;
    flex-direction: column;
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1.5rem;
    gap: 0.6rem;
}

.flip-back-icon {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: var(--odtu-red);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    font-weight: 900;
}

.flip-card-back h3 {
    margin: 0;
    font-size: 1.15rem;
    color: #fff;
}

.flip-card-back p {
    color: #cbd5e1;
    font-size: 0.88rem;
    line-height: 1.45;
}

.flip-btn {
    margin-top: 0.5rem;
}

.group-card.flip-card {
    min-height: 440px;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.group-card.flip-card .flip-card-front {
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 30px -20px rgba(15, 23, 42, 0.4);
}

.decorative-bars {
    display: flex;
    gap: 0.35rem;
    margin-right: 0.5rem;
}

.decorative-bars .bar {
    width: 38px;
    height: 5px;
    border-radius: 999px;
}

.bar-red { background: var(--odtu-red); }
.bar-blue { background: var(--odtu-blue); }

.section-head-right {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

/* ──────────────────────────────────────────────
   Solidarity Page Enhanced
   ────────────────────────────────────────────── */
.solidarity-hero {
    position: relative;
    overflow: hidden;
    padding: 5.5rem 0 3.5rem;
    text-align: center;
}

.solidarity-hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 999px;
    filter: blur(140px);
    opacity: 0.22;
}

.solidarity-hero-glow-left {
    left: -200px;
    bottom: -260px;
    background: #00529b;
}

.solidarity-hero-glow-right {
    right: -200px;
    top: -240px;
    background: #e31e24;
}

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

.solidarity-kicker {
    display: inline-block;
    padding: 0.45rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: #fbbf24;
    margin-bottom: 1.2rem;
}

.solidarity-hero h1 {
    margin: 0.8rem 0 0;
    font-size: clamp(2.4rem, 6vw, 5rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    font-weight: 900;
    color: #fff;
}

.solidarity-hero p {
    margin: 1.2rem auto 0;
    max-width: 700px;
    color: #cbd5e1;
    font-size: clamp(1rem, 2vw, 1.3rem);
}

.solidarity-sections .solidarity-item {
    padding: 0;
}

.solidarity-item-inner {
    display: flex;
    align-items: flex-start;
    gap: 2.2rem;
    padding: 3.5rem 0;
}

.solidarity-icon-wrap {
    flex: 0 0 auto;
    width: 90px;
    height: 90px;
    border-radius: 28px;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, 0.12);
}

.solidarity-icon-wrap.tone-light,
.solidarity-icon-wrap.tone-cream {
    background: rgba(15, 23, 42, 0.06);
}

.solidarity-icon {
    font-size: 2.4rem;
}

.solidarity-item-content {
    flex: 1;
    min-width: 0;
}

.solidarity-item-content h2 {
    margin: 0;
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    line-height: 1.08;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.solidarity-richtext {
    margin-top: 0.8rem;
    max-width: 70ch;
}

.solidarity-richtext p {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    line-height: 1.55;
}

.solidarity-item-content .btn {
    margin-top: 1.2rem;
}

/* ──────────────────────────────────────────────
   Membership Page Enhanced
   ────────────────────────────────────────────── */
.membership-nav {
    position: sticky;
    top: 78px;
    z-index: 35;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid #e2e8f0;
    backdrop-filter: blur(8px);
}

body.admin-bar .membership-nav {
    top: 110px;
}

.membership-nav-wrap {
    overflow-x: auto;
    scrollbar-width: none;
}

.membership-nav-wrap::-webkit-scrollbar {
    display: none;
}

.membership-nav-list {
    display: flex;
    justify-content: center;
    min-width: max-content;
}

.membership-nav-btn {
    border: 0;
    border-bottom: 4px solid transparent;
    background: transparent;
    color: #94a3b8;
    padding: 1.1rem 1.35rem;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.membership-nav-btn:hover {
    color: #334155;
}

.membership-nav-btn.is-active {
    color: #e31e24;
    border-color: #e31e24;
}

.membership-panels {
    padding: 2.7rem 0 3.8rem;
}

.membership-panel {
    display: none;
    animation: odtumist-fade-in 0.25s ease;
}

.membership-panel.is-active {
    display: block;
}

.membership-why-header {
    margin-bottom: 1.5rem;
}

.membership-why-header h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.8rem);
    line-height: 1.04;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.membership-divider {
    width: 80px;
    height: 5px;
    border-radius: 999px;
    background: var(--odtu-red);
    margin-top: 0.8rem;
}

.membership-subtitle {
    margin: 0.6rem 0 0;
    color: #475569;
    max-width: 66ch;
}

.membership-richtext {
    max-width: 900px;
    color: #334155;
}

.membership-richtext p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    line-height: 1.55;
    color: #475569;
}

.membership-why-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.why-step-card {
    border-radius: 24px;
    padding: 1.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.why-step-num {
    position: absolute;
    top: 0.8rem;
    left: 1rem;
    font-size: 2.5rem;
    font-weight: 900;
    opacity: 0.3;
    line-height: 1;
}

.why-step-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.why-step-card h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.membership-final-cta {
    margin-top: 2.5rem;
    border-radius: 28px;
    padding: 2.4rem;
    text-align: center;
    color: #fff;
}

.cta-red-block {
    background: var(--odtu-red);
}

.cta-orange-block {
    background: #f97316;
}

.membership-final-cta h3 {
    margin: 0 0 1rem;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    text-transform: uppercase;
}

.membership-final-cta p {
    margin: 0 0 1.2rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 60ch;
    margin-inline: auto;
}

/* ──────────────────────────────────────────────
   Contact Page Enhanced
   ────────────────────────────────────────────── */
.contact-hero-box {
    max-width: 680px;
}

.contact-hero-box h1 {
    margin: 0;
    font-size: clamp(2.6rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.02;
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.contact-hero-box p {
    margin: 1rem 0 0;
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #e2e8f0;
}

.contact-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
}

.contact-wave svg {
    display: block;
    width: 100%;
    height: 80px;
    fill: #fff;
}

.contact-grid-enhanced {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 2rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.contact-cards-grid {
    display: grid;
    gap: 1rem;
}

.contact-card-item {
    background: #0f172a;
    border-radius: 22px;
    padding: 1.4rem;
    color: #fff;
}

.contact-card-item h3 {
    margin: 0 0 1rem;
    font-size: 1.15rem;
}

.contact-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 0.8rem;
}

.contact-detail-icon {
    font-size: 1.3rem;
    flex: 0 0 auto;
}

.contact-detail-title {
    margin: 0;
    font-weight: 700;
    font-size: 0.92rem;
}

.contact-detail-title a {
    color: #e2e8f0;
}

.contact-detail-text {
    margin: 0.2rem 0 0;
    color: #94a3b8;
    font-size: 0.88rem;
}

.contact-card-social {
    background: #f8fafc;
    color: #0f172a;
}

.contact-card-social h3 {
    color: #0f172a;
}

.contact-social-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.contact-departments {
    margin-top: 1rem;
    display: grid;
    gap: 0.8rem;
}

.contact-dept-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1rem 1.2rem;
    border-left: 5px solid transparent;
    transition: box-shadow 0.2s ease;
}

.contact-dept-card:hover {
    box-shadow: 0 8px 24px -14px rgba(15, 23, 42, 0.3);
}

.contact-dept-blue { border-left-color: var(--odtu-blue); }
.contact-dept-red  { border-left-color: var(--odtu-red); }
.contact-dept-dark { border-left-color: #0f172a; }

.contact-dept-info h4 {
    margin: 0;
    font-size: 1rem;
}

.contact-dept-sub {
    margin: 0.2rem 0 0;
    font-size: 0.82rem;
    color: #64748b;
}

.contact-dept-email {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--odtu-blue);
    white-space: nowrap;
}

.contact-dept-email:hover {
    color: var(--odtu-red);
}

.contact-map-header {
    margin-bottom: 1rem;
}

.contact-map-header h3 {
    margin: 0;
    font-size: 1.3rem;
}

.text-blue { color: var(--odtu-blue); }
.text-red  { color: var(--odtu-red); }

.contact-map-divider {
    width: 60px;
    height: 4px;
    border-radius: 999px;
    background: var(--odtu-blue);
    margin-top: 0.5rem;
}

.contact-map-cta {
    margin-top: 1rem;
    text-align: center;
}

.contact-form-block {
    background: #f8fafc;
    padding: 3rem 0 3.5rem;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 1.8rem;
}

.contact-form-header h2 {
    margin: 0;
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.contact-form-header p {
    margin: 0.5rem 0 0;
    color: #64748b;
}

.contact-form-card {
    background: #fff;
    border-radius: 26px;
    padding: 2rem;
    border: 1px solid #e2e8f0;
    box-shadow: 0 14px 30px -22px rgba(15, 23, 42, 0.25);
}

/* ──────────────────────────────────────────────
   About Page Enhancements
   ────────────────────────────────────────────── */
.about-tab-icon {
    margin-right: 0.4rem;
    font-size: 1rem;
}

.about-quote-block {
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    border-left: 5px solid var(--odtu-red);
    background: #fef2f2;
    border-radius: 0 18px 18px 0;
}

.about-quote-block p {
    margin: 0;
    font-size: clamp(1.05rem, 2vw, 1.35rem);
    font-style: italic;
    font-weight: 700;
    color: #991b1b;
    line-height: 1.5;
}

.about-group-badge {
    position: absolute;
    bottom: 0.8rem;
    right: 0.8rem;
    background: var(--odtu-red);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.3s ease;
}

.about-group-media {
    position: relative;
}

.about-group-card:hover .about-group-badge {
    opacity: 1;
    transform: translateY(0);
}

.about-history-subtitle {
    margin: 2.2rem 0 0.5rem;
    font-size: 1.25rem;
    color: #f97316;
}

.about-history-media {
    position: relative;
}

.about-history-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(15, 23, 42, 0.82) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}

.about-history-media-overlay h4 {
    margin: 0;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.about-management-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.about-management-card:hover {
    box-shadow: 0 10px 28px -16px rgba(15, 23, 42, 0.35);
    transform: translateY(-2px);
}

.about-mgmt-icon {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-size: 1.5rem;
    background: #f1f5f9;
}

.about-mgmt-blue .about-mgmt-icon { background: #dbeafe; }
.about-mgmt-red .about-mgmt-icon  { background: #fee2e2; }
.about-mgmt-dark .about-mgmt-icon { background: #e2e8f0; }

.about-mgmt-content {
    flex: 1;
    min-width: 0;
}

.about-mgmt-arrow {
    flex: 0 0 auto;
    font-size: 1.8rem;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.about-management-card:hover .about-mgmt-arrow {
    color: var(--odtu-red);
}

.about-management-intro {
    margin-bottom: 1.5rem;
}

.about-management-intro h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.8rem);
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.about-management-intro p {
    margin: 0.5rem 0 0;
    color: #475569;
    max-width: 66ch;
}

.about-pagination {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.about-pag-btn {
    font-size: 0.72rem;
    padding: 0.8rem 1.2rem;
    border-radius: 999px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    color: #475569;
    cursor: pointer;
    transition: all 0.2s ease;
}

.about-pag-btn:hover {
    background: var(--odtu-red);
    color: #fff;
    border-color: var(--odtu-red);
}

.about-history-intro h2 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.8rem);
    text-transform: uppercase;
    letter-spacing: -0.03em;
}

.about-history-intro p {
    margin: 0.6rem 0 0;
    color: #475569;
    max-width: 66ch;
}

/* ──────────────────────────────────────────────
   Events Gallery
   ────────────────────────────────────────────── */
.events-gallery {
    padding: 3rem 0 4rem;
    background: #f8fafc;
}

.events-gallery-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.8rem;
}

.events-gallery-header h2 {
    margin: 0.5rem 0 0;
    font-size: clamp(1.8rem, 4vw, 3.2rem);
    letter-spacing: -0.03em;
    text-transform: uppercase;
    line-height: 1.08;
}

.events-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.events-gallery-item {
    margin: 0;
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: 28px;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 12px 30px -18px rgba(15, 23, 42, 0.3);
    transition: border-color 0.4s ease;
}

.events-gallery-item:hover {
    border-color: var(--odtu-red);
}

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

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

.events-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.events-gallery-item:hover .events-gallery-overlay {
    opacity: 1;
}

.events-gallery-zoom {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: #fff;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.events-gallery-item:hover .events-gallery-zoom {
    transform: scale(1);
}

/* ──────────────────────────────────────────────
   Responsive additions
   ────────────────────────────────────────────── */
@media (max-width: 1140px) {
    .membership-nav {
        top: 76px;
    }

    body.admin-bar .membership-nav {
        top: 122px;
    }
}

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

    .contact-grid-enhanced {
        grid-template-columns: 1fr;
    }

    .solidarity-item-inner {
        flex-direction: column;
        gap: 1rem;
    }

    .solidarity-icon-wrap {
        width: 70px;
        height: 70px;
        border-radius: 22px;
    }

    .membership-nav-btn {
        padding: 0.95rem 0.8rem;
        letter-spacing: 0.11em;
        font-size: 0.68rem;
    }

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

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

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.2rem;
    }

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

    .membership-why-steps {
        grid-template-columns: 1fr;
    }

    .contact-dept-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-pagination {
        flex-direction: column;
        gap: 0.6rem;
    }

    .about-pag-btn {
        width: 100%;
        text-align: center;
    }
}
