.partners-area {
    background-color: #f3f5f7;
    padding: 60px 0;
}

.partners-area .partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.partners-area .partners-grid>[class*="col-"] {
    float: none;
    flex: 0 1 240px;
    max-width: 260px;
    width: 100%;
}

.partners-area .partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 25px;
    width: 100%;
}

.partners-area .partner-logo img {
    max-height: var(--logo-height, 90px);
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    transition: transform 0.2s;
}

.partners-area .partner-logo img:hover {
    transform: scale(1.03);
}

.partners-area .cols-gutter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
}

.hero-video-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 38px;
    color: #ffffff;
    background-color: #2ec1ba;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}

.hero-video-cta__btn:hover,
.hero-video-cta__btn:focus {
    background-color: #28a99f;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
    transform: translateY(-1px);
    color: #ffffff;
}

.hero-video-cta {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.hero-title {
    font-size: 42px;
}

.about-visual:not(.about-visual--video) {
    aspect-ratio: auto;
    max-width: 324px;
    overflow: visible;
}

.about-visual:not(.about-visual--video) .about-visual__image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 18px 32px rgba(0, 0, 0, 0.16);
}

.hero-audio-toggle {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.hero-audio-toggle__icon {
    font-size: 15px;
    line-height: 1;
}

.hero-audio-toggle:hover,
.hero-audio-toggle:focus {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    outline: none;
}

.hero-audio-toggle:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.45);
}

.about-visual--video .about-video {
    position: relative;
    display: block;
    height: 100%;
    color: #ffffff;
    text-decoration: none;
}

.about-video__thumb {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-video__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.35) 100%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.about-video__play {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    display: grid;
    place-items: center;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

.about-video__play:before {
    content: "";
    margin-left: 4px;
    border-style: solid;
    border-width: 12px 0 12px 18px;
    border-color: transparent transparent transparent #ffffff;
}

.about-video__cta {
    background: rgba(0, 0, 0, 0.45);
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-video:hover .about-video__overlay,
.about-video:focus-visible .about-video__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 0%, rgba(0, 0, 0, 0.48) 100%);
}

.mean-container .mean-bar .logo {
    display: none;
}

.about-content__signature {
    margin-top: 28px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #1d2c3b;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .partners-area .partners-grid {
        gap: 24px;
    }

    .partners-area .partners-grid>[class*="col-"] {
        flex: 0 1 45%;
        max-width: 45%;
    }

    .partners-area .partner-logo img {
        max-height: calc(var(--logo-height, 90px) * 0.8);
    }

    .partners-area .cols-gutter {
        gap: 30px;
    }
}

@media (max-width: 767px) {
    .partners-area .partner-logo img {
        max-height: calc(var(--logo-height, 90px) * 0.65);
    }

    .partners-area .partners-grid {
        flex-direction: row;
        justify-content: center;
        gap: 18px;
    }

    .partners-area .partners-grid>[class*="col-"] {
        flex: 0 1 calc(50% - 12px);
        max-width: 180px;
        display: flex;
        justify-content: center;
    }

    .partners-area .partner-logo {
        padding: 6px 10px;
    }

    /* Header yüksekliğini telafi etmek için hero bloğunu aşağı indir */
    .welcome-area {
        padding-top: 150px;
        padding-bottom: 120px;
        min-height: calc(100vh - 60px);
        height: auto;
        overflow: visible;
    }
}

@media (min-width: 992px) and (max-width: 1200px) {
    .hero-title {
        font-size: 46px;
    }
}

