body {
    font-family: "Montserrat", sans-serif;
}

/* Logo */
.site-logo {
    max-height: 110px;
    width: auto;
}

/* Dil menüsü */
.language-menu {
    margin-bottom: 0;
}

/* Hero alanı */
.hero-area {
    position: relative;
    width: 100%;
}

/* Slider */
.hero-slider {
    width: 100%;
}

.hero-slider .swiper-slide {
    position: relative;
}

.hero-slider .swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(115, 21, 24, 0.61);
    z-index: 2;
    pointer-events: none;
}

.hero-slider .swiper-slide img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

/* Swiper okları ve pagination overlay'in üstünde kalsın */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev,
.hero-slider .swiper-pagination {
    z-index: 5;
}

/* Menü slider üstünde dursun */
.navbar-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 86px;
    z-index: 20;
    background: transparent;
}

/* Menü yazıları */
.navbar-overlay .nav-link {
    color: #fff;
    font-weight: 600;
}

.navbar-overlay .nav-link.active,
.navbar-overlay .nav-link:hover {
    color: #fff;
}

/* Mobil düzen */
@media (max-width: 991px) {
    .navbar > .container {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .navbar-brand {
        justify-self: start;
    }

    .navbar-toggler {
        justify-self: center;
        background-color: rgba(255, 255, 255, 0.85);
        border: none;
    }

    .language-menu {
        justify-self: end;
    }

    .navbar-collapse {
        grid-column: 1 / -1;
    }

    .navbar-nav .nav-link {
        text-align: center;
    }

    .navbar-overlay {
        background: transparent;
    }

    .navbar-overlay .navbar-collapse {
        background: #fff;
        padding: 15px;
        margin-top: 15px;
        border-radius: 14px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }

    .navbar-overlay .navbar-collapse .nav-link {
        color: #111;
    }

    .navbar-overlay .navbar-collapse .nav-link.active,
    .navbar-overlay .navbar-collapse .nav-link:hover {
        color: #731518;
    }

    .language-menu .nav-link {
        color: #fff;
    }

    .hero-slider .swiper-slide img {
        height: 420px;
    }
}

/* Küçük mobil */
@media (max-width: 575px) {
    .site-logo {
        max-height: 48px;
    }

    .hero-slider .swiper-slide img {
        height: 320px;
    }
}
/* Slider yazı alanları */
.hero-slider .swiper-slide {
    position: relative;
    overflow: hidden;
}

/* Üst başlık */
.ustMetin {
    position: absolute;
    left: 20%;
    top: 38%;
    z-index: 4;
    color: #fff;
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1px;
}

/* Alt büyük başlık */
.altMetin {
    position: absolute;
    left: 20%;
    top: 49%;
    z-index: 4;
    color: #fff;
    font-size: clamp(47px, 7vw, 74px);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: 1px;
}

/* Bilet butonu */
.bilet {
    position: absolute;
    left: 20%;
    top: 72%;
    z-index: 4;
    width: 145px;
    height: 52px;
    background: #fff;
    color: #731518;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.3px;
    transition: all 0.25s ease;
}

.bilet:hover {
    background: #000;
    color: #fff;
}

/* Yazılar overlay renginin üstünde kalsın */
.hero-slider .swiper-slide::before {
    z-index: 2;
}

.hero-slider .swiper-slide img {
    z-index: 1;
}
@media (max-width: 575px) {
    .bilet {
        left: 50%;
        top: 74%;
        transform: translateX(-50%);
        width: 130px;
        height: 46px;
        font-size: 13px;
    }
}

/* Etkinlik tarihi ve geri sayım alanı */
.event-countdown-section {
    position: relative;
    z-index: 10;
    background: #fff;
    padding: 0 0 32px;
}

.event-date-card {
    background: #fff;
    text-align: center;
    padding: 32px 30px 24px;
    margin-top: -40px;
    position: relative;
    z-index: 11;
}

.event-date-card h2 {
    color: #731518;
    font-size: clamp(30px, 4vw, 42px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
}

.event-date-card p {
    color: #731518;
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0;
}

.countdown-area {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: center;
    padding-top: 42px;
}

.countdown-item {
    text-align: center;
    color: #731518;
}

.countdown-item strong {
    display: block;
    font-size: clamp(34px, 4vw, 42px);
    font-weight: 700;
    line-height: 1;
}

.countdown-item span {
    display: block;
    font-size: 18px;
    font-weight: 500;
    margin-top: 4px;
}

/* Tablet */
@media (max-width: 991px) {
    .event-countdown-section {
        padding-bottom: 36px;
    }

    .event-date-card {
        margin-top: -32px;
        padding: 28px 20px 18px;
    }

    .countdown-area {
        padding-top: 24px;
        max-width: 520px;
        margin: 0 auto;
    }
}

/* Mobil */
@media (max-width: 575px) {
    .event-date-card {
        margin-top: -24px;
        padding: 24px 15px 16px;
    }

    .event-date-card h2 {
        font-size: 40px;
        margin-bottom: 12px;
    }

    .event-date-card p {
        font-size: 31px;
    }

    .countdown-area { 
        gap: 22px 12px;
        padding-top: 26px;
    }

    .countdown-item strong {
        font-size: 36px;
    }

    .countdown-item span {
        font-size: 16px;
    }
}
/* C-Summit açıklama ve video alanı */
.about-video-section {
    background-color: #f9fafc;
    padding: 100px 0;
}
.about-video-container {
    max-width: 1400px;
}

/* Sol yazı videonun dikey ortasında dursun */
.about-video-section .row {
    align-items: center;
}
 

.about-text p {
    color: #000;
    font-size: 17px;
    line-height: 1.55;
    font-weight: 400;
    margin-bottom: 26px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-text strong {
    font-weight: 800;
}
/* Sağ video - YouTube görsel kart */
.youtube-video-box {
    position: relative;
    width: 100%;
    height: 500px;
    background: #731518;
    overflow: hidden;
    cursor: pointer;
}

.youtube-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Görsel biraz koyu/kırmızı dursun */
.youtube-video-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(115, 21, 24, 0.12);
    z-index: 2;
    pointer-events: none;
}

/* Orta play butonu */
.youtube-play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    width: 74px;
    height: 52px;
    background: #ff0000;
    border-radius: 14px;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.youtube-play-button span {
    width: 0;
    height: 0;
    border-left: 18px solid #fff;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    margin-left: 4px;
}

/* Üst başlık */
.youtube-top-title {
    position: absolute;
    left: 34px;
    top: 20px;
    z-index: 4;
    color: #fff;
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.youtube-top-title strong {
    font-size: 20px;
    font-weight: 900;
}

.youtube-top-title small {
    font-size: 13px;
    font-weight: 600;
}

/* Sağ alt YouTube etiketi */
.youtube-watch-badge {
    position: absolute;
    right: 24px;
    bottom: 24px;
    z-index: 4;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.25);
    padding: 10px 18px;
    border-radius: 18px;
}

/* Tıklanınca açılan iframe */
.youtube-video-box iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* Daha küçük masaüstü */
@media (max-width: 1199px) {
    .youtube-video-box {
        height: 430px;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .youtube-video-box {
        height: 380px;
    }
}

/* Mobil */
@media (max-width: 575px) {
    .youtube-video-box {
        height: 240px;
    }

    .youtube-top-title {
        left: 18px;
        top: 14px;
    }

    .youtube-top-title strong {
        font-size: 15px;
    }

    .youtube-top-title small {
        font-size: 11px;
    }

    .youtube-play-button {
        width: 60px;
        height: 42px;
        border-radius: 11px;
    }

    .youtube-play-button span {
        border-left-width: 15px;
        border-top-width: 10px;
        border-bottom-width: 10px;
    }

    .youtube-watch-badge {
        right: 14px;
        bottom: 14px;
        font-size: 12px;
        padding: 8px 12px;
    }
}

/* Sponsor / Bilet hızlı buton alanı */
.quick-action-section {
    background: #fff;
    padding: 40px 0;
}
 

.quick-action-btn {
    width: 100%;
    height: 58px;
    background: #731518;
    color: #fff;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.2px;
}

/* Mouse üstüne gelince renk değişmesin */
.quick-action-btn:hover,
.quick-action-btn:focus,
.quick-action-btn:active {
    background: #731518;
    color: #fff;
    text-decoration: none;
}

/* Mobil */
@media (max-width: 575px) {
    .quick-action-section {
        padding: 40px 0 70px;
    }

    .quick-action-btn {
        height: 54px;
        font-size: 14px;
        text-align: center;
        padding: 0 14px;
    }
}

/* İletişim / Harita alanı */
.contact-map-section {
    background: #fff;
    padding: 40px 0;
}
 

/* Sol alan */
.contact-tabs-wrapper {
    width: 100%;
    padding-top: 0;
}

/* Tab butonları */
.contact-tabs {
    display: flex;
    align-items: center;
    border: 0;
    margin-bottom: 20px;
}

.contact-tabs .nav-item {
    margin: 0;
}

.contact-tabs .nav-link {
    height: 50px;
    min-width: 96px;
    padding: 0 20px;
    border: 1px solid #d7d7d7;
    border-radius: 0;
    background: #fff;
    color: #731518;
    font-size: 16px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-tabs .nav-link.active {
    background: #731518;
    color: #fff;
    border-color: #731518;
}

/* Hover renk değiştirmesin */
.contact-tabs .nav-link:hover,
.contact-tabs .nav-link:focus {
    color: #731518;
    background: #fff;
    border-color: #d7d7d7;
}

.contact-tabs .nav-link.active:hover,
.contact-tabs .nav-link.active:focus {
    background: #731518;
    color: #fff;
    border-color: #731518;
}

/* Tab içerik kutusu */
.contact-tab-content {
    width: 100%;
}

.contact-info-box {
    width: 100%;
    max-width: 460px;
    min-height: 92px;
    background: #731518;
    color: #fff;
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-box a,
.contact-info-box p {
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.75;
    margin: 0;
    text-decoration: none;
}

.contact-info-box a:hover {
    color: #fff;
    text-decoration: none;
}

/* Sağ harita */
.contact-map-box {
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: #f2f2f2;
}

.contact-map-box iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* Tablet */
@media (max-width: 991px) {
    .contact-map-section {
        padding: 40px 0 60px;
    }

    .contact-info-box {
        max-width: 100%;
    }

    .contact-map-box {
        height: 420px;
    }
}

/* Mobil */
@media (max-width: 575px) {
    .contact-tabs {
        width: 100%;
    }

    .contact-tabs .nav-item {
        flex: 1;
    }

    .contact-tabs .nav-link {
        width: 100%;
        min-width: auto;
        padding: 0 8px;
        font-size: 14px;
    }

    .contact-info-box {
        min-height: 100px;
        padding: 20px 18px;
    }

    .contact-info-box a,
    .contact-info-box p {
        font-size: 16px;
    }

    .contact-map-box {
        height: 330px;
    }
}

/* Footer */
.site-footer {
    background: #000;
    color: #fff;
}

/* Üst footer */
.footer-top {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.65);
}

.footer-top-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.footer-logo img {
    width: 300px;
    max-width: 100%;
    height: auto;
    display: block;
}

/* Sosyal medya */
.footer-social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border: 1px solid #fff;
    border-radius: 50%;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.footer-social a:hover,
.footer-social a:focus,
.footer-social a:active {
    color: #fff;
    border-color: #fff;
    background: transparent;
    text-decoration: none;
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Alt footer - tam genişlik */
.footer-bottom {
    padding: 10px 0;
}

.footer-bottom-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-left: 16px;
    padding-right: 16px;
}

.footer-copy,
.footer-policy {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.footer-copy {
    text-align: left;
}

.footer-policy {
    text-align: right;
}

.footer-policy a {
    color: #fff;
    text-decoration: none;
}

.footer-policy a:hover,
.footer-policy a:focus,
.footer-policy a:active {
    color: #fff;
    text-decoration: none;
}

/* Tablet */
@media (max-width: 991px) {
    .footer-top {
        padding: 44px 0 36px;
    }

    .footer-top-container {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-logo img {
        width: 260px;
    }

    .footer-bottom-container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 12px;
    }

    .footer-copy,
    .footer-policy {
        text-align: center;
        font-size: 15px;
    }
}

/* Mobil */
@media (max-width: 575px) {
    .footer-logo img {
        width: 230px;
    }

    .footer-social a {
        width: 38px;
        height: 38px;
    }

    .footer-bottom {
        padding: 24px 0;
    }

    .footer-copy,
    .footer-policy {
        font-size: 14px;
        line-height: 1.5;
    }
}
/* Slider ileri / geri butonları */
.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: #fff;
    width: 34px;
    height: 34px;
    z-index: 6;
}

/* Ok ikonunu küçültür */
.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 24px;
    font-weight: 600;
}

/* Mobilde biraz daha küçük */
@media (max-width: 575px) {
    .hero-slider .swiper-button-next,
    .hero-slider .swiper-button-prev {
        width: 28px;
        height: 28px;
    }

    .hero-slider .swiper-button-next::after,
    .hero-slider .swiper-button-prev::after {
        font-size: 18px;
    }
}

/* İLETİŞİM */

    .contact-page {
        background: #ffffff;
        color: #731518;
        overflow: hidden;
    }

    .contact-hero {
        min-height: 380px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        position: relative;
        isolation: isolate;
    }

    .contact-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: -1;
        background:
            radial-gradient(circle at 20% 20%, rgba(255,255,255,.20) 0 2px, transparent 3px),
            radial-gradient(circle at 80% 15%, rgba(255,255,255,.16) 0 2px, transparent 3px),
            radial-gradient(circle at 60% 70%, rgba(255,255,255,.12) 0 2px, transparent 3px);
        opacity: .75;
    }

.contact-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(44px, 6vw, 64px);
    line-height: 1;
    font-weight: 800;
    letter-spacing: .01em;
    text-transform: uppercase;
    margin-top: 100px;
}

    .contact-info-section {
        padding: 100px 0 95px;
    }

    .contact-section-title {
        margin-bottom: 80px;
        text-align: center;
    }

    .contact-section-title h2 {
        margin: 0;
        color: #731518;
        font-size: clamp(30px, 3vw, 42px);
        line-height: 1.15;
        font-weight: 800;
    }

    .contact-card {
        min-height: 290px;
        height: 100%;
        position: relative;
        overflow: hidden;
        padding: 38px 40px;
        border: 1px solid rgba(125, 21, 26, .12);
        background: #ffffff;
        transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .contact-card:hover {
        transform: translateY(-6px);
        border-color: rgba(125, 21, 26, .22);
        box-shadow: 0 22px 45px rgba(125, 21, 26, .10);
    }

    .contact-card h3 {
        margin: 0 0 22px;
        color: #731518;
        font-size: 28px;
        line-height: 1.2;
        font-weight: 800;
    }

    .contact-card p,
    .contact-card a {
        margin: 0;
        color: #731518;
        font-size: 16px;
        line-height: 1.62;
        font-weight: 500;
        text-decoration: none;
    }

    .contact-card a:hover {
        color: #731518;
    }

    .contact-icon {
        width: 86px;
        height: 86px;
        position: absolute;
        right: -1px;
        bottom: -1px;
        display: flex;
        align-items: flex-end;
        justify-content: flex-end;
        padding: 0 19px 18px 0;
        border-radius: 86px 0 0 0;
        background: #731518;
        color: #ffffff;
    }

    .contact-icon svg {
        width: 26px;
        height: 26px;
        fill: currentColor;
    }

    .contact-map {
        height: 290px;
        overflow: hidden;
        border: 1px solid rgba(125, 21, 26, .12);
        background: #f8f8f8;
    }

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

    @media (max-width: 991.98px) {
        .contact-info-section {
            padding: 75px 0;
        }

        .contact-section-title {
            margin-bottom: 45px;
        }

        .contact-card {
            min-height: 245px;
        }
    }

    @media (max-width: 575.98px) {
        .contact-hero {
            min-height: 270px;
        }

        .contact-info-section {
            padding: 58px 0 65px;
        }

        .contact-card {
            padding: 30px 28px;
        }
    }
    /* İLETİŞİM */
    /* ================================
   Bilet Al Sayfası
================================ */

.ticket-page {
    background: #f4f4f4;
    color: #000000;
}

.ticket-hero {
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(93, 15, 18, .78), rgba(120, 17, 22, .58)),
        url("../img/iletisim-hero.jpg") center center / cover no-repeat;
}

.ticket-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(46px, 6vw, 64px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.ticket-pricing-section {
    padding: 24px 0 0;
}

.ticket-discount-title {
    margin-bottom: 32px;
    color: #731518;
    text-align: center;
    font-size: clamp(24px, 3vw, 35px);
    line-height: 1.25;
    font-weight: 700;
}

.ticket-price-card {
    min-height: 140px;
    padding: 10px 20px 20px;
    border-radius: 11px;
    background: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.ticket-price-card h2 {
    margin: 0 0 10px;
    color: #000000;
    font-size: clamp(21px, 2vw, 24px);
    line-height: 1;
    font-weight: 800;
}

.ticket-price-values {
    display: inline-block;
    text-align: left;
}
.ticket-old-price {
    color: #731518;
    font-size: clamp(20px, 2vw, 23px);
    line-height: 1.05;
    font-weight: 800;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
    float: left;
    text-align: left;
    di,: p;
}

.ticket-new-price {
    color: #731518;
    font-size: clamp(21px, 2vw, 24px);
    line-height: 1.08;
    font-weight: 900;
}

.ticket-note {
    margin-top: 20px;
    text-align: center;
}

.ticket-note p {
    margin: 0 0 5px;
    color: #000000;
    font-size: 15px;
    line-height: 1.25;
    font-weight: 800;
    font-style: italic;
}

.ticket-button-wrap {
    margin-top: 22px;
    text-align: center;
}

.ticket-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 132px;
    min-height: 48px;
    padding: 12px 28px;
    border: 3px solid #ffffff;
    background: #731518;
    color: #ffffff;
    font-size: 15px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
}

.ticket-button:hover {
    background: #000;
    color: #ffffff;
}

.ticket-advantages {
    margin-top: 18px;
    margin-bottom: 8px;
    padding: 26px 24px 28px;
    background: #731518;
    color: #ffffff;
}

.ticket-advantages h3 {
    margin: 0 0 18px;
    color: #ffffff;
    font-size: clamp(24px, 3vw, 28px);
    line-height: 1.2;
    font-weight: 900;
}

.ticket-advantages ul {
    margin: 0;
    padding-left: 28px;
}

.ticket-advantages li {
    color: #ffffff;
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.28;
    font-weight: 400;
}

@media (max-width: 991.98px) {
    .ticket-hero {
        min-height: 220px;
    }

    .ticket-pricing-section {
        padding-top: 28px;
    }

    .ticket-discount-title {
        margin-bottom: 26px;
    }

    .ticket-price-card {
        min-height: 135px;
    }
}

@media (max-width: 767.98px) {
    .ticket-hero {
        min-height: 190px;
    }

    .ticket-price-card {
        min-height: 130px;
    }

    .ticket-advantages {
        padding: 24px 20px;
    }
}

@media (max-width: 575.98px) {
    .ticket-hero {
        min-height: 170px;
    }

    .ticket-hero h1 {
        font-size: 42px;
    }

    .ticket-discount-title {
        font-size: 23px;
    }

    .ticket-note p {
        font-size: 14px;
    }
}
.standard-page {
    background: #ffffff;
    color: #222222;
}

.standard-hero {
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #850f14;
}

.standard-hero h1 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(42px, 6vw, 68px);
    font-weight: 900;
    text-transform: uppercase;
}

.standard-content-section {
    padding: 70px 0;
}

.standard-content-section p {
    font-size: 17px;
    line-height: 1.7;
}

.program-page {
    background: #ffffff;
    overflow-x: hidden;
}

.program-hero {
    min-height: 330px;
    display: flex;
    align-items: center;
    position: relative;
}

.program-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .42);
}

