.whatsapp-float {
    position: fixed;
    right: 30px;
    bottom: 100px;
    z-index: 999;
  }
  
  .whatsapp-button {
    display: flex;
    align-items: center;
    background: #25D366;
    color: white;
    padding: 12px;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    width: 56px;
    height: 56px;
    justify-content: center;
  }
  
  .whatsapp-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    border-radius: 50px;
    width: auto;
    padding: 12px 20px;
  }
  
  .whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .whatsapp-text {
    font-size: 16px;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.3s ease;
  }
  
  .whatsapp-button:hover .whatsapp-text {
    max-width: 200px;
    margin-left: 10px;
  }
  
  @media (max-width: 768px) {
    .whatsapp-float {
      right: 30px;
      bottom: 100px;
    }
    
    .whatsapp-button {
      padding: 10px;
      border-radius: 50%;
      width: 56px;
      height: 56px;
    }
    
    .whatsapp-text {
      display: none;
    }
    
    .whatsapp-button:hover {
      border-radius: 50%;
      width: 50px;
      height: 50px;
      padding: 10px;
    }
  }

  .cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    padding: 18px 24px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    z-index: 9999;
    max-width: 94%;
    width: 960px;
  }
  .cookie-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
  }
  .cookie-icon {
    font-size: 24px;
    color: var(--theme-color);
    flex-shrink: 0;
    margin-top: 2px;
  }
  .cookie-consent__copy {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .cookie-consent__message,
  .cookie-consent__links {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #333;
  }
  .cookie-consent__links {
    color: #555;
  }
  .cookie-consent a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
  }
  .cookie-consent a:hover {
    text-decoration: underline;
  }
  .cookie-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  .cookie-accept,
  .cookie-reject {
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    white-space: nowrap;
  }
  .cookie-accept {
    background: var(--theme-color);
    color: white;
  }
  .cookie-accept:hover {
    background: var(--theme-color2);
  }
  .cookie-reject {
    background: transparent;
    color: var(--title-color);
    border: 1px solid var(--th-border-color);
  }
  .cookie-reject:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
  }
  @media (max-width: 768px) {
    .cookie-consent {
      flex-direction: column;
      align-items: stretch;
      padding: 16px;
    }
    .cookie-content {
      flex-direction: row;
    }
    .cookie-buttons {
      width: 100%;
    }
    .cookie-accept,
    .cookie-reject {
      flex: 1;
      white-space: normal;
    }
  }
  @media (max-width: 576px) {
    .cookie-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .cookie-buttons {
      flex-direction: column;
    }
  }

  .progress-wrap {
    position: fixed;
    right: 30px;
    bottom: 30px;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.1);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 200ms linear;
  }

  .progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 99;
  }
  
  .progress-wrap::after {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f062";
    text-align: center;
    line-height: 56px;
    font-size: 18px;
    color: var(--theme-color2);
    left: 0;
    top: 0;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    z-index: 1;
    transition: all 200ms linear;
  }
  
  .progress-wrap:hover::after {
    opacity: 0;
  }
  
  .progress-wrap::before {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f062";
    text-align: center;
    line-height: 56px;
    font-size: 18px;
    opacity: 0;
    left: 0;
    top: 0;
    height: 56px;
    width: 56px;
    cursor: pointer;
    display: block;
    z-index: 2;
    transition: all 200ms linear;
  }
  
  .progress-wrap:hover::before {
    opacity: 1;
  }
  
  .progress-wrap svg path {
    fill: none;
  }
  
  .progress-wrap svg.progress-circle path {
    stroke: var(--theme-color2);
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 200ms linear;
  }
  
  .pagination {
    margin-top: 30px;
}

.pagination .page-item .page-link {
    color: #333;
    border: 1px solid #ddd;
    padding: 8px 16px;
    margin: 0 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
}

.pagination .page-item .page-link:hover {
    background-color: var(--theme-color2);
    border-color: var(--theme-color2);
    color: #fff;
}

.pagination .page-item.active .page-link:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
}

.pagination .page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff;
    border-color: #ddd;
}

/* Siyah / Beyaz tema + kirmizi & antrasit vurgular */
:root {
    --theme-color: #000000;
    --theme-color2: #2D2D2D;
    --accent-color: #C8102E;
    --title-color: #000000;
    --body-color: #444444;
    --smoke-color: #F5F5F5;
    --smoke-color2: #FFFFFF;
    --dark-color: #000000;
    --th-border-color: #E0E0E0;
}

/* Hero slider - antrasit overlay */
.th-hero-wrapper.hero-1 .th-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: #2D2D2D;
    opacity: 0.88;
    z-index: 1;
    pointer-events: none;
}

.th-hero-wrapper.hero-1 .th-hero-bg img[src*="hero1-overlay"] {
    display: none !important;
}