@media (max-width: 991px) {
    .hero-intro {
        padding-top: 40px;
        padding-bottom: 30px;
    }

    .hero-title {
        font-size: 41px;
        letter-spacing: 0.04em;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-countdown {
        justify-content: center;
    }

    .hero-countdown__timer {
        display: grid;
        grid-template-columns: repeat(2, minmax(150px, 1fr));
        gap: 16px;
        width: 100%;
    }

    .bg-1,
    .bg-2,
    .bg-3,
    .bg-4 {
        background-attachment: scroll;
        background-position: center top;
        background-size: cover;
    }

    .welcome-area {
        height: auto;
        min-height: 620px;
        padding-top: 120px;
        padding-bottom: 100px;
        overflow: visible;
    }
}

.hero-countdown {
    margin-bottom: 40px;
}

/*----------------------------------------
  Mobile layout refinements
-----------------------------------------*/
@media (max-width: 767px) {
    .ptb-80 {
        padding-top: 48px;
        padding-bottom: 48px;
    }

    .section-title h2 {
        font-size: 22px;
        letter-spacing: 0.06em;
    }

    .welcome-area {
        padding-top: 110px;
        padding-bottom: 80px;
        min-height: 540px;
    }

    .hero-intro {
        padding-top: 24px;
        padding-bottom: 10px;
    }

    .hero-title {
        font-size: 27px;
        letter-spacing: 0.02em;
    }

    .hero-subtitle {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .hero-meta {
        font-size: 11px;
        letter-spacing: 0.05em;
        margin-bottom: 18px;
    }

    .hero-countdown {
        width: 100%;
        justify-content: center;
        margin-bottom: 22px;
    }

    .hero-countdown__timer {
        display: grid;
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        gap: 12px;
        width: 100%;
    }

    .hero-video-cta {
        margin-top: 32px;
        padding: 0 14px;
        align-items: stretch;
    }

    .hero-video-cta__btn {
        width: 100%;
        padding: 14px 16px;
        font-size: 12px;
        letter-spacing: 0.06em;
    }

    .hero-countdown__timer .cdown {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        min-width: 0;
        padding: 14px 12px;
    }

    .hero-countdown__timer .time-count {
        font-size: 22px;
    }

    .hero-countdown__timer p {
        font-size: 10px;
        letter-spacing: 0.14em;
    }

    .partners-area .partner-logo {
        min-height: 60px;
    }

    .partners-area .container>.row {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }

    .partners-area .container>.row>[class*="col-"] {
        float: none;
        width: 100%;
        max-width: 540px;
        padding-left: 0;
        padding-right: 0;
        display: flex;
        justify-content: center;
        margin-bottom: 12px;
    }

    .about-content {
        padding-right: 0;
    }

    .about-content__title {
        font-size: 16px;
        line-height: 1.6;
        letter-spacing: 0.06em;
    }

    .about-visual {
        margin: 0 auto;
        max-width: 100%;
    }

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

    .speakers.owl-carousel .single-speaker {
        margin: 0 auto;
        max-width: 320px;
    }

    .speakers-grid {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        gap: 18px;
    }

    .speaker-card__name {
        font-size: 12px;
        letter-spacing: 0.08em;
    }

    .price-area .price-tables {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    .price-area .price-tables .single-price-table {
        width: 100%;
        max-width: 420px;
    }

    .price-area .price-tables>a.button-hover {
        flex-basis: auto;
        width: auto;
        margin-top: 20px;
    }

    .header-area,
    .header-area.stick {
        height: auto;
        padding: 0px 0;
    }


    .logo a,
    #sticker.stick .logo a {
        width: auto;
        padding: 0;
    }

    .mobile-menu-area {
        background-color: #ffffff;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        z-index: 9999;
    }

    .mobile-menu-area .row {
        margin-left: 0;
        margin-right: 0;
    }

    .mobile-menu-area .col-xs-12 {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }

    .mobile-menu-area .header-logo {
        margin: 0;
        flex-shrink: 0;
    }

    .mobile-menu-area .logo__image {
        max-height: 45px;
        width: auto;
    }

    .mobile-menu-area .mobile-menu {
        flex: 1;
        display: flex;
        justify-content: flex-end;
        flex-direction: column;
        align-items: flex-end;
        position: relative;
    }

    /* Menü açıkken dışarıdaki logo tekrarını gizle */
    body.is-mobile-menu-open .mobile-menu-area .header-logo {
        visibility: hidden;
    }

    .mobile-menu-area .mobile-menu__toggle {
        width: 46px;
        height: 46px;
        border-radius: 4px;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.25);
        display: inline-flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        cursor: pointer;
        transition: background-color 0.2s ease, border-color 0.2s ease;
        z-index: 12002;
    }

    .mobile-menu-area .mobile-menu__toggle:focus {
        outline: 2px solid #04a6ad;
        outline-offset: 2px;
    }

    .mobile-menu-area .mobile-menu__toggle-bar {
        display: block;
        width: 22px;
        height: 2px;
        border-radius: 999px;
        background: #1f1f1f;
        transition: transform 0.2s ease, background-color 0.2s ease, opacity 0.2s ease;
    }

    .mobile-menu-area .mobile-menu.is-open .mobile-menu__toggle {
        background-color: #111111;
        border-color: #111111;
        opacity: 0;
        pointer-events: none;
    }

    .mobile-menu-area .mobile-menu.is-open .mobile-menu__toggle-bar {
        background: #ffffff;
    }

    .mobile-menu-area .mobile-menu.is-open .mobile-menu__toggle-bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-area .mobile-menu.is-open .mobile-menu__toggle-bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-area .mobile-menu.is-open .mobile-menu__toggle-bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .mobile-menu-area .mobile-menu>nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        box-shadow: 0 14px 36px rgba(17, 34, 46, 0.16);
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.25s ease;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        z-index: 12000;
        padding: 0;
        overflow: hidden;
        pointer-events: none;
    }

    .mobile-menu-area .mobile-menu.is-open>nav {
        max-height: none;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .mobile-menu-area .mobile-menu__header {
        background: #ffffff;
        padding: 16px 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .mobile-menu-area .mobile-menu__brand,
    .mobile-menu-area .mobile-menu__brand-text {
        display: inline-flex;
        align-items: center;
        font-size: 15px;
        letter-spacing: 0.22em;
        text-transform: uppercase;
        font-weight: 700;
        color: #111111;
        gap: 12px;
    }

    .mobile-menu-area .mobile-menu__brand img {
        display: block;
        max-height: 40px;
        width: auto;
    }

    /* Logo + site name hizası */
    .mobile-menu-area .mobile-menu__brand .logo__image {
        max-height: 40px;
    }

    .mobile-menu-area .mobile-menu__close {
        background: transparent;
        border: 0;
        font-size: 20px;
        font-weight: 700;
        letter-spacing: 0.12em;
        color: #111111;
        cursor: pointer;
        padding: 8px;
    }

    .mobile-menu-area .mobile-menu>nav .mobile-menu__list {
        list-style: none;
        padding: 12px 0 18px;
        margin: 0;
        display: flex;
        flex-direction: column;
        row-gap: 0;
        column-gap: 0;
        width: 100%;
        overflow-y: auto;
        align-items: stretch;
        background: #ffffff;
    }

    .mobile-menu-area .mobile-menu>nav .mobile-menu__list li {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        position: relative;
        background-color: #ffffff;
        width: 100%;
        display: flex;
        align-items: center;
        min-height: 62px;
    }

    .mobile-menu-area .mobile-menu>nav .mobile-menu__list li::after {
        content: "+";
        position: absolute;
        top: 10px;
        right: 14px;
        width: 34px;
        height: 34px;
        display: none;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.04);
        color: #111111;
        font-size: 18px;
        font-weight: 700;
        border-radius: 50%;
    }

    .mobile-menu-area .mobile-menu>nav .mobile-menu__list li a {
        display: block;
        flex: 1 1 auto;
        padding: 18px 22px;
        padding-right: 22px;
        color: #111111;
        text-transform: uppercase;
        font-size: 13px;
        letter-spacing: 0.16em;
        font-weight: 700;
    }

    .mobile-menu-area .mobile-menu>nav .mobile-menu__list li a:hover,
    .mobile-menu-area .mobile-menu>nav .mobile-menu__list li a:focus {
        background-color: rgba(0, 0, 0, 0.04);
        text-decoration: none;
    }

    body.is-mobile-menu-open {
        overflow: hidden;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-countdown__timer {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        gap: 12px;
    }

    .hero-countdown__timer .cdown {
        padding: 12px 10px;
    }

    .section-title h2 {
        font-size: 20px;
    }
}

/*----------------------------------------
  Contact area enhancements
-----------------------------------------*/
.contact-area .map-embed {
    position: relative;
    width: 100%;
    height: calc(100vh - 140px);
    min-height: 420px;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(135deg, #d9f0e8, #c5e4da);
    box-shadow: 0 18px 35px rgba(26, 64, 56, 0.16);
}

.contact-area .map-embed #google-Map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100% !important;
}

.contact-area .address {
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(26, 64, 56, 0.12);
    border: 1px solid rgba(45, 124, 105, 0.2);
}

.style-changer {
    z-index: 9;
}

@media (max-width: 991px) {
    .contact-area .map-embed {
        height: 420px;
    }

    .contact-area .address {
        left: auto;
        right: 20px;
    }
}

@media (max-width: 767px) {
    .style-changer {
        display: none;
    }

    .contact-area {
        padding: 0 15px 40px;
    }

    .contact-area .map-embed {
        height: 320px;
        border-radius: 12px;
    }

    .contact-area .address {
        position: static;
        width: 100%;
        height: auto;
        margin: 24px 0 0;
        box-shadow: 0 10px 28px rgba(19, 54, 50, 0.14);
    }

    .contact-area .contact-form-btn button {
        width: 100%;
    }
}

/******************************************
  Kongre Programı - fotoğrafsız hizalama
*******************************************/
.schedule-area .schedule-info {
    margin-left: 0;
    width: 100%;
}

@media (max-width: 1024px) {
    .schedule-area .schedule-timeline {
        padding-left: 0;
    }

    .schedule-area .timeline-bar {
        display: none;
    }

    .schedule-area .single-schedule {
        padding-left: 0;
        margin-bottom: 20px;
    }

    .schedule-area .schedule-content {
        margin-left: 0;
        width: 100%;
        padding: 22px 20px;
    }

    .schedule-area .schedule-content::after,
    .schedule-area .schedule-content::before {
        display: none;
    }

    .schedule-area .schedule-time {
        position: static;
        width: 100%;
        margin-bottom: 12px;
        text-align: left;
    }

    .schedule-area .schedule-time span {
        display: inline-flex;
        padding: 10px 18px;
        border-radius: 999px;
    }

    .schedule-area .schedule-info {
        width: 100%;
    }
}

/******************************************
  Komiteler sayfası
*******************************************/
.committee-section {
    background-color: #f7fbfa;
    padding-top: 110px;
    border-top: 1px solid #d1e5e1;
    padding-bottom: 70px;
}

.committee-container {
    margin: 50px auto 70px;
    padding: 0 40px;
}

.conference-summary {
    text-align: center;
    margin: 0 auto 38px;
    color: #1f2d2b;
    line-height: 1.5;
}

.conference-summary__title {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.025em;
    margin-bottom: 6px;
}

.conference-summary__tagline {
    font-size: 16px;
    font-style: italic;
    color: #4f5f5c;
    margin-bottom: 12px;
}

.conference-summary__meta {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #272727;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.conference-summary__divider {
    font-weight: 400;
    letter-spacing: normal;
    color: #8a9a97;
}

.committee-panel--info {
    margin-top: 32px;
    border: none;
    border-radius: 2px;
    background-color: #f7fbfa;
    padding: 0;
    overflow: hidden;
}

.committee-info-table {
    width: 100%;
    border: 1px solid #1cad99;
    border-collapse: collapse;
    background-color: #f7fbfa;
}

.committee-info-table tbody tr+tr td {
    border-top: 1px solid #1cad99;
}

.committee-info-table td {
    padding: 32px 56px;
    text-align: center;
    background-color: #f7fbfa;
}

.committee-info__title {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #272727;
    margin-bottom: 0px;
    text-align: center;
}

.committee-info__text {
    font-size: 15px;
    color: #272727;
    line-height: 1.75;
    margin-bottom: 0px;
    text-align: center;
}

.committee-info__text a {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
}

.committee-info__text a:hover {
    text-decoration: underline;
}

.committee-info__label {
    font-weight: 700;
    color: #1f2d2b;
    letter-spacing: 0.04em;
}

.committee-info__list {
    list-style: none;
    padding: 0;
    text-align: center;
    font-size: 15px;
    color: #3c4a48;
    letter-spacing: 0.04em;
    text-align: center;
}

.committee-info__list li {
    letter-spacing: 0.02em;
}


.committee-heading span {
    display: inline-block;
    background-color: #04a6ad;
    color: #ffffff;
    padding: 12px 28px;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    width: 100%;
    white-space: nowrap;
    border-radius: 3px;
    text-align: center;
}

.committee-panel {
    margin-top: 15px;
    border: none;
    background-color: transparent;
    overflow-x: hidden;
}

.committee-panel--tight {
    margin-top: 0;
    border-top: 0;
}

.committee-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    background-color: #ffffff;
}

.committee-table thead {
    background-color: #ffffff;
}

.committee-table th {
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 12px;
    color: #374644;
}

.committee-table th,
.committee-table td {
    border: none;
    padding: 5px 22px;
}

.committee-table td {
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    color: #313d3b;
}

.committee-table--two-col th:first-child,
.committee-table--two-col td:first-child {
    width: 48%;
    padding-right: 22px;
}

.committee-table--two-col th:last-child,
.committee-table--two-col td:last-child {
    width: 52%;
    padding-left: 0px;
    color: #4d5c59;
    /* font-weight: 500; */
}

.committee-table--single td {
    border-right: 0;
}

.committee-table--columns td {
    width: 50%;
    border-top: 0;
}

.committee-table__outline th,
.committee-table__outline td {
    border: none;
}

.committee-table__outline thead th {
    border: none;
}

.committee-table__outline thead tr,
.committee-table__outline tbody td {
    border: none;
}

/* .committee-table__outline thead tr {
    border-top: 5px solid #1cad99;
    border-left: 1px solid #5bc1b4;
    border-right: 1px solid #5bc1b4;
} */


.committee-table__outline tbody tr:last-child td {
    border-bottom: none;
}

.committee-list--columns-text {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px 60px;
    padding-top: 24px;
}

.committee-list--columns-text span {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #313d3b;
    padding: 4px 0;
    border: 0;
}

.committee-subheading {
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.12em;
    margin: 20px 0 0;
    color: #263238;
    border: 1px solid #95cac1;
    padding: 10px 18px;
    background-color: #ffffff;
}

.committee-subheading span {
    display: block;
}

.committee-subheading span:first-child {
    padding-right: 22px;
}

.committee-subheading span:last-child {
    padding-left: 0px;
}

@media (max-width: 767px) {
    .committee-container {
        margin: 0 auto 50px;
        padding: 0 16px;
        max-width: 480px;
    }

    .conference-summary {
        margin-bottom: 28px;
    }

    .conference-summary__title {
        font-size: 20px;
    }

    .conference-summary__meta {
        font-size: 15px;
        flex-direction: column;
        gap: 4px;
        letter-spacing: 0.06em;
    }

    .conference-summary__divider {
        display: none;
    }

    .committee-info-table {
        border: none;
        background: transparent;
    }

    .committee-info-table tbody {
        display: flex;
        flex-direction: column;
        gap: 18px;
    }

    .committee-info-table tr {
        display: block;
        border-radius: 18px;
        border: 1px solid rgba(34, 58, 74, 0.06);
        background: #ffffff;
        padding: 22px 18px;
        box-shadow: 0 8px 18px rgba(10, 34, 28, 0.08);
    }

    .committee-info-table tr+tr td {
        border-top: none !important;
    }

    .committee-info-table td {
        padding: 0;
        text-align: center;
        background: transparent;
    }

    .committee-info__title {
        font-size: 15px;
        letter-spacing: 0.12em;
        text-align: center;
        margin-bottom: 8px;
    }

    .committee-info__text,
    .committee-info__list {
        font-size: 14px;
        text-align: center;
    }

    .committee-heading span {
        font-size: 16px;
        letter-spacing: 0.08em;
        padding: 12px 16px;
        white-space: normal;
    }

    .committee-list--columns-text {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .committee-heading span {
        white-space: normal;
    }

    .committee-subheading {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .committee-subheading span:first-child,
    .committee-subheading span:last-child {
        padding: 0;
    }
}

@media (max-width: 640px) {
    .committee-panel {
        background-color: #ffffff;
        border-radius: 6px;
        padding: 0 18px;
        overflow: visible;
    }

    .committee-table {
        display: block;
        width: 100%;
    }

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

    .committee-table tr {
        padding: 12px 0;
        border-bottom: 1px solid #dfeae7;
    }

    .committee-table tr:last-child {
        border-bottom: none;
    }

    .committee-table td {
        padding-left: 0;
        padding-right: 0;
        text-align: left;
    }

    .committee-table td+td {
        margin-top: 6px;
    }

    .committee-table--two-col td:first-child,
    .committee-table--two-col td:last-child,
    .committee-table--single td {
        width: 100%;
    }

    .committee-subheading {
        font-size: 12px;
        letter-spacing: 0.08em;
    }
}

/******************************************
  Kongre davet sayfası
*******************************************/
.invitation-section {
    background-color: #fdfdfd;
    padding: 120px 0 110px;
}

.invitation-container {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.invitation-logos-row {
    background: #f3f5f7;
    padding: 26px 0;
    margin-bottom: 42px;
}

.invitation-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 56px;
    flex-wrap: wrap;
    max-width: 940px;
    margin: 0 auto;
}

.invitation-logo {
    flex: 1 1 200px;
    min-width: 0;
    text-align: center;
}

.invitation-logo a {
    display: inline-block;
}

.invitation-logo img {
    height: 74px;
    width: auto;
    object-fit: contain;
    display: block;
}

.invitation-logo--whr img {
    height: 90px;
}

.invitation-logo--bau img {
    height: 54px;
}

.invitation-logo--its img {
    height: 50px;
}

.invitation-heading {
    margin-bottom: 32px;
    margin-top: 32px;
    color: #1f2d2b;
}

.invitation-heading__title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.invitation-heading__tagline {
    font-size: 14px;
    font-style: italic;
    color: #546360;
}

.invitation-heading__meta {
    font-size: 16px;
    font-weight: 700;
    color: #272727;
}

.invitation-body {
    background-color: #ffffff;
    color: #272727;
    text-align: left;
    padding: 40px 48px 50px;
}

.invitation-body h2 {
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    color: #272727;
    text-align: center;
}

.invitation-body p {
    font-size: 15px;
    margin-bottom: 16px;
}

.invitation-signature {
    margin-top: 36px;
    font-size: 15px;
}

.invitation-signature__name {
    font-weight: 700;
    margin-top: 6px;
}

/******************************************
  Konuşmacılar sayfası
*******************************************/
.speaker-page {
    padding-bottom: 60px;
}

.speaker-hero {
    padding-bottom: 10px;
}

.speaker-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.speaker-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    color: #ffffff;
    background: #c3cfcc;
    transition: all 0.2s ease;
    height: 35px;
    flex: 1 1 240px;
    max-width: 320px;
    box-shadow: 0 6px 16px rgba(15, 34, 31, 0.16);
    opacity: 0.7;
}

.speaker-tab--conference {
    background: #99c3be;
}

.speaker-tab--clinic {
    background: #b5bbc3;
}

.speaker-tab--experiential {
    background: #d3cebc;
    color: #ffffff;
}

.speaker-tab:hover,
.speaker-tab:focus {
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(18, 40, 36, 0.22);
    opacity: 0.95;
}

.speaker-tab.is-active {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(17, 43, 38, 0.25);
}

.speaker-tab--conference.is-active {
    background: #3db7a8;
}

.speaker-tab--clinic.is-active {
    background: #3d72c4;
}

.speaker-tab--experiential.is-active {
    background: #edc731;
    color: #3c2b00;
}

.speaker-section {
    display: none;
    padding-bottom: 50px;
}

.speaker-section.is-active {
    display: block;
}

.speaker-section__heading {
    text-align: center;
}

.speaker-section__heading span {
    display: inline-block;
    padding: 16px 34px;
    border-radius: 6px;
    border: 1px solid #cfd8d6;
    background: #f7fbfa;
    font-size: 14px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    font-weight: 700;
    color: #1b2a28;
}

.speaker-container {
    max-width: 1100px;
    margin: 0 auto;
}

.speaker-grid {
    margin-top: 32px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 26px;
}

.our-sponsor-area .single-client img {
    max-height: 100px;
    width: auto;
    object-fit: contain;
}


.speaker-grid--carousel {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
    row-gap: 20px;
}

.lang-switch {
    padding-left: 12px;
    color: #111111;
    font-weight: 700;
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 12px;
    letter-spacing: 0.12em;
}

.lang-switch .lang-flag {
    color: inherit;
    display: inline-flex;
    padding: 2px 6px;
    min-width: auto;
    width: auto;
    height: auto;
    border-radius: 4px;
    border: 1px solid transparent;
    place-items: center;
    font-size: 12px;
    line-height: 1.2;
    position: relative;
    overflow: visible;
    letter-spacing: 0.12em;
}

.lang-switch .lang-flag:hover,
.lang-switch .lang-flag:focus {
    color: #2ec1ba;
    text-decoration: none;
    border-color: rgba(46, 193, 186, 0.24);
}

.lang-switch .lang-flag::before {
    content: none;
}

.lang-switch .lang-flag .sr-only {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: nowrap;
}

.sr-only {
    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: 1199px) {
    .speaker-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .speaker-grid--carousel {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .speaker-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .speaker-grid--carousel {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.speaker-carousel__slide {
    padding: 10px 5px;
}

.speaker-card {
    background: #ffffff;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.speaker-card__link {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
    width: 100%;
    text-decoration: none;
    color: inherit;
    border-radius: 8px;
}

.speaker-card__link:focus-visible {
    outline: 2px solid #2ec1ba;
    outline-offset: 4px;
}

.speaker-card__image {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: 4px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #d0d8d2;
}

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

.speaker-card__link:hover .speaker-card__image img,
.speaker-card__link:focus-visible .speaker-card__image img {
    transform: scale(1.02);
}

.speaker-card__name {
    font-size: 12px;
    letter-spacing: 0.01em;
    margin: 0;
    padding: 11px 14px;
    border-radius: 0 0 4px 4px;
    border: none;
    border-top: 1px solid #d0d0d0;
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
    line-height: 1.35;
}

.speaker-section--conference .speaker-card__name {
    background: #a5cccc;
    color: #1b2a28;
}

.speaker-section--clinic .speaker-card__name {
    background: #aec8f0;
    color: #1b2532;
}

.speaker-section--experiential .speaker-card__name {
    background: #f2e4ab;
    color: #3b2d00;
}

@media (max-width: 767px) {
    .invitation-section {
        padding: 100px 0 80px;
    }

    .invitation-body {
        padding: 32px 22px 40px;
        text-align: left;
    }

    .invitation-body h2 {
        letter-spacing: 0.18em;
        text-align: center;
    }

    .invitation-logos-row {
        padding: 22px 0;
        margin-bottom: 34px;
    }

    .invitation-logos {
        gap: 26px;
        padding: 0 28px;
        flex-wrap: wrap;
    }

    .invitation-logo img {
        height: 58px;
    }

    .invitation-logo--whr img {
        height: 62px;
    }

    .invitation-logo--bau img {
        height: 46px;
    }

    .invitation-logo--its img {
        height: 40px;
    }

    .speaker-tabs {
        flex-wrap: wrap;
        gap: 12px;
    }

    .speaker-tab {
        width: 100%;
        border-radius: 18px;
        justify-content: flex-start;
        padding: 12px 18px;
        letter-spacing: 0.1em;
        margin-right: 0;
        box-shadow: 0 10px 16px rgba(21, 36, 33, 0.15);
    }

    .speaker-tab+.speaker-tab {
        margin-left: 0;
    }

    .speaker-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .speaker-grid--carousel {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}



@media (max-width: 520px) {
    .invitation-logos-row {
        padding: 18px 0;
    }

    .invitation-logos {
        gap: 16px;
        padding: 0 18px;
    }

    .invitation-logo img {
        height: 46px;
    }

    .invitation-logo--whr img {
        height: 50px;
    }

    .invitation-logo--bau img {
        height: 38px;
    }

    .invitation-logo--its img {
        height: 34px;
    }

    .invitation-heading__title {
        font-size: 20px;
    }

    .invitation-heading__meta {
        letter-spacing: 0.12em;
    }

    .speaker-tabs {
        gap: 8px;
    }

    .speaker-section__heading span {
        letter-spacing: 0.18em;
        padding: 14px 18px;
    }
}

.price-area .price-tables {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.price-area .price-tables .single-price-table {
    flex: 1 1 30%;
    max-width: 360px;
    min-width: 280px;
}

.price-area .price-tables>a.button-hover {
    display: inline-flex;
    margin: 40px auto 0;
    align-items: center;
    justify-content: center;
    min-width: 260px;
    flex-basis: 100%;
}

.workshop-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 35px;
    justify-content: center;
}

.workshop-info-card {
    color: #ffffff;
    flex: 1 1 300px;
    max-width: 360px;
    background: #433e38;
    opacity: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 34px 28px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.workshop-info-card h3 {
    font-size: 18px;
    letter-spacing: 0.18em;
    margin-bottom: 16px;
    color: #fff;
}

.workshop-info-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
}

.workshop-info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.5);
}

@media (max-width: 991px) {
    .price-area .price-tables {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }

    .price-area .price-tables .single-price-table {
        width: 100%;
        max-width: 420px;
    }

    .price-area .price-tables>a.button-hover {
        flex-basis: auto;
        width: auto;
        margin-top: 20px;
    }

    .workshop-info-row {
        gap: 20px;
    }

    .workshop-info-card {
        max-width: none;
        padding: 28px 24px;
    }
}

@media (min-width: 992px) {
    .header-area>.container.pos-relative {
        width: 100%;
        max-width: 1360px;
        padding-left: 48px;
        padding-right: 48px;
    }
}

#pricing.price-area {
    position: relative;
    padding: 110px 0 120px;
    background: transparent;
    overflow: hidden;
}

#pricing.price-area::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/kayit-bg.png");
    background-size: cover;
    background-position: center;
    z-index: 0;
}

#pricing.price-area .container {
    position: relative;
    z-index: 1;
}

#pricing.price-area .section-title h2 {
    letter-spacing: 0.35em;
    color: #ffffff;
}