.program-hero .container {
    position: relative;
    z-index: 2;
}

.program-hero h1 {
    color: #fff;
    font-size: clamp(34px, 5vw, 68px);
    font-weight: 700;
    margin: 0;
}

.program-section {
    padding: 70px 0;
}

.current-program-wrapper {
    margin-bottom: 70px;
}

.program-detail-heading {
    text-align: center;
    margin-bottom: 24px;
}

.program-detail-heading h2 {
    color: #731518;
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 800;
    letter-spacing: 1px;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.program-detail-heading p {
    color: #731518;
    font-size: clamp(20px, 2.3vw, 32px);
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.past-programs-banner {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 70px;
    margin-bottom: 52px;
    padding: 40px 20px;
    background-position: center;
    background-repeat: repeat;
    background-size: inherit;
}

.past-programs-banner-inner {
    max-width: 1320px;
    margin: 0 auto;
    text-align: center;
}

.past-programs-banner h2 {
    color: #fff;
    font-size: clamp(34px, 4vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
}

.program-accordion {
    max-width: 100%;
}

.program-year-item {
    margin-bottom: 6px;
}

.program-year-button {
    width: 100%;
    min-height: 56px;
    border: 0;
    background: #731518;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 16px 22px;
    font-size: 18px;
    font-weight: 500;
    text-align: left;
    transition: background .2s ease;
}

.program-year-button:hover {
    background: #731015;
}

.program-year-button:focus {
    outline: none;
    box-shadow: none;
}

.program-year-icon {
    width: 14px;
    height: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 14px;
    position: relative;
}

.program-year-icon::before {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid #fff;
    transition: transform .2s ease;
}

.program-year-button:not(.collapsed) .program-year-icon::before {
    transform: rotate(180deg);
}

.program-year-content {
    background: #fff;
    border: none;
    border-top: 0;
    padding: 28px 0;
}

.program-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background: #fff;
}

.program-table th {
    background: #731518;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 16px;
    border: 1px solid #731518;
}

.program-table td {
    color: #333;
    font-size: 15px;
    line-height: 1.6;
    padding: 18px 18px;
    border: 1px solid #731518;
}

.program-table tbody tr:nth-child(odd) td {
    background: #f7f7f7;
}

.program-table tbody tr:nth-child(even) td {
    background: #731518;
    color: #FFF;
    border-right: 1px solid;
}

.program-time {
    width: 170px;
    min-width: 170px;
    white-space: nowrap;
    vertical-align: middle !important;
    font-weight: 700;
    color: #222;
}

.program-event {
    vertical-align: top;
    /* border-right: 1px solid #731518; */
}

.program-title {
    display: block;
    font-weight: 700;
    margin-bottom: 6px;
}

.program-description p {
    margin-bottom: 8px;
}

.program-description p:last-child {
    margin-bottom: 0;
}

.program-description ul {
    margin: 8px 0 0 20px;
    padding: 0;
}

.program-description li {
    margin-bottom: 4px;
}

.program-empty {
    padding: 28px;
    background: #f8f8f8;
    border: 1px solid #eee;
    color: #555;
    text-align: center;
    font-size: 18px;
}

.program-soon {
    color: #731518 !important;
    font-weight: 700;
    font-size: 18px;
    padding: 18px !important;
    background: #fff !important;
    text-align: left;
}

@media (max-width: 767px) {
    .program-section {
        padding: 45px 0;
    }

    .current-program-wrapper {
        margin-bottom: 45px;
    }

    .past-programs-banner {
        padding: 34px 16px;
        margin-bottom: 35px;
    }

    .program-year-button {
        font-size: 15px;
        padding: 14px 16px;
        gap: 14px;
    }

    .program-year-content {
        padding: 14px;
    }

    .program-table thead {
        display: none;
    }

    .program-table,
    .program-table tbody,
    .program-table tr,
    .program-table td {
        display: block;
        width: 100%;
    }

    .program-table tr {
        border: 1px solid #dddddd;
        margin-bottom: 14px;
    }

    .program-table td {
        border: 0;
    }

    .program-table tbody tr:nth-child(odd) td {
        background: #f7f7f7;
    }

    .program-table tbody tr:nth-child(even) td {
        background: #ececec;
    }

    .program-time {
        width: 100%;
        min-width: 100%;
        padding-bottom: 10px;
        vertical-align: middle !important;
    }

    .program-event {
        padding-top: 10px;
    }
}
/* =========================================================
   EN ETKİN 50 SAYFASI
========================================================= */

.effective50-page {
    overflow: hidden;
    background: #ffffff;
    color: #262626;
}

.effective50-hero {
    min-height: 356px;
    position: relative;
    isolation: isolate;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    text-align: center;
}

.effective50-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(72, 8, 11, 0.52);
}

.effective50-hero .container {
    position: relative;
    z-index: 2;
}

.effective50-hero h1 {
    margin: 92px 0 0;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 64px);
    line-height: 1;
    font-weight: 900;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

/* Sayfalar tablosundaki icerik alanı */
.effective50-content-section {
    padding: 20px 0 60px;
}

.effective50-content {
    max-width: 1180px;
    margin: 0 auto;
    color: #292929;
    font-size: 16px;
    line-height: 1.65;
}

.effective50-content h2 {
    margin: 0 0 34px;
    color: #731518;
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.2;
    font-weight: 800;
    text-align: center;
}

.effective50-content h2:not(:first-child) {
    margin-top: 52px;
}

.effective50-content h3 {
    margin: 42px 0 22px;
    color: #731518;
    font-size: clamp(24px, 2.5vw, 32px);
    line-height: 1.25;
    font-weight: 800;
}

.effective50-content p {
    margin: 0 0 20px;
}

.effective50-content ul,
.effective50-content ol {
    margin: 0 0 24px;
    padding-left: 22px;
}

.effective50-content li {
    margin-bottom: 6px;
}

.effective50-content li:last-child {
    margin-bottom: 0;
}

.effective50-content a {
    color: #731518;
    font-weight: 600;
}

/* Danışma kurulu */
.effective50-board-section {
    padding: 10px 24px 90px;
}

.effective50-board-section > .container-fluid {
    max-width: 1680px;
}

.effective50-section-title {
    margin-bottom: 48px;
    text-align: center;
}

.effective50-section-title h2 {
    margin: 0;
    color: #731518;
    font-size: clamp(31px, 3vw, 40px);
    line-height: 1.2;
    font-weight: 800;
}

.effective50-member {
    height: 100%;
    text-align: center;
}

.effective50-member-photo {
    width: min(100%, 310px);
    aspect-ratio: 1 / 1;
    margin: 0 auto 24px;
    overflow: hidden;
    border-radius: 50%; 
}

.effective50-member-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center top;
}