/* Hero slider - dairesel gorsel cercevesi */
.hero-1 .hero-img .img-main {
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    width: min(100%, 420px);
    max-width: 420px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
    box-sizing: border-box;
    background: #ffffff !important;
    overflow: hidden;
    border: none;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.hero-1 .hero-img .img-main::before {
    display: none !important;
}

.hero-1 .hero-img .img-main img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
    background: transparent;
}

/* Hero slider - baslik tipografi */
.th-hero-wrapper.hero-1 .hero-title {
    font-size: clamp(26px, 2.6vw, 42px);
    line-height: 1.35;
    letter-spacing: -0.01em;
    display: block;
    max-width: 100%;
    text-transform: none !important;
    font-weight: 400;
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.th-hero-wrapper.hero-1 .hero-style1 .btn-group {
    justify-content: flex-start !important;
}

@media (max-width: 991px) {
    .th-hero-wrapper.hero-1 .hero-style1 {
        text-align: left;
    }

    .th-hero-wrapper.hero-1 .hero-style1 .btn-group {
        justify-content: center !important;
    }
}

@media (max-width: 991px) {
    .th-hero-wrapper.hero-1 .hero-title {
        font-size: clamp(24px, 5vw, 32px);
        line-height: 1.4;
    }
}

@media (max-width: 575px) {
    .th-hero-wrapper.hero-1 .hero-title {
        font-size: clamp(22px, 6vw, 28px);
    }
}

/* Mobil: slider logo → motto → iletişime geç */
@media (max-width: 991px) {
    .th-hero-wrapper.hero-1 .hero-slide-row {
        display: flex;
        flex-direction: column;
    }

    .th-hero-wrapper.hero-1 .hero-slide-logo {
        order: 1;
    }

    .th-hero-wrapper.hero-1 .hero-slide-content {
        order: 2;
    }

    .th-hero-wrapper.hero-1 .hero-img {
        margin-top: 0;
        margin-bottom: 28px;
    }

    .th-hero-wrapper.hero-1 .hero-img .img-main {
        margin-left: auto;
        margin-right: auto;
    }

    /* Mobil: avukat profillerinde foto üstte */
    #about-sec .home-profile-photo,
    #about-partner-sec .home-profile-photo {
        width: min(100%, 320px) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    #about-sec .img-box1.about-1,
    #about-partner-sec .img-box1.about-1 {
        margin-left: auto;
        margin-right: auto;
        justify-content: center !important;
    }

    #about-partner-sec .about-1--reverse .img1 {
        margin-left: auto !important;
        margin-right: auto !important;
    }
}

.th-hero-wrapper.hero-1 .hero-style1 .btn-group .th-btn {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: #ffffff !important;
}

.th-hero-wrapper.hero-1 .hero-style1 .btn-group .th-btn::before,
.th-hero-wrapper.hero-1 .hero-style1 .btn-group .th-btn::after {
    display: none !important;
}

.th-hero-wrapper.hero-1 .hero-style1 .btn-group .th-btn:hover,
.th-hero-wrapper.hero-1 .hero-style1 .btn-group .th-btn:focus {
    background-color: #a50d26 !important;
    border-color: #a50d26 !important;
    color: #ffffff !important;
}

/* Ana sayfa hakkimizda - gorsel sagda */
.about-1-wrapper .img-box1.about-1 {
    margin-left: 0;
    margin-right: 25px;
    justify-content: flex-end;
}

.about-1-wrapper .title-area .sec-text,
.about-1-wrapper .title-area .sec-text p {
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.home-profile-header {
    margin-bottom: 24px;
}

.home-profile-header__name {
    margin: 0 0 10px;
    font-size: clamp(28px, 3vw, 36px);
    line-height: 1.25;
    font-weight: 700;
    color: var(--title-color);
}

.home-profile-header__role {
    margin: 0 0 6px;
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.4;
    font-weight: 600;
    color: var(--accent-color);
}

.home-profile-header__role:last-child {
    margin-bottom: 0;
}

.about-1-wrapper--reverse .img-box1.about-1 {
    margin-left: 25px;
    margin-right: 0;
    justify-content: flex-start;
}

.about-1-wrapper--reverse .img-box1.about-1 .img1 {
    margin-left: 0;
    margin-right: auto;
}

.about-1-wrapper--reverse .img-box1.about-1 .img1::before {
    left: auto;
    right: -24px;
    border-radius: 0 90px 100px 100px;
}

.about-1-wrapper--reverse .img-box1.about-1 .img1 img {
    border-radius: 0 90px 100px 100px;
}

.about-1-wrapper--reverse .title-area .sec-text p + p {
    margin-top: 1rem;
}

/* Ana sayfa tanitim videosu */
.home-promo-video__player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background-color: #000;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}

.home-promo-video__cover {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: opacity 0.25s ease, visibility 0.25s ease;
}

.home-promo-video__poster {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.home-promo-video__frame {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.home-promo-video__play {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 24px;
    line-height: 1;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, background-color 0.2s ease;
    pointer-events: none;
}

.home-promo-video__play i {
    margin-left: 4px;
}

.home-promo-video__cover:hover .home-promo-video__play,
.home-promo-video__cover:focus-visible .home-promo-video__play {
    transform: scale(1.05);
    background: rgba(200, 16, 46, 0.88);
}

.home-promo-video__player.is-playing .home-promo-video__cover {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.home-promo-video__media {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
    opacity: 0;
    visibility: hidden;
}

.home-promo-video__player.is-playing .home-promo-video__media {
    opacity: 1;
    visibility: visible;
    z-index: 4;
}

.home-promo-video__note {
    margin: 36px auto 0;
    max-width: 720px;
    text-align: center;
    font-size: 18px;
    line-height: 1.85;
    color: var(--body-color);
    padding-top: 28px;
    border-top: 1px solid var(--th-border-color);
    position: relative;
}

.home-promo-video__note::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 2px;
    background: var(--accent-color);
}

@media (max-width: 767px) {
    .home-promo-video__note {
        margin-top: 28px;
        font-size: 16px;
        line-height: 1.75;
        padding-top: 22px;
    }
}

.lang-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.lang-switcher__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--title-color);
    opacity: 0.55;
    text-decoration: none;
}

.lang-switcher__flag {
    font-size: 16px;
    line-height: 1;
}

.lang-switcher__item.is-active,
.lang-switcher__item:hover {
    color: var(--accent-color);
    opacity: 1;
}

.lang-switcher__sep {
    color: var(--th-border-color);
    font-weight: 400;
}

.th-mobile-menu__lang {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--th-border-color);
}