#pricing.price-area .price-tables {
    display: flex;
    justify-content: center;
    gap: 36px;
    flex-wrap: nowrap;
}

#pricing.price-area .single-price-table {
    flex: 0 0 320px;
    max-width: 320px;
    width: 320px;
    background-color: rgba(21, 26, 34, 0.78);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 45px 32px 50px;
    min-height: 260px;
    box-shadow: 0 25px 40px rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#pricing.price-area .single-price-table h3 {
    color: #ffffff;
    letter-spacing: 0.2em;
    font-size: 20px;
    margin-bottom: 18px;
}

#pricing.price-area .price-feature ul {
    padding: 0;
    list-style: none;
}

#pricing.price-area .price-feature ul li {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
    font-size: 16px;
}

#pricing.price-area .price-tables>a.button-hover {
    min-width: 240px;
    border-radius: 50px;
    padding: 14px 45px;
    border: 1px solid #32c0b1;
    color: #32c0b1;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    background: transparent;
    transition: all 0.25s ease;
}

#pricing.price-area .price-tables>a.button-hover:hover,
#pricing.price-area .price-tables>a.button-hover:focus {
    background-color: #32c0b1;
    color: #0a1218;
}

@media (max-width: 991px) {
    #pricing.price-area {
        padding: 90px 0 100px;
    }

    #pricing.price-area .price-tables {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 18px;
        overflow-x: visible;
        padding-bottom: 0;
        justify-content: center;
        align-items: center;
    }

    #pricing.price-area .single-price-table {
        flex: 0 1 auto;
        max-width: 420px;
        width: 100%;
    }
}