.effective50-member-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 30% 30%,
            rgba(255, 255, 255, 0.12),
            transparent 45%
        ),
        #731518;
    font-size: clamp(60px, 7vw, 100px);
    font-weight: 800;
}

.effective50-member h3 {
    margin: 0 0 4px;
    color: #111111;
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.3;
    font-weight: 800;
}

.effective50-member p {
    margin: 0;
    color: #222222;
    font-size: 16px;
    line-height: 1.45;
}

.effective50-member-company {
    font-weight: 700;
}

.effective50-member-position {
    margin-top: 2px !important;
    font-weight: 400;
}

.effective50-empty {
    max-width: 850px;
    margin: 0 auto;
    padding: 28px;
    background: #f7f7f7;
    color: #555555;
    text-align: center;
}

/* Tablet */
@media (max-width: 991.98px) {
    .effective50-hero {
        min-height: 320px;
    }

    .effective50-content-section {
        padding: 55px 0 35px;
    }

    .effective50-board-section {
        padding: 30px 18px 75px;
    }

    .effective50-member-photo {
        width: min(100%, 280px);
    }
}

/* Mobil */
@media (max-width: 575.98px) {
    .effective50-hero {
        min-height: 270px;
    }

    .effective50-hero h1 {
        margin-top: 72px;
        font-size: 40px;
    }

    .effective50-content-section {
        padding: 42px 0 20px;
    }

    .effective50-content {
        font-size: 15px;
        line-height: 1.65;
    }

    .effective50-content h2 {
        margin-bottom: 24px;
    }

    .effective50-content h2:not(:first-child) {
        margin-top: 40px;
    }

    .effective50-board-section {
        padding: 34px 12px 60px;
    }

    .effective50-section-title {
        margin-bottom: 34px;
    }

    .effective50-member-photo {
        width: min(100%, 260px);
        margin-bottom: 20px;
    }
}

