/* Inner CMS pages — contact, about, help, gallery, testimonials, after-sales, generic prose */

/* ── Extended buttons ── */
.page-inner .btn-lg {
    padding: 0.875rem 1.625rem;
    font-size: 0.9375rem;
    border-radius: var(--border-radius-lg, 16px);
}

.page-inner .btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid rgba(var(--brand-rgb, 219, 11, 18), 0.45);
}

.page-inner .btn-outline-primary:hover {
    background: rgba(var(--brand-rgb, 219, 11, 18), 0.08);
    border-color: var(--primary-color);
    color: var(--primary-dark);
}

.page-inner .shadow-glow {
    box-shadow: 0 8px 28px rgba(var(--brand-rgb, 219, 11, 18), 0.32);
}

.page-inner .shadow-glow:hover {
    box-shadow: 0 12px 36px rgba(var(--brand-rgb, 219, 11, 18), 0.38);
}

/* ── Shared prose (CMS content) ── */
.page-inner .page-content {
    color: var(--text-main);
    font-size: 1.0625rem;
    line-height: 1.75;
}

.page-inner .page-content > :first-child {
    margin-top: 0;
}

.page-inner .page-content h2,
.page-inner .page-content h3,
.page-inner .page-content h4 {
    font-family: var(--font-display);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #0f172a;
    line-height: 1.2;
}

.page-inner .page-content h2 {
    margin: 2rem 0 0.875rem;
    font-size: clamp(1.375rem, 3vw, 1.75rem);
}

.page-inner .page-content h3 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.25rem;
}

.page-inner .page-content p {
    margin: 0 0 1.125rem;
}

.page-inner .page-content ul,
.page-inner .page-content ol {
    margin: 0 0 1.25rem;
    padding-left: 1.375rem;
}

.page-inner .page-content li {
    margin-bottom: 0.4rem;
}

.page-inner .page-content a:not(.btn) {
    color: var(--primary-color);
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.page-inner .page-content a:not(.btn):hover {
    color: var(--primary-dark);
}

.page-inner .page-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

/* ── Icon info rows (contact, etc.) ── */
.info-row {
    display: flex;
    gap: 1.125rem;
    align-items: flex-start;
}

.info-row__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff 0%, var(--bg-light) 100%);
    color: var(--primary-color);
    font-size: 1.125rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

.info-row__body h4 {
    margin: 0 0 0.35rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-dark);
}

.info-row__body p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-gray);
}

.info-row__body a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.info-row__body a:hover {
    text-decoration: underline;
}

/* ── Inner forms ── */
.inner-form-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.inner-form-card__title {
    margin: 0 0 1.5rem;
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}

.inner-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.inner-form-field {
    margin-bottom: 1rem;
}

.inner-form-field label {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #334155;
}

.inner-form-field input,
.inner-form-field select,
.inner-form-field textarea {
    width: 100%;
    padding: 0.75rem 0.875rem;
    border: 1px solid #dbe3ee;
    border-radius: 10px;
    font: inherit;
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.inner-form-field input:focus,
.inner-form-field select:focus,
.inner-form-field textarea:focus {
    outline: none;
    border-color: rgba(var(--brand-rgb, 219, 11, 18), 0.55);
    box-shadow: 0 0 0 3px rgba(var(--brand-rgb, 219, 11, 18), 0.12);
}

.inner-form-field textarea {
    min-height: 140px;
    resize: vertical;
}

.inner-form-terms {
    margin: 0 0 1.25rem;
    font-size: 0.875rem;
    color: var(--text-gray);
    line-height: 1.55;
}

.inner-form-terms label {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    cursor: pointer;
}

.inner-form-terms input[type="checkbox"] {
    margin-top: 0.2rem;
    width: 16px;
    height: 16px;
    accent-color: var(--primary-color);
}

.inner-form-terms a {
    color: var(--primary-color);
    font-weight: 600;
}

.inner-form-submit {
    width: 100%;
    padding: 0.9375rem 1.25rem;
}

@media (max-width: 640px) {
    .inner-form-row {
        grid-template-columns: 1fr;
    }
}

/* ── Contact page ── */
.contact-page {
    padding: clamp(1.5rem, 4vw, 2.75rem) 0 clamp(2.5rem, 5vw, 4rem);
    background:
        radial-gradient(ellipse 80% 50% at 100% 0%, rgba(var(--brand-rgb, 219, 11, 18), 0.06), transparent 55%),
        linear-gradient(180deg, #f4f6f9 0%, #fff 12rem);
}

.contact-alert {
    display: flex;
    gap: 0.875rem;
    align-items: flex-start;
    margin: 0 0 1.5rem;
    padding: 1rem 1.125rem;
    border-radius: 12px;
    border: 1px solid transparent;
}

.contact-alert i {
    margin-top: 0.15rem;
    font-size: 1.25rem;
}

.contact-alert strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 0.9375rem;
}

.contact-alert p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: inherit;
    opacity: 0.9;
}

