/**
 * Shared: footer, inner-page content width (matches home inspire / 1120 shell),
 * inner schedule strip, homepage blog strip overrides, narrow-mobile CTA centering.
 */

/* —— Content width: 1620px shell, responsive (Bootstrap container max-width cleared) —— */
.site-inspire-width {
    width: 100% !important;
    max-width: 1620px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: clamp(16px, 4vw, 40px) !important;
    padding-right: clamp(16px, 4vw, 40px) !important;
    box-sizing: border-box;
}

.container.site-inspire-width {
    max-width: 1620px !important;
}

/* —— Inner pages: business CTA card (mobile: image → copy → button) —— */
.inner-schedule-meeting-wrap.inner-schedule-cta {
    position: relative;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    background: #f1f4f8;
    border-top: 1px solid rgba(15, 20, 25, 0.08);
    padding: clamp(22px, 4vw, 40px) 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.inner-schedule-cta__card {
    background: #ffffff;
    border: 1px solid rgba(15, 20, 25, 0.07);
    border-radius: 16px;
    box-shadow:
        0 1px 2px rgba(15, 20, 25, 0.04),
        0 12px 40px rgba(15, 20, 25, 0.07);
    padding: clamp(16px, 3.2vw, 28px);
    box-sizing: border-box;
}

.inner-schedule-cta__inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(18px, 3vw, 26px);
}

.inner-schedule-cta__media {
    margin: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #e8ecf1;
    aspect-ratio: 16 / 9;
    box-shadow: inset 0 0 0 1px rgba(15, 20, 25, 0.05);
}

.inner-schedule-cta__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.inner-schedule-cta__content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: clamp(16px, 2.5vw, 22px);
    min-width: 0;
}

.inner-schedule-cta__copy {
    text-align: center;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.inner-schedule-cta__eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #64748b;
    margin: 0 0 8px;
}