.lang-switcher--mobile {
    justify-content: center;
    font-size: 15px;
}

.lang-switcher--mobile .lang-switcher__flag {
    font-size: 18px;
}

/* Hizmetler sayfasi - ust aciklama metni */
.services-page-intro {
    position: relative;
    text-align: center;
    font-family: var(--title-font);
    font-size: clamp(17px, 2vw, 20px);
    font-style: italic;
    line-height: 1.85;
    color: var(--title-color);
    margin: 0 0 44px;
    padding: 32px 40px;
    background: var(--smoke-color);
    border-radius: 4px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
}

.services-page-intro::before {
    content: '';
    display: block;
    width: 56px;
    height: 3px;
    background: var(--accent-color);
    margin: 0 auto 22px;
}

.services-page-intro::after {
    content: '\201C';
    position: absolute;
    top: 14px;
    left: 22px;
    font-family: var(--title-font);
    font-size: 48px;
    line-height: 1;
    color: var(--accent-color);
    opacity: 0.15;
    pointer-events: none;
}

@media (max-width: 767px) {
    .services-page-intro {
        padding: 24px 22px;
        margin-bottom: 36px;
        font-size: 16px;
        line-height: 1.75;
    }

    .services-page-intro::after {
        font-size: 36px;
        top: 10px;
        left: 14px;
    }
}