.contact-alert--success {
    background: #ecfdf5;
    border-color: #a7f3d0;
    color: #065f46;
}

.contact-alert--error {
    background: #fef2f2;
    border-color: #fecaca;
    color: #991b1b;
}

.contact-quick {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: clamp(1.75rem, 4vw, 2.5rem);
}

.contact-quick__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    padding: 0.875rem 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-quick__item:hover,
.contact-quick__item:focus-visible {
    border-color: rgba(var(--brand-rgb, 219, 11, 18), 0.45);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
    transform: translateY(-1px);
    outline: none;
}

.contact-quick__icon {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(var(--brand-rgb, 219, 11, 18), 0.08);
    color: var(--primary-color, #db0b12);
    font-size: 1rem;
}

.contact-quick__item--wa .contact-quick__icon {
    background: rgba(37, 211, 102, 0.12);
    color: #128c7e;
}

.contact-quick__meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.contact-quick__label {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
}

.contact-quick__value {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-page__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: clamp(1.75rem, 4vw, 3rem);
    align-items: start;
}

.contact-page__heading {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.contact-page__intro {
    margin: 0 0 1.75rem;
    font-size: 1.015rem;
    line-height: 1.7;
    color: var(--text-gray, #64748b);
}

.contact-page__rows {
    display: grid;
    gap: 1.35rem;
}

.contact-page__rows .info-row__body h3 {
    margin: 0 0 0.35rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-dark, #0f172a);
}

.contact-page__side-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 2rem;
}

.contact-page__side-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-page__form-lead {
    margin: -0.5rem 0 1.25rem;
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-gray, #64748b);
}

.contact-page__form.inner-form-card {
    position: sticky;
    top: 1rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
}

.contact-map {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: #0f172a;
    color: #e2e8f0;
}

.contact-map__header {
    display: block;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2rem;
}

.contact-map .contact-map__label {
    margin: 0 0 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.contact-map .contact-map__title,
.page-inner .contact-map__title,
.page-inner-shell .contact-map__title {
    margin: 0 0 0.875rem;
    color: #fff !important;
}

.contact-map .contact-map__lead {
    margin: 0 auto 1.25rem;
    max-width: 52ch;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(226, 232, 240, 0.88);
}

.contact-map .contact-map__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 0.15rem;
}

.contact-map .contact-map__link:hover,
.contact-map .contact-map__link:focus-visible {
    color: #fecaca;
    border-color: #fecaca;
    outline: none;
}

.contact-map__frame {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #1e293b;
    aspect-ratio: 21 / 9;
    min-height: 240px;
}

.contact-map__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.15) contrast(1.05);
}

.contact-offices {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
    background: #fff;
}

.contact-offices__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 2rem;
}

.contact-offices__title {
    margin: 0 0 0.75rem;
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 3vw, 1.75rem);
    font-weight: 800;
    color: #0f172a;
}

.contact-offices__lead {
    margin: 0 auto;
    max-width: 52ch;
    font-size: 1rem;
    line-height: 1.65;
    color: #64748b;
}