.effective50-pdf-section {
    padding: 50px 0 52px;
    background: #731518;
    color: #ffffff;
}

.effective50-pdf-section .container {
    max-width: 1320px;
}

.effective50-pdf-heading {
    margin-bottom: 42px;
    text-align: center;
}

.effective50-pdf-heading h2 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(30px, 3.3vw, 40px);
    line-height: 1.2;
    font-weight: 900;
}

.effective50-pdf-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    text-align: center;
}

.effective50-pdf-card h3 {
    margin: 0;
    color: #ffffff;
    font-size: clamp(17px, 1.5vw, 20px);
    line-height: 1.35;
    font-weight: 800;
}

.effective50-pdf-button {
    min-width: 118px;
    min-height: 48px;
    padding: 12px 24px;
    border: 2px solid #ffffff;
    border-radius: 4px;
    background: #ffffff;
    color: #731518;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 800;
    text-decoration: none;
    transition:
        background-color .2s ease,
        color .2s ease;
}

.effective50-pdf-button:hover,
.effective50-pdf-button:focus,
.effective50-pdf-button:active {
    border-color: #ffffff;
    background: #ffffff;
    color: #731518;
    text-decoration: none;
}

@media (max-width: 991.98px) {
    .effective50-pdf-section {
        padding: 48px 0 55px;
    }

    .effective50-pdf-heading {
        margin-bottom: 36px;
    }

    .effective50-pdf-card {
        min-height: 125px;
    }
}