/* Hizmetler - iki yana yasli (justify) metin */
#service-sec .service-card .box-text,
.th-service-1 .service-card .box-text {
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.service-detail-content .service-detail-text,
.service-detail-content .service-detail-text p,
.service-detail-content .service-detail-text li {
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.service-detail-content .service-detail-text p:last-child,
.service-detail-content .service-detail-text > *:last-child {
    margin-bottom: 0;
}

/* Blog - iki yana yasli metin */
#blog-sec .blog-card .box-text,
#service-sec .blog-card .box-text,
.th-blog-wrapper .blog-card .box-text {
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.blog-details .blog-detail-text,
.blog-details .blog-detail-text p,
.blog-details .blog-detail-text li {
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.blog-details .blog-detail-text p:last-child,
.blog-details .blog-detail-text > *:last-child {
    margin-bottom: 0;
}

/* Kart basliklari - sabit yukseklik + overflow Turkce noktalari kesiyor */
.card-title-clamp {
    margin-bottom: 10px;
    min-height: 3.4em;
    overflow: visible !important;
    display: block !important;
    height: auto !important;
    padding-top: 0.35em;
}

.card-title-clamp a {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.35;
    /* line-clamp overflow, Turkce I/O noktalarini kesiyor */
    padding-top: 0.35em;
    margin-top: -0.35em;
    max-height: calc(1.35em * 2 + 0.35em);
}

/* Turkce basliklar - TNR bold Turkce noktalari bozuyor */
.sec-title,
.box-title,
.box-title a,
.blog-title,
.blog-title a,
.blog-card .box-title,
.blog-card .box-title a,
.blog-single .blog-title,
.th-blog-wrapper .box-title,
.th-blog-wrapper .box-title a,
.hero-title,
.home-profile-header__name,
.home-profile-header__role {
    text-transform: none !important;
    font-family: Georgia, "Times New Roman", Times, serif !important;
    font-weight: 400 !important;
    font-synthesis: none;
    font-variant-ligatures: normal;
}

html[lang="tr"] .sec-title,
html[lang="tr"] .box-title,
html[lang="tr"] .box-title a,
html[lang="tr"] .blog-title,
html[lang="tr"] .blog-title a,
html[lang="tr"] .hero-title,
html[lang="tr"] .home-profile-header__name {
    font-family: Georgia, "Times New Roman", Times, serif !important;
    font-weight: 400 !important;
}

body {
    color: var(--body-color);
    background-color: #ffffff;
}

a:hover {
    color: var(--accent-color);
}

.sub-title,
.sub-title.style-theme {
    color: var(--accent-color) !important;
}

.sub-title.style-theme2 {
    color: var(--theme-color2) !important;
}

.sec-title,
.box-title a:hover,
h1, h2, h3, h4, h5, h6 {
    color: var(--title-color);
}

.th-btn {
    background-color: var(--theme-color);
    color: #ffffff;
    border: 1px solid var(--theme-color);
}

.th-btn:hover,
.th-btn:focus {
    color: var(--theme-color);
}

.th-btn.style4 {
    background-color: var(--theme-color2);
    border-color: var(--theme-color2);
}

.th-btn.style4:hover {
    color: #ffffff;
}

.header-layout1 .header-top {
    background-color: var(--theme-color);
}

.header-layout1 .menu-area {
    background-color: #ffffff;
}

.main-menu a:hover,
.main-menu .menu-item-has-children:hover > a {
    color: var(--accent-color);
}

.th-mobile-menu ul li a:hover,
.th-mobile-menu ul li.th-active > a {
    color: var(--accent-color);
}

.bg-smoke2,
.bg-smoke {
    background-color: var(--smoke-color) !important;
}

.bg-footer-color,
.footer-layout1 .copyright-wrap {
    background-color: #000000 !important;
}

.widget-area.bg-footer-color {
    background-color: #111111 !important;
}

.footer-wrapper .widget_title {
    color: #ffffff;
}

.footer-wrapper .menu a:hover,
.footer-wrapper .info-box_link:hover {
    color: var(--accent-color);
}

.footer-layout1 .th-widget-about .th-social a {
    background-color: var(--theme-color2);
}

.footer-layout1 .th-widget-about .th-social a:hover {
    background-color: var(--accent-color);
}

.slider-arrow:hover,
.icon-box .slider-arrow:hover {
    background-color: var(--theme-color2) !important;
    color: #ffffff !important;
}

.swiper-pagination-bullet-active {
    background-color: var(--theme-color) !important;
}

.service-card .link-btn,
.blog-card .link-btn {
    color: var(--theme-color);
}

.service-card .link-btn:hover,
.blog-card .link-btn:hover {
    color: var(--accent-color);
}

.counter-card .box-number,
.counter-card .box-number .counter-number,
.counter-card .box-number .plus-simple {
    color: #ffffff !important;
}

.counter-card .box-text {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* SSS / Accordion */
.accordion-card {
    background-color: #ffffff;
    border-color: var(--th-border-color);
}

.accordion-card .accordion-button {
    color: var(--title-color);
    background-color: transparent;
}

.accordion-card .accordion-button:hover {
    color: var(--title-color);
    background-color: var(--smoke-color);
}

.accordion-card:has(.show) {
    background-color: var(--theme-color) !important;
    border-color: var(--theme-color);
}

.accordion-card:has(.show) .accordion-button,
.accordion-card:has(.show) .accordion-button:not(.collapsed),
.accordion-card:has(.show) .accordion-button:hover,
.accordion-card:has(.show) .accordion-button:focus {
    color: #ffffff !important;
    background-color: transparent !important;
    box-shadow: none;
}

.accordion-card:has(.show) .accordion-button::after {
    color: #ffffff !important;
}

.accordion-card:has(.show) .faq-text,
.accordion-card:has(.show) .accordion-body,
.accordion-card:has(.show) .accordion-body p {
    color: rgba(255, 255, 255, 0.92) !important;
}

.cookie-accept {
    background: var(--theme-color);
}

.cookie-accept:hover {
    background: var(--accent-color);
}

.cookie-reject:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.cookie-icon {
    color: var(--accent-color);
}

.pagination .page-item.active .page-link {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
}

.pagination .page-item .page-link:hover {
    background-color: var(--theme-color2);
    border-color: var(--theme-color2);
}

.scroll-top svg path {
    stroke: var(--theme-color2);
}

.breadcumb-title {
    color: #ffffff;
}

/* Site logolari */
.header-layout1 .header-logo {
    width: auto !important;
    padding: 10px 0 !important;
}

.header-layout1 .header-logo .logo-bg {
    display: none !important;
}

.site-logo {
    display: block;
    width: auto;
    height: auto;
    object-fit: contain;
    background: transparent !important;
}

.site-logo--header {
    max-height: 58px;
    max-width: 160px;
}

.site-logo--mobile {
    max-height: 48px;
    max-width: 140px;
}

.site-logo--footer {
    max-height: 105px;
    max-width: 280px;
    margin: 0 auto;
}

/* Footer koyu zemin: header logosunu beyaz zemin uzerinde goster */
.footer-wrapper .about-logo {
    background: transparent !important;
    line-height: 0;
}

.footer-wrapper .about-logo a {
    display: inline-block;
    background: #ffffff !important;
    padding: 14px 18px;
    border-radius: 10px;
    line-height: 0;
}

.sticky-wrapper.sticky .header-logo {
    padding: 10px 0 !important;
}

@media (max-width: 767px) {
    .site-logo--header {
        max-height: 46px;
        max-width: 130px;
    }
}

/* Icerik sayfasi gorselleri (hakkimizda, hizmet detay vb.) */
.page-single .page-img {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
}

.page-single .page-img img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    object-position: center;
}

.blog-single .blog-img {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
}

.blog-single .blog-img img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    object-position: center;
}

/* ============================================================
   Hakkimizda sayfasi ozel tasarim
   ============================================================ */

.about-page-hero {
    padding-top: 100px;
    padding-bottom: 80px;
}

.about-page-portrait {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-bottom: 28px;
}

.about-page-portrait__frame {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
    background: #f5f5f5;
    line-height: 0;
}

.about-page-portrait__frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    z-index: 2;
}

.about-page-portrait__frame img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: center center;
    filter: grayscale(15%);
}

.about-page-portrait__badge {
    position: absolute;
    bottom: -18px;
    right: -18px;
    background: var(--theme-color);
    color: #fff;
    padding: 18px 22px;
    text-align: center;
    min-width: 100px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.about-page-portrait__badge-year {
    display: block;
    font-family: var(--title-font);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    color: var(--accent-color);
}

.about-page-portrait__badge-text {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
    opacity: 0.85;
}

.about-page-name span {
    color: var(--accent-color);
}

.about-page-lead {
    font-size: 18px;
    line-height: 1.75;
    color: var(--body-color);
    margin-bottom: 24px;
    max-width: 580px;
}

.about-page-quote {
    position: relative;
    padding: 22px 22px 22px 56px;
    margin: 0 0 28px;
    background: var(--smoke-color);
    border-left: 3px solid var(--accent-color);
    font-family: var(--title-font);
    font-size: 17px;
    font-style: italic;
    line-height: 1.65;
    color: var(--title-color);
}

.about-page-quote i {
    position: absolute;
    left: 20px;
    top: 22px;
    color: var(--accent-color);
    font-size: 20px;
    opacity: 0.7;
}

.about-page-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.about-page-tag {
    display: inline-block;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid var(--th-border-color);
    color: var(--title-color);
    background: #fff;
    transition: all 0.25s ease;
}

.about-page-tag:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.about-page-story__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

.about-page-story__text p {
    margin-bottom: 18px;
    line-height: 1.8;
    text-align: justify;
}

.about-page-story__text p:last-child {
    margin-bottom: 0;
}

.about-page-highlight-card {
    background: #fff;
    padding: 28px;
    margin-bottom: 20px;
    border: 1px solid var(--th-border-color);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-page-highlight-card:last-child {
    margin-bottom: 0;
}

.about-page-highlight-card:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    transform: translateY(-3px);
}

.about-page-highlight-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--theme-color);
    color: #fff;
    font-size: 20px;
    margin-bottom: 16px;
}