.contact-offices__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.contact-office {
    padding: 1.25rem 1.35rem;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    background: linear-gradient(165deg, #fff 0%, #f8fafc 100%);
}

.contact-office__region {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #64748b;
}

.contact-office__name {
    margin: 0 0 0.5rem;
    font-size: 1.0625rem;
    font-weight: 700;
    color: #0f172a;
}

.contact-office__address {
    margin: 0 0 0.75rem;
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #475569;
}

.contact-office__link {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color, #db0b12);
    text-decoration: none;
}

.contact-office__link:hover {
    text-decoration: underline;
}

.contact-faq {
    position: relative;
    z-index: 1; /* Footer ::before üstüne binmesin */
    padding: clamp(2.75rem, 5vw, 4rem) 0 clamp(3rem, 5vw, 4rem);
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
}

.contact-faq__inner {
    /* .container genişliğini koru — max-width:none ezmesin */
    width: min(1200px, 100% - 2rem);
    max-width: 1200px;
    margin-inline: auto;
}

.contact-faq__header {
    text-align: center;
    margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}

.page-inner .contact-faq__title,
.contact-faq__title {
    margin: 0;
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.contact-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 52rem;
    margin-inline: auto;
}

.contact-faq__item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-faq__item[open] {
    border-color: rgba(var(--brand-rgb, 219, 11, 18), 0.28);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.contact-faq__item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    list-style: none;
    padding: 1.15rem 1.35rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(0.9375rem, 1.6vw, 1.0625rem);
    line-height: 1.35;
    color: #0f172a;
    user-select: none;
}

.contact-faq__item summary::-webkit-details-marker {
    display: none;
}

.contact-faq__item summary::after {
    content: "";
    flex-shrink: 0;
    width: 0.55rem;
    height: 0.55rem;
    margin-top: -0.15rem;
    border-right: 2px solid #94a3b8;
    border-bottom: 2px solid #94a3b8;
    transform: rotate(45deg);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.contact-faq__item[open] summary {
    color: var(--primary-color, #db0b12);
    background: linear-gradient(180deg, rgba(var(--brand-rgb, 219, 11, 18), 0.04) 0%, transparent 100%);
    border-bottom: 1px solid rgba(var(--brand-rgb, 219, 11, 18), 0.1);
}

.contact-faq__item[open] summary::after {
    margin-top: 0.2rem;
    border-color: var(--primary-color, #db0b12);
    transform: rotate(225deg);
}

.contact-faq__item summary:hover {
    color: var(--primary-color, #db0b12);
}

.contact-faq__answer {
    padding: 0.35rem 1.35rem 1.25rem;
}

.contact-faq__answer p {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: #475569;
}

@media (max-width: 480px) {
    .contact-faq__item summary {
        padding: 1rem 1.1rem;
    }

    .contact-faq__answer {
        padding: 0.25rem 1.1rem 1.1rem;
    }
}

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

@media (max-width: 900px) {
    .contact-page__layout {
        grid-template-columns: 1fr;
    }

    .contact-page__form.inner-form-card {
        position: static;
    }

    .contact-offices__grid {
        grid-template-columns: 1fr;
    }

    .contact-map__frame {
        aspect-ratio: 16 / 10;
    }
}

@media (max-width: 640px) {
    .contact-quick {
        grid-template-columns: 1fr;
    }

    .contact-quick__item {
        padding: 0.875rem 1rem;
    }

    .contact-page__side-cta {
        flex-direction: column;
    }

    .contact-page__side-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ── About page ── */
.about-page-stats {
    padding: 0;
    margin-top: -1.75rem;
    position: relative;
    z-index: 2;
}

.announcement-band--after-hero + .about-page-stats {
    margin-top: 0;
}

.about-page-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.about-page-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.25rem 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.07);
}

.about-page-stat-value {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    line-height: 1;
    color: var(--primary-color);
}

.about-page-stat-label {
    margin-top: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-gray);
    line-height: 1.35;
}

.about-page-main {
    padding: clamp(2.5rem, 5vw, 4rem) 0;
}

.about-page-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(280px, 0.85fr);
    gap: clamp(2rem, 4vw, 3rem);
    align-items: start;
}

.about-page-article .page-content {
    padding: 0;
}

.about-page-card {
    padding: 1.375rem 1.5rem;
    margin-bottom: 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
}

.about-page-card--accent {
    border-color: rgba(var(--brand-rgb, 219, 11, 18), 0.22);
    background: linear-gradient(145deg, #fff 0%, rgba(var(--brand-rgb, 219, 11, 18), 0.04) 100%);
}

.about-page-card-title {
    margin: 0 0 0.875rem;
    font-size: 1.0625rem;
    font-weight: 800;
    color: #0f172a;
}

.about-page-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.about-page-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--text-main);
}

.about-page-list li i {
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.about-page-card-text {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--text-gray);
}

.about-page-cta-btn {
    margin-top: 1rem;
    width: 100%;
}

.about-page-bottom-cta {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    background: linear-gradient(135deg, #0b0f14 0%, #151b24 55%, #1a2230 100%);
    color: #fff;
}

.about-page-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem 2rem;
}

.page-inner .about-page-bottom-title,
.about-page-bottom-title {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: #fff;
}

.about-page-bottom-text {
    margin: 0;
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

.about-page-bottom-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.page-inner .about-page-bottom-actions .btn-outline-primary,
.about-page-bottom-actions .btn-outline-primary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.page-inner .about-page-bottom-actions .btn-outline-primary:hover,
.about-page-bottom-actions .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
    color: #fff;
}

/* ── About tabs (accordion) ── */
.about-tabs {
    margin-top: clamp(2rem, 4vw, 2.75rem);
}

.about-tabs__title {
    margin: 0 0 1rem;
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 2.5vw, 1.375rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.about-tabs__list {
    display: grid;
    gap: 0.55rem;
}

.about-tabs__item {
    border: 1px solid #dbe2ea;
    border-radius: 4px;
    background: #fff;
    overflow: hidden;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.about-tabs__item.is-open {
    background: #eef9f6;
    border-color: #c5e4dc;
}

.about-tabs__trigger {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    margin: 0;
    padding: 0.95rem 1.1rem;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 700;
    color: #334155;
    transition: color 0.2s ease;
}

.about-tabs__trigger:hover {
    color: #0f172a;
}

.about-tabs__chevron {
    position: relative;
    flex-shrink: 0;
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(-45deg);
    transition: transform 0.22s ease;
    opacity: 0.7;
}

.about-tabs__item.is-open .about-tabs__chevron {
    transform: rotate(45deg);
}

.about-tabs__label {
    flex: 1;
    min-width: 0;
}

.about-tabs__panel {
    padding: 0 1.1rem 1.1rem 2.4rem;
    color: #475569;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.about-tabs__panel p {
    margin: 0 0 0.75rem;
}

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

.about-tabs__link {
    display: inline-flex;
    margin-top: 0.35rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color, #db0b12);
    text-decoration: none;
}

.about-tabs__link:hover {
    text-decoration: underline;
}

@media (max-width: 640px) {
    .about-tabs__trigger {
        padding: 0.85rem 0.95rem;
        font-size: 0.875rem;
    }

    .about-tabs__panel {
        padding: 0 0.95rem 0.95rem 2.1rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 900px) {
    .about-page-stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .about-page-layout {
        grid-template-columns: 1fr;
    }

    .about-page-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-page-bottom-actions {
        width: 100%;
    }

    .about-page-bottom-actions .btn {
        flex: 1 1 auto;
        min-width: min(100%, 200px);
    }
}

@media (max-width: 480px) {
    .about-page-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .about-page-stat {
        padding: 1rem 0.75rem;
    }
}

/* ── Help center ── */
.help-center-main {
    padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem);
    background: #f8fafc;
}

.help-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.help-quick-card {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    padding: 1.25rem 1.125rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.help-quick-card:hover {
    border-color: rgba(var(--brand-rgb, 219, 11, 18), 0.35);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.help-quick-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(var(--brand-rgb, 219, 11, 18), 0.1);
    color: var(--primary-color);
    font-size: 1rem;
}

.help-quick-card h2 {
    margin: 0;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
}

.help-quick-card p {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--text-gray);
}

.help-center-split {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: start;
}

.help-center-content.page-content {
    padding: 0;
}

.help-geo-box {
    margin-top: 2rem;
    padding: 1.25rem 1.375rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid #dbe3ee;
    background: #fff;
}

.help-geo-box h2 {
    margin: 0 0 0.75rem;
    font-size: 1.125rem;
    font-weight: 800;
    color: #0f172a;
}

.help-geo-box h2 i {
    color: var(--primary-color);
    margin-right: 0.35rem;
}

.help-geo-list {
    margin: 0.75rem 0 0;
    padding: 0;
    list-style: none;
}

.help-geo-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.4rem;
    font-size: 0.9375rem;
    color: var(--text-main);
}

.help-geo-list i {
    color: var(--primary-color);
    width: 1rem;
    text-align: center;
}

.help-faq-aside {
    position: sticky;
    top: calc(var(--pars-header, 80px) + 1rem);
    padding: 1.375rem 1.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.help-faq-title {
    margin: 0 0 1rem;
    font-size: 1.0625rem;
    font-weight: 800;
    color: #0f172a;
}

.help-faq-item {
    border-bottom: 1px solid #eef2f6;
}

.help-faq-item:last-of-type {
    border-bottom: none;
}

.help-faq-item summary {
    padding: 0.875rem 0;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #1e293b;
    cursor: pointer;
    list-style: none;
}

.help-faq-item summary::-webkit-details-marker {
    display: none;
}

.help-faq-item p {
    margin: 0 0 0.875rem;
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.help-faq-note {
    margin: 1rem 0 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: var(--text-gray);
}

@media (max-width: 960px) {
    .help-quick-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .help-center-split {
        grid-template-columns: 1fr;
    }

    .help-faq-aside {
        position: static;
    }
}

@media (max-width: 480px) {
    .help-quick-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Gallery ── */
.gallery-page-main {
    padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.gallery-page-article.page-content {
    padding: 0;
}

.gallery-page-intro {
    margin-bottom: 2rem;
}

.gallery-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 1.25rem;
}

.gallery-item {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.gallery-item:hover {
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.1);
    transform: translateY(-2px);
}

.gallery-item-media {
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f1f5f9;
}

.gallery-item-media a {
    display: block;
    width: 100%;
    height: 100%;
}

.gallery-item-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.gallery-item:hover .gallery-item-media img {
    transform: scale(1.04);
}

.gallery-item-title {
    margin: 0;
    padding: 0.875rem 1rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.4;
}

.gallery-page-empty {
    padding: 3rem 1rem;
    text-align: center;
    color: #64748b;
}

/* ── Testimonials ── */
/* ── Referanslar (testimonials) ── */
.refs-page {
    padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(2.5rem, 5vw, 4rem);
    background: linear-gradient(180deg, #f8fafc 0%, #fff 10rem);
}

.refs-page__intro {
    max-width: 44rem;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: #475569;
    font-size: 1.015rem;
    line-height: 1.7;
}

.refs-page__intro.page-content {
    padding: 0;
}

.refs-section-head {
    text-align: center;
    margin: 0 auto 1.75rem;
    max-width: 40rem;
}

.refs-section-head--reviews {
    margin-top: clamp(2.75rem, 6vw, 4rem);
}

.refs-section-head__label {
    margin: 0 0 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #64748b;
}

.refs-section-head__title {
    margin: 0 0 0.65rem;
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.refs-section-head__lead {
    margin: 0;
    font-size: 0.96875rem;
    line-height: 1.6;
    color: #64748b;
}

.refs-deliveries {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.refs-delivery {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.22s ease, transform 0.22s ease;
}

.refs-delivery:hover {
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    transform: translateY(-2px);
}

.refs-delivery__media {
    position: relative;
    aspect-ratio: 4 / 3;
    background: #e8eef4;
    overflow: hidden;
}

.refs-delivery__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.refs-delivery__lightbox {
    display: block;
    width: 100%;
    height: 100%;
}

.refs-delivery__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 55%, #f8fafc 100%);
    color: #94a3b8;
}

.refs-delivery__placeholder-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.refs-delivery__date {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.25rem 0.55rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.72);
    color: #fff;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.refs-delivery__body {
    padding: 1.1rem 1.15rem 1.25rem;
}

.refs-delivery__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem;
    margin: 0 0 0.4rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-color, #db0b12);
}

.refs-delivery__dot {
    opacity: 0.5;
    color: #94a3b8;
}

.refs-delivery__title {
    margin: 0 0 0.4rem;
    font-size: 1.015rem;
    font-weight: 800;
    letter-spacing: -0.015em;
    color: #0f172a;
    line-height: 1.3;
}

.refs-delivery__note {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.55;
    color: #64748b;
}

.refs-empty {
    margin: 0;
    padding: 2.5rem 1rem;
    text-align: center;
    color: #64748b;
    background: #fff;
    border: 1px dashed #cbd5e1;
    border-radius: 10px;
}

.refs-reviews {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.refs-review {
    margin: 0;
    padding: 1.35rem 1.4rem 1.25rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 2px 14px rgba(15, 23, 42, 0.04);
}

.refs-review__quote {
    margin: 0 0 1.1rem;
    font-size: 0.96875rem;
    line-height: 1.65;
    color: #334155;
}

.refs-review__quote::before {
    content: "“";
    color: var(--primary-color, #db0b12);
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 0;
    margin-right: 0.15rem;
}

.refs-review__footer {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding-top: 0.85rem;
    border-top: 1px solid #eef2f7;
}

.refs-review__author {
    font-size: 0.875rem;
    font-weight: 700;
    color: #0f172a;
}

.refs-review__role,
.refs-review__place {
    font-size: 0.75rem;
    color: #64748b;
}

.refs-cta {
    padding: clamp(2.5rem, 5vw, 3.5rem) 0;
    background: linear-gradient(135deg, #0b0f14 0%, #151b24 55%, #1a2230 100%);
    color: #fff;
}

.refs-cta__inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem 2rem;
}

.page-inner .refs-cta__title,
.refs-cta__title {
    margin: 0 0 0.5rem;
    font-family: var(--font-display);
    font-size: clamp(1.375rem, 3vw, 1.75rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.2;
    color: #fff;
}

.refs-cta__text {
    margin: 0;
    max-width: 36rem;
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.72);
}

.refs-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.page-inner .refs-cta__actions .btn-outline-primary,
.refs-cta__actions .btn-outline-primary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.35);
}

.page-inner .refs-cta__actions .btn-outline-primary:hover,
.refs-cta__actions .btn-outline-primary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #fff;
    color: #fff;
}

@media (max-width: 960px) {
    .refs-deliveries {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .refs-deliveries,
    .refs-reviews {
        grid-template-columns: 1fr;
    }

    .refs-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .refs-cta__actions {
        width: 100%;
    }

    .refs-cta__actions .btn {
        flex: 1 1 auto;
        min-width: min(100%, 200px);
    }
}

.testimonials-page-prose.page-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

/* ── After sales ── */
.after-sales-main {
    padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem);
}

.after-sales-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
    gap: clamp(1.5rem, 4vw, 2.5rem);
    align-items: start;
}

.after-sales-content.page-content {
    padding: 0;
}

.after-sales-image-wrap {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.after-sales-image {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 860px) {
    .after-sales-grid {
        grid-template-columns: 1fr;
    }

    .after-sales-aside {
        order: -1;
    }
}

/* ── Generic CMS page (show.php) ── */
.cms-page {
    padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem);
    background: #f8fafc;
}

.cms-page__card {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: clamp(1.5rem, 4vw, 2.75rem);
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.cms-page__card .page-content {
    padding: 0;
}

/* ── Terms & legal pages ── */
.terms-page-main {
    padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem);
    background: #f8fafc;
}

.terms-page-article.page-content {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
}

/* ── HTML sitemap ── */
.html-sitemap-main {
    padding: clamp(2rem, 5vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem);
    background: #f8fafc;
}

.html-sitemap-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.6fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.html-sitemap-stats {
    display: grid;
    gap: 0.75rem;
}

.html-sitemap-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-align: center;
}

.html-sitemap-stat strong {
    font-size: 1.375rem;
    color: var(--primary-color);
}

.html-sitemap-stat span {
    font-size: 0.8125rem;
    color: var(--text-gray);
    font-weight: 600;
}

.html-sitemap-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.html-sitemap-section {
    padding: 1.25rem 1.375rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
}

.html-sitemap-section h2 {
    margin: 0 0 1rem;
    font-size: 1rem;
    font-weight: 800;
    color: #0f172a;
}

.html-sitemap-section h2 i {
    color: var(--primary-color);
    margin-right: 0.35rem;
}

.html-sitemap-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.html-sitemap-list li {
    margin-bottom: 0.5rem;
}

.html-sitemap-list a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9375rem;
}

.html-sitemap-list a:hover {
    text-decoration: underline;
}

.html-sitemap-desc {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.8125rem;
    color: var(--text-gray);
    line-height: 1.45;
}

.html-sitemap-list--cols {
    columns: 2;
    column-gap: 1.5rem;
}

.html-sitemap-list--cols li {
    break-inside: avoid;
}

.html-sitemap-list--compact a {
    font-weight: 500;
    font-size: 0.875rem;
}

.html-sitemap-empty {
    color: var(--text-gray);
    font-size: 0.9375rem;
}

.html-sitemap-xml-note {
    margin: 0.75rem 0 0;
    font-size: 0.8125rem;
}

.html-sitemap-products {
    padding: 1.375rem 1.5rem;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-lg);
}