@media (max-width: 575.98px) {
    .effective50-pdf-section {
        padding: 42px 0 48px;
    }

    .effective50-pdf-heading {
        margin-bottom: 32px;
    }

    .effective50-pdf-card {
        min-height: auto;
        gap: 20px;
        padding: 4px 0 14px;
    }

    .effective50-pdf-card h3 {
        font-size: 18px;
    }

    .effective50-pdf-button {
        min-width: 120px;
    }
}
/* KONUŞMACILAR */


        .speakers-page {
            background: #ffffff;
            overflow-x: hidden;
        }

        .speakers-section {
            padding: 70px 0;
            background: #ffffff;
        }

        .current-speakers-wrapper {
            margin-bottom: 70px;
        }

        .speaker-current-heading {
            max-width: 1050px;
            margin: 0 auto 48px;
            text-align: center;
        }

        .speaker-current-heading h2 {
            margin: 0;
            color: #731518;
            font-size: clamp(30px, 4vw, 44px);
            line-height: 1.2;
            font-weight: 800;
            text-transform: uppercase;
        }

        .speaker-year-description {
            max-width: 1050px;
            margin: 26px auto 0;
            color: #731518;
            font-size: clamp(20px, 2.2vw, 30px);
            line-height: 1.55;
            font-weight: 500;
            text-align: left;
        }

        .past-speakers-banner {
            width: 100vw;
            margin: 70px calc(50% - 50vw) 52px;
            padding: 40px 20px;
            background-position: center;
            background-repeat: repeat;
            background-size: inherit;
        }

        .past-speakers-banner-inner {
            max-width: 1320px;
            margin: 0 auto;
            text-align: center;
        }

        .past-speakers-banner h2 {
            margin: 0;
            color: #ffffff;
            font-size: clamp(32px, 4vw, 38px);
            line-height: 1.2;
            font-weight: 800;
        }

        .speakers-page .program-year-content {
            padding: 46px 30px 52px;
        }

        .speakers-row {
            --bs-gutter-x: 2.5rem;
            --bs-gutter-y: 4rem;
        }

        .effective50-member.speaker-member {
            min-width: 0;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            color: #111111;
            text-align: center;
        }

        .effective50-member-photo {
            width: min(100%, 212px);
            aspect-ratio: 1 / 1;
            margin: 0 auto 24px;
            overflow: hidden;
            border-radius: 50%;
            background: #731518;
        }

        .effective50-member-photo img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
            object-position: center top;
        }

        .effective50-member-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, #731518, #3f080a);
            color: #ffffff;
            font-size: 72px;
            line-height: 1;
            font-weight: 800;
        }

        .effective50-member.speaker-member h3 {
            margin: 0 0 8px;
            color: #050505;
            font-size: clamp(22px, 2vw, 27px);
            line-height: 1.22;
            font-weight: 800;
            overflow-wrap: anywhere;
        }

        .effective50-member-company {
            margin: 0 0 3px;
            color: #090909;
            font-size: 17px;
            line-height: 1.45;
            font-weight: 800;
            overflow-wrap: anywhere;
        }

        .effective50-member-position {
            max-width: 310px;
            margin: 0;
            color: #242424;
            font-size: 17px;
            line-height: 1.8;
            font-weight: 400;
            overflow-wrap: anywhere;
        }

        .speaker-linkedin-wrapper {
            margin-top: auto;
            padding-top: 22px;
        }

        .speaker-linkedin-link {
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 3px;
            background: #731518;
            color: #ffffff;
            text-decoration: none;
            transition: transform .2s ease, background-color .2s ease;
        }

        .speaker-linkedin-link svg {
            width: 27px;
            height: 27px;
            display: block;
            fill: currentColor;
        }

        .speaker-linkedin-link:hover,
        .speaker-linkedin-link:focus {
            background: #5c1013;
            color: #ffffff;
            transform: translateY(-2px);
        }

        .speaker-linkedin-link:focus-visible {
            outline: 3px solid rgba(115, 21, 24, .28);
            outline-offset: 4px;
        }

        .speakers-empty {
            padding: 28px;
            background: #f8f8f8;
            border: 1px solid #eeeeee;
            color: #555555;
            text-align: center;
        }

        @media (max-width: 1199.98px) {
            .effective50-member-photo {
                width: min(100%, 205px);
            }
        }

        @media (max-width: 767.98px) {
            .speakers-section {
                padding: 45px 0;
            }

            .current-speakers-wrapper {
                margin-bottom: 45px;
            }

            .speaker-current-heading {
                margin-bottom: 34px;
            }

            .past-speakers-banner {
                margin-top: 45px;
                margin-bottom: 35px;
                padding: 34px 16px;
            }

            .speakers-page .program-year-content {
                padding: 34px 16px 40px;
            }

            .speakers-row {
                --bs-gutter-x: 1.25rem;
                --bs-gutter-y: 3rem;
            }

            .effective50-member-photo {
                width: min(100%, 190px);
                margin-bottom: 20px;
            }

            .effective50-member.speaker-member h3 {
                font-size: 22px;
            }

            .effective50-member-company,
            .effective50-member-position {
                font-size: 16px;
            }
        }

        @media (max-width: 575.98px) {
            .effective50-member-photo {
                width: 210px;
                max-width: 78vw;
            }
        }

    