.about-page-highlight-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--title-color);
}

.about-page-highlight-card p {
    margin: 0;
    line-height: 1.7;
}

.about-page-expertise-card {
    height: 100%;
    padding: 32px 28px;
    background: #fff;
    border: 1px solid var(--th-border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.about-page-expertise-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.35s ease;
}

.about-page-expertise-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.about-page-expertise-card:hover::after {
    width: 100%;
}

.about-page-expertise-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--smoke-color);
    color: var(--accent-color);
    font-size: 22px;
    margin-bottom: 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

.about-page-expertise-card:hover .about-page-expertise-card__icon {
    background: var(--accent-color);
    color: #fff;
}

.about-page-expertise-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.about-page-expertise-card p {
    margin: 0;
    line-height: 1.7;
}

.about-page-global-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--th-border-color);
    padding: 32px;
    transition: box-shadow 0.3s ease;
}

.about-page-global-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.about-page-global-card__head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--th-border-color);
}

.about-page-global-card__flag {
    font-size: 36px;
    line-height: 1;
}

.about-page-global-card__sub {
    font-size: 13px;
    color: var(--accent-color);
    font-weight: 500;
}

.about-page-global-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-page-global-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--body-color);
}

.about-page-global-card__list li i {
    color: var(--accent-color);
    margin-top: 4px;
    flex-shrink: 0;
}

.about-page-timeline__track {
    position: relative;
    padding-left: 32px;
}

.about-page-timeline__track::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-color), var(--theme-color2));
}

.about-page-timeline__item {
    position: relative;
    padding: 0 0 28px 24px;
}