.html-sitemap-products h2 {
    margin: 0 0 0.5rem;
    font-size: 1.125rem;
    font-weight: 800;
}

.html-sitemap-products-lead {
    margin: 0 0 1.25rem;
    color: var(--text-gray);
    font-size: 0.9375rem;
}

.html-sitemap-product-group {
    border-top: 1px solid #eef2f6;
    padding: 0.75rem 0;
}

.html-sitemap-product-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    cursor: pointer;
    font-weight: 700;
    color: #1e293b;
    list-style: none;
}

.html-sitemap-product-group summary::-webkit-details-marker {
    display: none;
}

.html-sitemap-count {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .html-sitemap-intro {
        grid-template-columns: 1fr;
    }

    .html-sitemap-list--cols {
        columns: 1;
    }
}

/* ── Search results page ── */
.search-page {
    padding: clamp(1.75rem, 4vw, 3rem) 0 clamp(3rem, 5vw, 4rem);
    background: linear-gradient(180deg, #f8fafc 0%, #fff 8rem);
}

.search-page__form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    max-width: 40rem;
    margin: 0 auto 1.75rem;
}

.search-page__form input[type="search"] {
    flex: 1 1 14rem;
    min-height: 48px;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font: inherit;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    background: #fff;
}

.search-page__form input[type="search"]:focus {
    outline: none;
    border-color: rgba(var(--brand-rgb, 219, 11, 18), 0.45);
    box-shadow: 0 0 0 4px rgba(var(--brand-rgb, 219, 11, 18), 0.08);
}

.search-page__form .btn {
    min-height: 48px;
    padding: 0.75rem 1.35rem;
}

.search-page__head {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.75rem 1.25rem;
    margin-bottom: 1.5rem;
}

.page-inner .search-page__heading,
.search-page__heading {
    margin: 0;
    font-size: clamp(1.15rem, 2.5vw, 1.375rem);
    font-weight: 800;
    color: #0f172a;
}

.search-page__query {
    font-weight: 600;
    color: #64748b;
}

.search-page__catalog-link {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color, #db0b12);
    text-decoration: none;
}

.search-page__catalog-link:hover {
    text-decoration: underline;
}

.search-page__empty {
    margin: 0 0 0.75rem;
    text-align: center;
    color: #64748b;
    font-size: 1rem;
}

.search-page__hint {
    margin: 0;
    text-align: center;
    font-size: 0.9rem;
    color: #94a3b8;
}

.search-page__hint a {
    color: var(--primary-color, #db0b12);
    font-weight: 600;
}

.search-page__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

@media (max-width: 960px) {
    .search-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .search-page__grid {
        grid-template-columns: 1fr;
    }
}
