﻿/* =========================================================
    GENEL AYARLAR
========================================================= */
body {
    font-family: "Source Sans Pro", Arial, sans-serif;
    color: #444;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.section-title {
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
    text-align: center;
}

/* =========================================================
    HERO SECTION
========================================================= */
.hero-services-section,
.hero-news-section {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    color: #fff;
    overflow: hidden;
}

.hero-services-bg {
    position: absolute;
    inset: 0;
    background-image: url("/img/sayfalar/hizmetlerimiz/daf-hizmetlerimiz-office.png");
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-services-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.6) 100%);
    z-index: 2;
}

.hero-services-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    padding-top: 140px;
    padding-bottom: 40px;
}

.hero-services-title-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
}

.services-hero-title-upper {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 400;
    color: #E2DFD2;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 8px;
}

.hero-services-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.hero-about-breadcrumb,
.hero-services-breadcrumb {
    font-size: 13px;
    font-weight: 400;
    color: #ddd;
    margin-top: 15px;
    display: flex;
    align-items: center;
}

    .hero-about-breadcrumb a,
    .hero-services-breadcrumb a {
        color: #ddd;
        text-decoration: none;
        transition: color 0.3s;
    }

        .hero-about-breadcrumb a:hover,
        .hero-services-breadcrumb a:hover {
            color: #dfb887;
        }

    .hero-about-breadcrumb span,
    .hero-services-breadcrumb span {
        color: #fff;
        font-weight: 400;
        margin-left: 8px;
    }

.hero-about-slogan-wrapper,
.hero-services-slogan-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
}

.hero-about-slogan-text-style,
.hero-services-slogan-text-style {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 600;
    line-height: 1.3;
    border-left: 3px solid #fff;
    padding-left: 18px;
    color: #fff;
    text-transform: capitalize;
}

/* =========================================================
    CONTENT SECTION
========================================================= */
.services-content {
    background-color: #fff;
}

.services-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.intro-container {
    padding-top: 80px;
    padding-bottom: 60px;
}

.content-container h3 {
    color: #1F3363;
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    margin-bottom: 20px;
}

.content-container p {
    font-size: clamp(15px, 2vw, 16px);
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.content-container .pageMove {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    background-color: #1F3363;
    border: 2px solid #1F3363;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .content-container .pageMove {
        margin-bottom: 0.75rem;
    }
}

.content-container .pageMove:hover {
    background-color: transparent;
    color: #1F3363;
    box-shadow: 0 0 0 6px rgba(31, 51, 99, 0.1);
}

.content-container img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

/* =========================================================
    PRACTICE CARDS - Grid System
========================================================= */
.practice-cards-row {
    margin-bottom: 80px;
    padding-top: 20px;
}

    .practice-cards-row .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%;
        padding: 0 15px;
        margin-bottom: 30px;
    }

.practice-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

    .practice-card:hover {
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
        transform: translateY(-8px);
        border-color: #1F3363;
    }

    .practice-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        transition: transform 0.3s ease;
    }

    .practice-card:hover img {
        transform: scale(1.05);
    }

    .practice-card a {
        text-decoration: none;
        color: inherit;
    }

.practice-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    padding: 20px 18px;
    margin: 0;
    text-align: center;
    line-height: 1.4;
    transition: color 0.3s;
}

.practice-card:hover .practice-title {
    color: #1F3363;
}

@media (max-width: 480px) {
    .practice-card {
        max-width: 100%;
    }

        .practice-card img {
            height: 140px;
        }

    .practice-title {
        font-size: 13px;
        padding: 12px 10px;
        line-height: 1.3;
    }
}

/* =========================================================
    CONTACT SECTION
========================================================= */
.row-contact {
    margin-top: 60px;
    margin-bottom: 60px;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-text {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 13px;
    color: white;
    background-color: #1F3363;
    border: 2px solid #1F3363;
    border-radius: 4px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .contact-button:hover {
        background-color: transparent;
        color: #1F3363;
        box-shadow: 0 0 0 6px rgba(31, 51, 99, 0.1);
    }

.arrow-icon {
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 6px solid white;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    margin-left: 5px;
    transition: border-left-color 0.3s;
}

.contact-button:hover .arrow-icon {
    border-left-color: #1F3363;
}

/* =========================================================
    SERVICE TEMPLATE - Detail Page
========================================================= */
.hero-servicesTemplate-section {
    position: relative;
    width: 100%;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-servicesTemplate-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-servicesTemplate-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 2;
}

.hero-servicesTemplate-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.hero-servicesTemplate-title-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
}

.servicesTemplate-hero-title-upper {
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 400;
    color: #E2DFD2;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 8px;
}

.hero-servicesTemplate-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-servicesTemplate-breadcrumb {
    font-size: 13px;
    font-weight: 400;
    color: #ddd;
    margin-top: 10px;
    display: flex;
    align-items: center;
}

    .hero-servicesTemplate-breadcrumb a {
        color: #ddd;
        text-decoration: none;
        transition: color 0.3s;
    }

        .hero-servicesTemplate-breadcrumb a:hover {
            color: #dfb887;
        }

    .hero-servicesTemplate-breadcrumb span {
        color: #fff;
        font-weight: 400;
        margin-left: 8px;
    }

/* =========================================================
    PAGE CONTENT
========================================================= */
.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 60px 80px;
}