.about-page-timeline__item:last-child {
    padding-bottom: 0;
}

.about-page-timeline__item::before {
    content: '';
    position: absolute;
    left: -26px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-color);
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--accent-color);
}

.about-page-timeline__year {
    display: inline-block;
    font-family: var(--title-font);
    font-size: 22px;
    font-weight: 700;
    color: var(--title-color);
    margin-bottom: 4px;
}

.about-page-timeline__item p {
    margin: 0;
    line-height: 1.7;
    color: var(--body-color);
}

.about-page-training__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-page-training__list li {
    position: relative;
    padding: 14px 0 14px 28px;
    border-bottom: 1px solid var(--th-border-color);
    line-height: 1.65;
    color: var(--body-color);
}

.about-page-training__list li:last-child {
    border-bottom: none;
}

.about-page-training__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22px;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    transform: rotate(45deg);
}

.about-page-contact-strip {
    background: var(--theme-color);
    padding: 60px 0;
}

.about-page-contact-strip__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.about-page-contact-strip__info .sub-title {
    color: var(--accent-color) !important;
}

.about-page-contact-strip__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.about-page-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.25s ease;
}

.about-page-contact-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-color);
    color: #fff;
}

.about-page-contact-link i {
    color: var(--accent-color);
}

.about-page-contact-strip .th-btn {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

.about-page-contact-strip .th-btn:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

@media (max-width: 991px) {
    .about-page-story__grid {
        grid-template-columns: 1fr;
    }

    .about-page-portrait {
        max-width: 640px;
        margin: 0 auto 8px;
    }

    .about-page-contact-strip__inner {
        flex-direction: column;
        text-align: center;
    }

    .about-page-contact-strip__actions {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .about-page-hero {
        padding-top: 70px;
        padding-bottom: 60px;
    }

    .about-page-portrait__badge {
        right: 0;
        bottom: -12px;
    }

    .about-page-quote {
        font-size: 15px;
        padding-left: 48px;
    }
}

.about-page-simple {
    padding-top: 90px;
    padding-bottom: 110px;
}

.about-page-simple__inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.about-page-simple__photo {
    margin-bottom: 40px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(1, 28, 26, 0.12);
}

.about-page-simple__photo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-page-simple__slogan {
    margin: 0 auto;
    max-width: 820px;
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.75;
    color: var(--title-color);
    font-weight: 500;
}

@media (max-width: 767px) {
    .about-page-simple {
        padding-top: 70px;
        padding-bottom: 80px;
    }

    .about-page-simple__photo {
        margin-bottom: 28px;
        border-radius: 16px;
    }
}

/* Iletisim sayfasi form gorseli */
.contact-page-thumb {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.contact-page-thumb img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* ============================================================
   Ekip listesi ve detay sayfasi
   ============================================================ */

.team-card--linked {
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card--linked:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.team-card__link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.team-card.style-2.team-card--linked .team-img,
.team-card.style-2.team-card--member .team-img,
.team-card.style-2.team-card--static .team-img {
    height: 320px;
    overflow: hidden;
}

.team-card.style-2.team-card--linked .team-img img,
.team-card.style-2.team-card--member .team-img img,
.team-card.style-2.team-card--static .team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.team-card--linked .team-img img {
    transition: transform 0.4s ease;
}

.team-card--linked:hover .team-img img {
    transform: scale(1.04);
}

.team-card__excerpt {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.65;
    color: var(--body-color);
}

.team-card__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    transition: gap 0.25s ease;
}

.team-card--linked:hover .team-card__more {
    gap: 12px;
}

.team-card--member,
.team-card--static {
    height: 100%;
}

.team-card--static .team-content {
    text-align: center;
}

.team-detail-hero {
    padding-top: 90px;
    padding-bottom: 70px;
}

.team-detail-portrait {
    max-width: 420px;
    margin: 0 auto;
}

.team-detail-portrait__frame {
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.team-detail-portrait__frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    z-index: 2;
}

.team-detail-portrait__frame img {
    display: block;
    width: 100%;
    min-height: 460px;
    object-fit: cover;
    object-position: top center;
}

.team-detail-name {
    margin-bottom: 8px;
}

.team-detail-positions {
    margin-bottom: 20px;
}

.team-detail-position {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 6px;
}

.team-detail-position:last-child {
    margin-bottom: 0;
}

.team-positions {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-bottom: 12px;
}

.team-card.style-2 .team-content .team-desig,
.team-card .team-desig {
    display: block;
    margin-bottom: 0 !important;
    color: var(--accent-color) !important;
    font-weight: 600;
    line-height: 1.35;
}

.team-detail-languages {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.team-detail-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.team-detail-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border: 1px solid var(--th-border-color);
    color: var(--title-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.25s ease;
}

.team-detail-contact-item:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.team-detail-contact-item i {
    color: var(--accent-color);
}

.team-detail-bio__content {
    line-height: 1.85;
}

.team-detail-bio__content,
.team-detail-bio__content p,
.team-detail-bio__content li {
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: auto;
    hyphens: auto;
}

.team-detail-bio__content p,
.team-detail-bio__content li {
    color: var(--body-color);
}

.team-detail-bio__content p:last-child,
.team-detail-bio__content > *:last-child {
    margin-bottom: 0;
}

.team-detail-sidebar__box {
    background: #fff;
    border: 1px solid var(--th-border-color);
    padding: 28px;
    margin-bottom: 24px;
}

.team-detail-sidebar__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-detail-sidebar__member {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--th-border-color);
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.team-detail-sidebar__member:last-child {
    border-bottom: none;
}

.team-detail-sidebar__member:hover {
    color: var(--accent-color);
}

.team-detail-sidebar__member img {
    width: 52px;
    height: 52px;
    object-fit: cover;
    border-radius: 50%;
    flex-shrink: 0;
}

.team-detail-sidebar__member strong {
    display: block;
    font-size: 15px;
    color: var(--title-color);
}

.team-detail-sidebar__member small {
    display: block;
    font-size: 12px;
    color: var(--body-color);
}

.team-detail-sidebar__cta {
    background: var(--theme-color);
    padding: 28px;
}

.team-detail-sidebar__cta p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.team-detail-sidebar__cta .th-btn {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

@media (max-width: 991px) {
    .team-detail-portrait__frame img {
        min-height: 360px;
    }
}

/* Video / foto galeri */
.gallery-sec-3 .gallery-card2 .gallery-img {
    position: relative;
    overflow: hidden;
    min-height: 220px;
}

.gallery-sec-3 .gallery-card2 .gallery-img .video-poster-fallback {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}

.gallery-sec-3 .gallery-card2 .gallery-content {
    position: absolute !important;
    inset: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    transform: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 2;
}

.gallery-sec-3 .gallery-card2 .gallery-content .icon-btn {
    --btn-size: 72px;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 72px !important;
    height: 72px !important;
    min-width: 72px;
    min-height: 72px;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
    background: rgba(0, 0, 0, 0.72) !important;
    border: 2px solid rgba(255, 255, 255, 0.85) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
}

.gallery-sec-3 .gallery-card2 .gallery-content .icon-btn i {
    font-size: 0 !important;
    line-height: 0 !important;
    width: 0;
    height: 0;
}

.gallery-sec-3 .gallery-card2 .gallery-content .icon-btn::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 11px 0 11px 18px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 4px;
}

.gallery-sec-3 .gallery-card2:hover .gallery-content .icon-btn {
    background: var(--accent-color, #C8102E) !important;
    border-color: #ffffff !important;
    transform: scale(1.05) !important;
}

/* Foto galeri - video galeri ile ayni arka plan goruntusu (mobilde img yari gorunme sorunu yok) */
.gallery-sec-3 .photo-gallery-card.gallery-card2 {
    width: 100%;
    flex: none !important;
}

.gallery-sec-3 .photo-gallery-card .gallery-img {
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
}

.gallery-sec-3 .photo-gallery-card .gallery-img[data-bg-position="center 28%"] {
    background-position: center 28% !important;
}

.gallery-sec-3 .photo-gallery-card .gallery-content .icon-btn::before {
    display: none !important;
    content: none !important;
    border: 0 !important;
    margin: 0 !important;
}

.gallery-sec-3 .photo-gallery-card .gallery-content .icon-btn i {
    font-size: 24px !important;
    line-height: 1 !important;
    width: auto !important;
    height: auto !important;
}

@media (max-width: 991px) {
    .gallery-sec-3 .photo-gallery-card.gallery-card2.inner .gallery-img {
        display: block !important;
        width: 100% !important;
    }
}

.gallery-sec-3 .gallery-item-title {
    margin-top: 14px;
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--title-color, #011C1A);
    text-align: center;
    line-height: 1.4;
}

.gallery-sec-3 .local-video-popup video {
    display: block;
    max-width: 100%;
    max-height: 80vh;
    margin: 0 auto;
    background: #000;
}

/* Video galeri popup - dikey/yatay videolari ortala */
.mfp-local-video .mfp-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

.mfp-local-video .mfp-content {
    position: relative !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    max-width: calc(100vw - 48px);
    margin: 0 auto;
    vertical-align: middle;
    text-align: center;
}

.mfp-local-video .local-video-popup {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    line-height: 0;
}

.mfp-local-video .local-video-popup video {
    display: block;
    width: auto !important;
    height: auto !important;
    max-width: min(92vw, 960px);
    max-height: calc(100vh - 96px);
    margin: 0 auto;
    object-fit: contain;
    background: #000;
    border-radius: 8px;
}

/* Site geneli - Times New Roman */
:root {
    --title-font: "Times New Roman", Times, serif;
    --body-font: "Times New Roman", Times, serif;
    --bs-font-sans-serif: "Times New Roman", Times, serif;
}

html,
body {
    font-family: "Times New Roman", Times, serif !important;
    font-synthesis: none;
}

body :where(
    h1, h2, h3, h4, h5, h6,
    p, a, span, li, label, small, strong, em,
    input, textarea, select, option, button,
    .th-btn, .sec-title, .hero-title, .sub-title,
    .breadcumb-title, .box-title, .widget_title,
    .main-menu, .mobile-menu, .footer-wrapper,
    .copyright-text, .about-text, .sec-text
) {
    font-family: "Times New Roman", Times, serif !important;
}

.fa,
.fas,
.far,
.fal,
.fat,
.fa-solid,
.fa-regular,
.fa-light,
.fa-thin,
[class^="fa-solid"],
[class*=" fa-solid"],
[class^="fa-regular"],
[class*=" fa-regular"],
[class^="fa-light"],
[class*=" fa-light"],
[class^="fa-thin"],
[class*=" fa-thin"] {
    font-family: "Font Awesome 6 Pro" !important;
}

.fab,
.fa-brands,
[class^="fa-brands"],
[class*=" fa-brands"] {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

/* Homepage audience selection */
.home-audience-sec {
    position: relative;
    z-index: 2;
}

.home-audience-sec__subtitle {
    margin: 0;
    color: var(--body-color);
    line-height: 1.7;
}

.home-audience-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 28px 24px;
    background: #fff;
    border: 1px solid var(--th-border-color);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.home-audience-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: width 0.35s ease;
}

.home-audience-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    color: inherit;
}

.home-audience-card:hover::after {
    width: 100%;
}

.home-audience-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--smoke-color);
    color: var(--accent-color);
    font-size: 22px;
    margin-bottom: 18px;
    transition: background 0.3s ease, color 0.3s ease;
}

.home-audience-card:hover .home-audience-card__icon {
    background: var(--accent-color);
    color: #fff;
}

.home-audience-card__title {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--title-color);
}

.home-audience-card__text {
    margin: 0 0 18px;
    line-height: 1.65;
    flex-grow: 1;
    font-size: 15px;
}

.home-audience-card__link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 14px;
}