.inner-schedule-cta__title {
    font-size: clamp(1.25rem, 3.8vw, 1.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f1419;
    line-height: 1.2;
    margin: 0 0 10px;
}

.inner-schedule-cta__lead {
    font-size: clamp(0.9rem, 2.4vw, 1rem);
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

.inner-schedule-cta__actions {
    width: 100%;
    display: flex;
    justify-content: center;
}

.inner-schedule-cta__btn.schedule-meeting-btn,
.inner-schedule-cta .schedule-meeting-btn.inner-schedule-cta__btn {
    width: 100%;
    max-width: 100%;
    min-height: 48px;
    box-sizing: border-box;
    white-space: normal;
    text-align: center;
}

@media (min-width: 768px) {
    .inner-schedule-cta__inner {
        flex-direction: row;
        align-items: center;
        gap: clamp(22px, 3vw, 32px);
    }

    .inner-schedule-cta__media {
        flex: 0 0 clamp(200px, 28vw, 280px);
        width: clamp(200px, 28vw, 280px);
        aspect-ratio: 4 / 3;
        align-self: center;
    }

    .inner-schedule-cta__content {
        flex: 1 1 0;
        min-width: 0;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: clamp(18px, 2.5vw, 28px);
    }

    .inner-schedule-cta__copy {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }

    .inner-schedule-cta__actions {
        flex: 0 0 auto;
        width: auto;
        justify-content: flex-end;
    }

    .inner-schedule-cta__btn.schedule-meeting-btn,
    .inner-schedule-cta .schedule-meeting-btn.inner-schedule-cta__btn {
        width: auto;
        max-width: none;
        min-height: 0;
        white-space: nowrap;
        padding-left: clamp(22px, 2.5vw, 36px);
        padding-right: clamp(22px, 2.5vw, 36px);
    }
}

/* —— Inner pages: catalog strip (aligned with inner-schedule band) —— */
.inner-catalog-meeting-wrap.inner-catalog-cta {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    background: #ffffff;
    border-top: 1px solid rgba(15, 20, 25, 0.08);
    padding: clamp(22px, 4vw, 40px) 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

.inner-catalog-cta__card {
    background: #f8fafc;
    border: 1px solid rgba(15, 20, 25, 0.07);
    border-radius: 16px;
    box-shadow:
        0 1px 2px rgba(15, 20, 25, 0.04),
        0 12px 40px rgba(15, 20, 25, 0.06);
    padding: clamp(14px, 2vw, 22px);
    box-sizing: border-box;
}

.inner-catalog-cta__head {
    text-align: center;
    max-width: 42rem;
    margin: 0 auto clamp(18px, 3vw, 26px);
}

.inner-catalog-cta__eyebrow {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #64748b;
    margin: 0 0 8px;
}

.inner-catalog-cta__title {
    font-size: clamp(1.25rem, 3.8vw, 1.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f1419;
    line-height: 1.2;
    margin: 0 0 10px;
}

.inner-catalog-cta__lead {
    font-size: clamp(0.9rem, 2.4vw, 1rem);
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

.inner-catalog-cta__grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    /* Mobil + dar tablet: tek sütun (alt alta) */
    grid-template-columns: 1fr;
    gap: 12px;
}

/* Tablet (768–991): tek sütun — kartlar ve 120px görsel alanı sıkışmasın */
@media (min-width: 992px) {
    .inner-catalog-cta__grid:not(.inner-catalog-cta__grid--two) {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1200px) {
    .inner-catalog-cta__grid:not(.inner-catalog-cta__grid--two) {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.inner-catalog-cta__tile {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 120px;
    max-height: 120px;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(15, 20, 25, 0.08);
    text-decoration: none;
    color: #0f1419;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    box-shadow: 0 2px 10px rgba(15, 20, 25, 0.05);
}

.inner-catalog-cta__tile:hover {
    border-color: rgba(15, 20, 25, 0.14);
    box-shadow: 0 12px 36px rgba(15, 20, 25, 0.1);
    transform: translateY(-2px);
    color: #0f1419;
    text-decoration: none;
}

.inner-catalog-cta__thumb {
    flex: 0 0 120px;
    width: 120px;
    max-width: 120px;
    height: 120px;
    max-height: 120px;
    background: #e8ecf1;
    overflow: hidden;
    align-self: stretch;
}

.inner-catalog-cta__thumb img {
    width: 100%;
    height: 100%;
    max-height: 120px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.inner-catalog-cta__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 8px 10px 8px 12px;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    overflow: hidden;
}

.inner-catalog-cta__tile-title {
    font-weight: 800;
    font-size: 0.8125rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.inner-catalog-cta__tile-sub {
    font-size: 0.6875rem;
    line-height: 1.3;
    color: #64748b;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
}

.inner-catalog-cta__tile-cta {
    margin-top: 4px;
    padding-top: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #0f1419;
}

.inner-catalog-cta__tile-cta .fa-file-pdf {
    color: #b91c1c;
    font-size: 12px;
}

/* Pre-footer (kurumsal): full-bleed band, own color — separate from dark footer; content in container */
.inner-catalog-cta.inner-catalog-cta--pre-footer {
    background: #eef2f7;
    border-top: 1px solid rgba(15, 20, 25, 0.08);
    border-bottom: 1px solid rgba(15, 20, 25, 0.06);
    padding: clamp(28px, 5vw, 56px) 0;
    margin: 0;
}

.inner-catalog-cta--pre-footer .inner-catalog-cta__inner-wrap {
    width: 100%;
    max-width: 1620px;
}

.inner-catalog-cta__split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.25fr);
    align-items: start;
    gap: clamp(22px, 4vw, 40px);
}

.inner-catalog-cta__head--split {
    text-align: left;
    max-width: 28rem;
    margin: 0;
}

.inner-catalog-cta--pre-footer .inner-catalog-cta__head--split .inner-catalog-cta__eyebrow {
    color: #64748b;
}

.inner-catalog-cta--pre-footer .inner-catalog-cta__head--split .inner-catalog-cta__title {
    color: #0f1419;
}

.inner-catalog-cta--pre-footer .inner-catalog-cta__head--split .inner-catalog-cta__lead {
    color: #475569;
}

.inner-catalog-cta__panel {
    background: #ffffff;
    border: 1px solid rgba(15, 20, 25, 0.08);
    border-radius: 16px;
    padding: 10px 12px;
    box-shadow:
        0 1px 2px rgba(15, 20, 25, 0.04),
        0 14px 40px rgba(15, 20, 25, 0.08);
    box-sizing: border-box;
}

/* Pre-footer: mobil + tablet tek sütun; masaüstünde iki sütun (tablette sıkışmayı önler) */
.inner-catalog-cta__grid.inner-catalog-cta__grid--two {
    grid-template-columns: 1fr;
    gap: 12px;
}

@media (min-width: 992px) {
    .inner-catalog-cta__grid.inner-catalog-cta__grid--two {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991px) {
    .inner-catalog-cta__split {
        grid-template-columns: 1fr;
    }

    .inner-catalog-cta__head--split {
        text-align: center;
        max-width: 40rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.home-schedule-meeting .schedule-meeting-visual {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

.home-schedule-meeting .schedule-meeting-hero {
    margin: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(15, 20, 25, 0.12);
    background: #eceff3;
    aspect-ratio: 4 / 3;
}

.home-schedule-meeting .schedule-meeting-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-schedule-meeting .schedule-meeting-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.home-schedule-meeting .schedule-meeting-thumbs img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 8px 24px rgba(15, 20, 25, 0.1);
}

.home-schedule-meeting .schedule-meeting-copy {
    padding: 12px 8px 12px 12px;
    max-width: 520px;
}

@media (min-width: 992px) {
    .home-schedule-meeting .schedule-meeting-copy {
        margin-left: auto;
    }
}

.home-schedule-meeting .schedule-meeting-eyebrow {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 700;
    color: #4a5568;
    margin: 0 0 14px;
}

.home-schedule-meeting .schedule-meeting-title {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #0f1419;
    margin: 0 0 16px;
}

.home-schedule-meeting .schedule-meeting-lead {
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.65;
    color: #4a5568;
    margin: 0 0 18px;
    text-align: justify;
}

.home-schedule-meeting .schedule-meeting-list {
    margin: 0 0 26px;
    padding-left: 1.15rem;
    color: #374151;
    font-size: 15px;
    line-height: 1.65;
}

.home-schedule-meeting .schedule-meeting-list li {
    margin-bottom: 8px;
}

.home-schedule-meeting .schedule-meeting-btn,
.home-tresette-showcase .schedule-meeting-btn,
.home-blog-strip .news-blog-btn .schedule-meeting-btn,
.inner-schedule-cta .schedule-meeting-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: 2px solid #0f1419;
    border-radius: 999px;
    background: #0f1419;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-schedule-meeting .schedule-meeting-btn:hover,
.home-tresette-showcase .schedule-meeting-btn:hover,
.home-blog-strip .news-blog-btn .schedule-meeting-btn:hover,
.inner-schedule-cta .schedule-meeting-btn:hover {
    background: #fff;
    color: #0f1419;
    text-decoration: none;
}

/* ≤992px (stacked layout): homepage schedule band + CTA visually centered */
@media (max-width: 991.98px) {
    .home-schedule-meeting-wrap {
        padding-left: max(12px, env(safe-area-inset-left, 0px)) !important;
        padding-right: max(12px, env(safe-area-inset-right, 0px)) !important;
    }

    .home-schedule-meeting-wrap > .container {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .home-schedule-meeting-wrap .home-schedule-meeting > .row {
        justify-content: center !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .home-schedule-meeting-wrap .home-schedule-meeting > .row > [class*="col-"] {
        padding-left: 8px !important;
        padding-right: 8px !important;
        float: none !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .home-schedule-meeting-wrap .schedule-meeting-visual {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .home-schedule-meeting-wrap .schedule-meeting-copy {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        max-width: 100% !important;
        padding-left: 4px !important;
        padding-right: 4px !important;
    }

    .home-schedule-meeting-wrap .schedule-meeting-lead {
        text-align: center !important;
    }

    .home-schedule-meeting-wrap .schedule-meeting-list {
        text-align: left;
        display: table;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .home-schedule-meeting-wrap .schedule-meeting-btn,
    .home-schedule-meeting-wrap #openAppointmentModal {
        display: flex !important;
        width: 100%;
        max-width: min(300px, 88vw);
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box;
    }

    .home-schedule-meeting .schedule-meeting-btn,
    .home-tresette-showcase .schedule-meeting-btn {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 767.98px) {
    .home-tresette-showcase__panel {
        text-align: center;
    }
}

/* —— Site footer —— */
.site-footer {
    background: #0f1419;
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
    padding: clamp(40px, 6vw, 64px) clamp(16px, 4vw, 32px) clamp(28px, 4vw, 40px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-family: "DM Sans", system-ui, -apple-system, Segoe UI, sans-serif;
}

.site-footer__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.site-footer__logo {
    display: block;
    margin: 0 auto 20px;
    height: 48px;
    width: auto;
}

.site-footer__slogan {
    font-size: clamp(17px, 2.2vw, 22px);
    font-weight: 600;
    line-height: 1.45;
    color: #fff;
    margin: 0 auto 28px;
    max-width: 36rem;
    letter-spacing: 0.02em;
}

.site-footer__nav {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 18px;
}

.site-footer__nav a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 6px 4px;
    border-bottom: 1px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.site-footer__nav a:hover {
    color: #fff;
    border-bottom-color: rgba(251, 187, 66, 0.85);
}

.site-footer__contact {
    margin: 0 0 24px;
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.75);
}

.site-footer__contact p {
    margin: 0 0 8px;
}

.site-footer__contact a {
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
}

.site-footer__contact a:hover {
    text-decoration: underline;
}

.site-footer__social {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px 20px;
    margin: 0 0 32px;
}

.site-footer__social a {
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-footer__social a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.site-footer__social svg {
    width: 20px;
    height: 20px;
}

.site-footer__bar {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.site-footer__bar span {
    display: block;
}

@media (min-width: 768px) {
    .site-footer__bar span {
        display: inline;
    }
}

/* —— Homepage blog: full-bleed white, cards like rest of site —— */
.home-blog-strip {
    position: relative;
    left: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    background: #ffffff;
    border-top: 1px solid rgba(15, 20, 25, 0.08);
    padding: clamp(48px, 6vw, 80px) 0 clamp(44px, 5vw, 72px);
    box-sizing: border-box;
}

.home-blog-strip .home-news-grid-section {
    margin-top: 0;
    padding-bottom: 0;
}

.home-blog-strip .news-head {
    text-align: center;
    max-width: 920px;
    margin: 0 auto clamp(28px, 4vw, 40px);
    padding: 0 8px;
}

.home-blog-strip .news-title {
    color: #0f1419;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin: 0 0 14px;
    text-transform: uppercase;
}

.home-blog-strip .news-subtitle {
    color: #4a5568;
    font-size: clamp(16px, 2vw, 19px);
    line-height: 1.65;
    margin: 0;
}

.home-blog-strip .news-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 48px rgba(15, 20, 25, 0.1);
}

.home-blog-strip .home-news-grid-section .news-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    transition: none;
}

.home-blog-strip .home-news-grid-section .news-card:hover img {
    transform: none !important;
}

.home-blog-strip .news-card-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(15, 20, 25, 0.75) 100%);
    text-align: center;
}

.home-blog-strip .news-card-title {
    color: #fff;
    font-size: 14px;
}

.home-blog-strip .news-nav-btn {
    border: 1px solid rgba(15, 20, 25, 0.2);
    color: #0f1419;
    background: #ffffff;
}

.home-blog-strip .news-nav-btn:hover {
    background: #0f1419;
    color: #ffffff;
}

.home-blog-strip .news-blog-btn {
    text-align: center;
}


.home-blog-strip__intro {
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.home-blog-strip__eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #64748b;
    margin: 0 0 14px;
}

.home-blog-strip__heading {
    margin-bottom: 12px !important;
}

.home-blog-strip__lead {
    margin-top: 0 !important;
}

.home-blog-strip__slider-shell {
    /* background: linear-gradient(180deg, #f4f7fb 0%, #ffffff 55%); */
    /* border: 1px solid rgba(15, 20, 25, 0.08); */
    border-radius: 22px;
    padding: clamp(14px, 2.8vw, 28px);
    /* box-shadow: 0 10px 40px rgba(15, 20, 25, 0.06); */
}

.home-blog-strip__slider-shell .news-swiper {
    border-radius: 14px;
}

.home-blog-strip__slider-shell .news-nav {
    margin-top: 20px;
}

.home-blog-strip__cta-row {
    margin-top: 24px !important;
}