@media (max-width: 640px) {

    .workshop-info-card {
        padding: 22px 20px;
    }

    .workshop-info-card h3 {
        letter-spacing: 0.12em;
    }

    #pricing.price-area .section-title h2 {
        letter-spacing: 0.2em;
        font-size: 20px;
    }

    #pricing.price-area .single-price-table {
        min-height: 0;
        padding: 32px 26px;
        max-width: none;
        width: 100%;
    }

    #pricing.price-area .price-tables>a.button-hover {
        letter-spacing: 0.18em;
        width: 100%;
    }

    .workshop-info-row {
        flex-direction: column;
    }

    .workshop-info-card {
        padding: 22px 18px;
    }
}

.registration-fees {
    position: relative;
    background-image: url("../img/kayit-ve-ucretler-img.jpeg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.registration-fees::before {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255, 196, 0, 0.92), rgba(255, 170, 0, 0.85));
}

.registration-fees .container {
    position: relative;
    z-index: 1;
}

.registration-fees__content {
    padding: 0 20px;
    color: #111111;
    margin: 0 auto;
    width: 100%;
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

.registration-fees__content h2 {
    letter-spacing: 0.32em;
    color: #111111;
    text-align: center;
    margin-bottom: 30px;
}

.registration-fees__content p {
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 16px;
    color: #111111;
    text-align: left;
    width: 100%;
    max-width: 860px;
}

.registration-fees__emphasis {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 28px;
    color: #111111;
    text-align: left;
    width: 100%;
    max-width: 860px;
}

.registration-fees__emphasis a {
    color: inherit;
    text-decoration: underline;
}

.registration-fees__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 48px;
    background-color: #000000;
    color: #e0b115;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    transition: all 0.2s ease;
    margin: 10px auto 0;
    font-weight: 900;
}

.registration-fees__button:hover,
.registration-fees__button:focus {
    background-color: rgba(0, 0, 0, 0.65);
    color: #ffd400;
    text-decoration: none;
}

.section-gap-white-5 {
    height: 20px;
    background-color: #ffffff;
}

@media (max-width: 991px) {
    .registration-fees {
        padding: 90px 0 100px;
    }

    .registration-fees__content {
        padding: 36px 34px;
    }
}

@media (max-width: 640px) {
    .registration-fees__content {
        padding: 0;
    }

    .registration-fees__content h2 {
        letter-spacing: 0.2em;
        font-size: 20px;
    }

    .registration-fees__button {
        width: 100%;
        letter-spacing: 0.18em;
    }
}

.mobile-menu-area {
    background: #fff;
}

.mean-container .mean-nav,
.mean-container .mean-nav ul {
    background: #fff !important;
    border: none;
}

.hero-video-cta {
    flex-direction: column;
}

/* Accessible focus treatment for keyboard users */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid #2ec1ba;
    outline-offset: 2px;
}

/* Avoid double outline when focus-visible is supported */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
select:focus:not(:focus-visible) {
    outline: none;
}

/* Slider Layout Adjustments */
.hero-intro {
    text-align: left;
    padding: 0;
}

.hero-subtitle {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

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

@media (max-width: 991px) {
    .hero-intro {
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-countdown {
        justify-content: center;
    }
}