/* Audience landing pages */
.audience-page {
    background: linear-gradient(180deg, #fff 0%, var(--smoke-color2, #f5f5f5) 100%);
}

.audience-page__intro {
    text-align: center;
    font-size: 19px;
    line-height: 1.8;
    margin: 0 auto 48px;
    max-width: 720px;
    color: var(--body-color);
}

.audience-page__topics {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 56px;
    background: #fff;
    border: 1px solid var(--th-border-color);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.06);
}

.audience-topic {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 28px;
    padding: 32px 36px;
    border-bottom: 1px solid var(--th-border-color);
    position: relative;
}

.audience-topic:last-child {
    border-bottom: none;
}

.audience-topic__marker {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 4px;
}

.audience-topic__index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 52px;
    font-family: var(--title-font);
    font-size: 18px;
    font-weight: 600;
    color: var(--accent-color);
    background: var(--smoke-color);
    border: 1px solid rgba(200, 16, 46, 0.12);
}

.audience-topic__title {
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.35;
    margin: 0 0 14px;
    color: var(--title-color);
}

.audience-topic__text {
    margin: 0;
    line-height: 1.8;
    color: var(--body-color);
    font-size: 16px;
}

.audience-topic__list-block {
    margin-top: 22px;
    padding: 22px 24px;
    background: var(--smoke-color);
    border-left: 3px solid var(--accent-color);
}