.service-page-content {
    padding-top: 50px;
    padding-bottom: 50px;
}

    .service-page-content p {
        font-size: clamp(15px, 2vw, 16px);
        line-height: 1.8;
        color: #555;
        margin-bottom: 20px;
    }

/* =========================================================
    TANITIM BOX
========================================================= */
.tanitimText {
    color: white;
    background-color: #1F3363;
    padding: 35px 30px;
    border-radius: 6px;
    margin-top: 0;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .tanitimText p {
        font-size: 17px;
        font-style: italic;
        line-height: 1.7;
        color: #fff;
        margin-bottom: 20px;
    }

    .tanitimText span {
        display: block;
        text-align: right;
        font-size: 15px;
        font-weight: 600;
        color: #dfb887;
        margin-top: auto;
    }

/* =========================================================
    SECTION SEPARATOR
========================================================= */
.section-separator {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e5e7eb;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .section-separator h4 {
        font-size: clamp(18px, 2.5vw, 22px);
        font-weight: 700;
        color: #1a1a1a;
        margin: 0;
    }

/* =========================================================
    AVUKAT KARTLARI
========================================================= */
.hizmetlerimiz-avukat-col {
    padding: 0 15px;
    margin-bottom: 30px;
    flex: 0 0 25%;
    max-width: 25%;
}

.hizmetlerimiz-avukat-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    padding: 0;
    transition: all 0.3s ease;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
}

    .hizmetlerimiz-avukat-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    }

.hizmetlerimiz-avukat-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top center;
    border-radius: 0;
    margin-bottom: 0;
}

.hizmetlerimiz-avukat-name-link {
    text-decoration: none;
    display: block;
    padding: 20px 15px 15px;
}

.hizmetlerimiz-avukat-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
    transition: color 0.3s;
}

.hizmetlerimiz-avukat-card:hover .hizmetlerimiz-avukat-name {
    color: #1F3363;
}

.avukat-title {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    margin-bottom: 0;
}

.card-divider {
    background-color: #dfb887;
    margin: 0 auto 15px;
    border: none;
    width: 60px;
    height: 3px;
    border-radius: 2px;
}

.mail-box-link {
    font-size: 20px;
    color: #666;
    transition: color 0.3s;
    padding-bottom: 15px;
    display: inline-block;
}

    .mail-box-link:hover {
        color: #1F3363;
    }

/* Telefon için geniş avukat kartları */
@media (max-width: 768px) {
    .hizmetlerimiz-avukat-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0 10px;
    }

    .hizmetlerimiz-avukat-card {
        max-width: 100%;
        margin: 0 auto 30px;
    }

    .hizmetlerimiz-avukat-img {
        height: 280px;
        width: 100%;
    }

    .hizmetlerimiz-avukat-name-link {
        padding: 25px 20px 20px;
    }

    .hizmetlerimiz-avukat-name {
        font-size: 20px;
    }

    .avukat-title {
        font-size: 15px;
    }

    .card-divider {
        width: 70px;
        height: 4px;
        margin: 15px auto 20px;
    }
}

/* =========================================================
    FEATURED PUBLICATIONS
========================================================= */
.featured-publications-title {
    font-size: clamp(18px, 2.5vw, 22px);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

    .featured-publications-title::after {
        content: '';
        display: block;
        width: 100%;
        height: 3px;
        background-color: #e5e7eb;
        position: absolute;
        bottom: -8px;
        left: 0;
    }

.featured-publication-card {
    padding: 20px;
    border: 1px solid #e5e7eb;
    background-color: #f9fafb;
    border-radius: 8px;
    height: 100%;
}

.featured-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .featured-publication-card {
        text-align: center;
        padding: 30px 20px;
        max-width: 500px;
        margin: 0 auto;
    }

        .featured-publication-card .content-tag-button {
            margin: 0 auto 15px;
            display: inline-block;
        }

    .featured-img {
        margin: 0 auto 20px;
    }
}

/* =========================================================
    RELATED CONTENT TABS
========================================================= */
.related-content-heading {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 50px;
    color: #1a1a1a;
}