.audience-topic__list-heading {
    font-size: 17px;
    margin: 0 0 12px;
    color: var(--title-color);
}

.audience-topic__list {
    margin: 0;
    padding-left: 1.2rem;
    line-height: 1.75;
    color: var(--body-color);
}

.audience-topic__list li + li {
    margin-top: 8px;
}

.audience-page__footer-cta {
    margin-top: 0;
    padding: 40px 32px;
    background: var(--title-color);
    color: #fff;
    text-align: center;
}

.audience-page__footer-cta p {
    margin: 0 auto 24px;
    max-width: 560px;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    font-size: 16px;
}

.audience-page__footer-cta .th-btn.style4 {
    background: #fff;
    color: var(--title-color);
    border-color: #fff;
}

.audience-page__footer-cta .th-btn.style4:hover {
    background: var(--accent-color);
    color: #fff;
    border-color: var(--accent-color);
}

@media (max-width: 767px) {
    .home-audience-card {
        padding: 22px 18px;
    }

    .audience-page__intro {
        font-size: 17px;
        margin-bottom: 32px;
    }

    .audience-topic {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 24px 20px;
    }

    .audience-topic__marker {
        justify-content: flex-start;
    }

    .audience-topic__index {
        min-width: 44px;
        height: 44px;
        font-size: 16px;
    }

    .audience-topic__list-block {
        padding: 18px 16px;
    }

    .audience-page__footer-cta {
        padding: 32px 20px;
    }
}