.custom-tabs {
    border-bottom: 2px solid #e5e7eb;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
    list-style: none;
    gap: 5px;
}

    .custom-tabs .nav-item {
        margin-bottom: -2px;
    }

    .custom-tabs .nav-link {
        color: #666;
        border: none;
        padding: 12px 20px;
        font-size: 15px;
        font-weight: 500;
        transition: all 0.3s;
        background: transparent;
        cursor: pointer;
        border-bottom: 3px solid transparent;
    }

        .custom-tabs .nav-link:hover {
            color: #1a1a1a;
            border-bottom-color: #cbd5e1;
        }

        .custom-tabs .nav-link.active {
            color: #1F3363;
            border-bottom-color: #1F3363;
            font-weight: 600;
        }

/* =========================================================
    CONTENT CARDS
========================================================= */
.content-card {
    padding: 25px;
    border: 1px solid #e5e7eb;
    background-color: #f8f9fa;
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s ease;
}

    .content-card:hover {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        transform: translateY(-4px);
    }

.created-Date {
    font-size: 13px;
    color: #9ca3af;
    margin-bottom: 10px;
    font-weight: 500;
}

.textContent {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #1a1a1a;
}

.slug-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .content-card {
        text-align: center;
        padding: 30px 20px;
    }

        .content-card img {
            margin: 0 auto 15px;
        }
}

.show-all-button {
    background-color: transparent;
    color: #1F3363;
    border: 2px solid #1F3363;
    padding: 12px 32px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .show-all-button:hover {
        background-color: #1F3363;
        color: white;
        box-shadow: 0 0 0 6px rgba(31, 51, 99, 0.1);
    }

/* =========================================================
    RESPONSIVE - TABLET (992px - 768px)
========================================================= */
@media (max-width: 992px) {
    .hero-services-container,
    .hero-servicesTemplate-container,
    .services-page-content,
    .page-content {
        padding-left: 40px;
        padding-right: 40px;
    }

    .practice-cards-row .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .section-separator {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

        .section-separator h4,
        .featured-publications-title {
            width: 100%;
        }

    .hizmetlerimiz-avukat-col {
        flex: 0 0 33.333%;
        max-width: 33.333%;
    }

    .hizmetlerimiz-avukat-col {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .hizmetlerimiz-avukat-card {
        max-width: 100%;
    }

    .hizmetlerimiz-avukat-img {
        height: 380px;
    }
}

/* =========================================================
    RESPONSIVE - MOBILE (768px and below)
========================================================= */
@media (max-width: 768px) {
    .hero-services-section,
    .hero-servicesTemplate-section {
        min-height: 350px;
        height: auto;
    }

    .hero-services-container,
    .hero-servicesTemplate-container {
        padding: 30px 25px;
        padding-top: 120px;
        padding-bottom: 30px;
    }

    .services-page-content,
    .page-content {
        padding: 40px 25px;
    }

    .intro-container {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .practice-cards-row {
        margin-bottom: 40px;
    }

        .practice-cards-row .col-lg-3 {
            flex: 0 0 100%;
            max-width: 100%;
            padding: 0 0;
            margin-bottom: 20px;
        }

    .practice-card img {
        height: 220px;
    }

    .practice-title {
        font-size: 15px;
        padding: 18px 15px;
    }

    .row-contact {
        margin-top: 40px;
        margin-bottom: 40px;
    }

    .tanitimText {
        margin-top: 30px;
        padding: 25px 20px;
    }

    .hizmetlerimiz-avukat-col {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .hizmetlerimiz-avukat-card {
        margin: 0 auto;
    }

    .hizmetlerimiz-avukat-img {
        height: 340px;
    }

    .featured-img {
        height: 200px;
    }

    .custom-tabs {
        justify-content: center;
    }

        .custom-tabs .nav-link {
            font-size: 14px;
            padding: 10px 15px;
        }
}

/* =========================================================
    RESPONSIVE - SMALL MOBILE (480px and below)
========================================================= */
@media (max-width: 480px) {
    .hero-services-container,
    .hero-servicesTemplate-container,
    .services-page-content,
    .page-content {
        padding-left: 20px;
        padding-right: 20px;
    }

    .practice-cards-row .col-lg-3 {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 8px;
    }

    .practice-card {
        max-width: 100%;
    }

        .practice-card img {
            height: 140px;
        }

    .practice-title {
        font-size: 13px;
        padding: 12px 10px;
        line-height: 1.3;
    }

    .hizmetlerimiz-avukat-col {
        padding: 0 10px;
    }

    .hizmetlerimiz-avukat-card {
        max-width: 100%;
    }

    .hizmetlerimiz-avukat-img {
        height: 260px;
        width: 100%;
    }

    .featured-img {
        height: 180px;
    }

    .content-card {
        padding: 25px 15px;
    }

    .featured-publication-card {
        padding: 25px 15px;
        max-width: 100%;
    }
}
