/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: var(--hero-min-height);
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    background-image: url("/static/img/big-img/kutlucan_main.jpg");
    background-size: 120%;
    background-position: center center;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        var(--hero-overlay-dark) 0%,
        var(--hero-overlay-mid) 35%,
        var(--hero-overlay-soft) 60%,
        var(--hero-overlay-fade) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-text-wrap {
    position: relative;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: var(--hero-copy-max);
    padding-top: var(--hero-padding-top);
    padding-right: 1.25rem;
    padding-bottom: var(--hero-padding-bottom);
    padding-left: 1.25rem;
    isolation: isolate;
}

.hero-text-wrap::before {
    content: "";
    position: absolute;
    top: 9.25rem;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 0;
}

.hero-text-wrap > * {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.hero-line {
    width: 72px;
    height: 1px;
    background-color: var(--hero-line-color);
    flex-shrink: 0;
}

.hero-eyebrow-text {
    color: var(--hero-text-color);
    font-family: var(--font-body);
    font-size: 0.80rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1;
    text-transform: uppercase;
}

.hero-title {
    margin: 0 0 1.75rem 0;
    color: var(--hero-text-color);
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.hero-title-light,
.hero-title-strong {
    display: inline-block;
    font-family: var(--font-heading);
    color: inherit;
}

.hero-title-light {
    position: relative;
    font-size: clamp(2.6rem, 4.4vw, 4.3rem);
    font-weight: 200;
}

.hero-title-strong {
    font-size: clamp(2.8rem, 4.8vw, 4.7rem);
    font-weight: 700;
}

.hero-registered {
    position: absolute;
    top: 0.56em;
    right: -0.12em;
    font-size: 0.20em;
    line-height: 1;
}

.hero-description {
    max-width: 760px;
    margin-bottom: 2rem;
    color: var(--hero-text-muted);
    font-size: var(--fs-body);
    line-height: 1.75;
}

/* =========================================================
   HERO SPLIT SLIDER
========================================================= */

.hero-split-slider {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    overflow: hidden;
    background: #07140a;
}

.hero-split-left {
    position: relative;
    z-index: 5;
    width: 46%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 3.5rem 3rem 4rem;
    background: #07140a;
}

.hero-split-left::after {
    content: "";
    position: absolute;
    top: 15%;
    right: 0;
    bottom: 15%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(110, 200, 122, 0.4), transparent);
}

.hero-split-text {
    display: none;
    max-width: 760px;
}

.hero-split-text.active {
    display: block;
}

.hero-split-text.animate {
    animation: heroSplitFadeIn 0.6s ease both;
}

@keyframes heroSplitFadeIn {
    from {
        opacity: 0;
        transform: translateX(-14px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.hero-split-right {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.hero-split-media {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-split-media.active {
    opacity: 1;
}

.hero-split-media img,
.hero-split-media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-split-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(7, 20, 10, 0.55) 0%, rgba(7, 20, 10, 0) 35%);
}

.hero-split-counter {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.hero-split-counter-num {
    min-width: 48px;
    color: var(--color-primary);
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1;
    transition: opacity 0.3s;
}

.hero-split-counter-track {
    flex: 1;
    max-width: 120px;
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.hero-split-counter-fill {
    height: 100%;
    width: 0;
    background: var(--color-primary);
}

.hero-split-counter-total {
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.82rem;
}

.hero-split-arrows {
    position: absolute;
    right: 2rem;
    bottom: 2.5rem;
    z-index: 10;
    display: flex;
    gap: 0.75rem;
}

.hero-split-arrow {
    width: 48px;
    height: 48px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.25s, background 0.25s;
}

.hero-split-arrow:hover {
    border-color: var(--color-primary);
    background: rgba(0, 94, 32, 0.12);
}

.hero-split-arrow svg {
    width: 18px;
    height: 18px;
    stroke: #ffffff;
    stroke-width: 2;
    fill: none;
}

@media (min-width: 1800px) and (min-height: 1000px) {
    .hero,
    .hero-split-slider {
        min-height: clamp(760px, 72vh, 980px);
    }

    .hero-text-wrap {
        max-width: 760px;
        padding-top: 150px;
        padding-bottom: 70px;
    }

    .hero-split-left {
        width: min(42vw, 1120px);
        padding: 3rem clamp(4rem, 5vw, 7rem);
    }

    .hero-split-text {
        max-width: 700px;
    }

    .hero-title-light {
        font-size: clamp(3rem, 2.6vw, 3.7rem);
    }

    .hero-title-strong {
        font-size: clamp(3.2rem, 2.9vw, 4rem);
    }

    .hero-description {
        max-width: 680px;
    }

    .hero-split-counter {
        margin-top: 2rem;
    }
}

/* =========================================================
   HOME / GENERIC PAGE BLOCKS
========================================================= */

.about-section {
    background: #f3f3f3;
    padding-bottom: var(--section-space-sm);
}

/* =========================================================
   BRANDS SECTION
========================================================= */

.brands-section {
    padding-top: var(--section-space-lg);
    padding-bottom: var(--section-space-lg);
    background: #ffffff;
}

.brands-grid {
    --frame-color: rgba(28, 39, 30, 0.18);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 56px;
    border: 1px solid var(--frame-color);
    background: #ffffff;
    overflow: hidden;
}

.brand-card {
    --accent: var(--brand-green);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 22px;
    min-height: 100%;
    padding: 50px 40px 42px;
    background: #ffffff;
    border-right: 1px solid var(--frame-color);
    transition:
        background-color var(--transition-fast),
        border-color var(--transition-fast);
}

.brand-card:last-child {
    border-right: 0;
}

.brand-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.brand-card:hover,
.brand-card:focus-within {
    background: #f7f8f5;
}

.brand-card:hover::before,
.brand-card:focus-within::before {
    transform: scaleX(1);
}

.brand-card.fendt {
    --accent: var(--color-fendt, var(--brand-green));
}

.brand-card.valtra {
    --accent: var(--color-valtra, var(--brand-green));
}

.brand-card.geri {
    --accent: var(--color-geri, var(--brand-green));
}

.brand-card-head {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.brand-card-since {
    margin: 0;
    color: var(--text-soft);
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.brand-card-logo {
    min-height: 56px;
    display: flex;
    align-items: center;
}

.brand-card-name {
    margin: 0;
    line-height: 1;
}

.brand-card-name img,
.brand-card-logo img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 42px;
    object-fit: contain;
}

.brand-card-desc {
    margin: 0;
    color: var(--text-body);
    font-size: var(--fs-body);
    line-height: 1.85;
    flex: 1;
}

.brand-card-products {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.brand-tag {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 4px 10px;
    border: 1px solid var(--frame-color);
    background: #f7f8f5;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition:
        border-color var(--transition-fast),
        color var(--transition-fast),
        background-color var(--transition-fast);
}

.brand-card:hover .brand-tag,
.brand-card:focus-within .brand-tag {
    border-color: var(--accent);
    color: var(--text-main);
    background: #ffffff;
}

.brand-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.10em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color var(--transition-fast);
}

.brand-card-link i {
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.brand-card:hover .brand-card-link,
.brand-card:focus-within .brand-card-link {
    color: var(--accent);
}

.brand-card:hover .brand-card-link i,
.brand-card:focus-within .brand-card-link i {
    color: var(--accent);
    transform: translateX(4px);
}

/* =========================================================
   ABOUT PAGE
========================================================= */

.page-hero-about {
    background-image: url("/static/img/big-img/kutlucan_main.jpg");
}

.about-intro-section,
.about-story-section,
.about-milestones-section,
.about-values-section {
    padding-top: var(--section-space-md);
    padding-bottom: var(--section-space-md);
}

.about-intro-section,
.about-milestones-section {
    background: var(--color-bg-soft);
}

.about-story-section,
.about-values-section {
    background: #ffffff;
}

.about-intro-media {
    overflow: hidden;
    border: 1px solid var(--color-border-soft);
    background: #ffffff;
}

.about-intro-media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
}

.about-story-content p {
    margin-bottom: 1.4rem;
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.9;
}

.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-summary-card {
    padding: 28px;
    border: 1px solid var(--color-border-soft);
    background: var(--color-bg-soft);
}

.about-summary-label {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--color-primary);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.about-summary-title {
    margin-bottom: 12px;
    color: var(--color-text);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1.3;
}

.about-summary-text {
    margin: 0;
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.8;
}

.about-stat-list {
    display: grid;
    gap: 16px;
}

.about-stat-item {
    padding: 22px 24px;
    border: 1px solid var(--color-border-soft);
    background: #ffffff;
}

.about-stat-number {
    display: block;
    margin-bottom: 4px;
    color: var(--color-primary);
    font-size: 1.6rem;
    font-weight: 700;
}

.about-stat-text {
    display: block;
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.6;
}

.milestone-card {
    height: 100%;
    padding: 28px 24px;
    border: 1px solid var(--color-border-soft);
    background: #ffffff;
}

.milestone-year {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--color-primary);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.milestone-title {
    margin-bottom: 12px;
    color: var(--color-text);
    font-size: 1.2rem;
    font-weight: 600;
}

.milestone-text {
    margin: 0;
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.8;
}

.about-value-card {
    padding: 32px 28px;
    border: 1px solid var(--color-border-soft);
    background: var(--color-bg-soft);
}

.about-value-title {
    margin-bottom: 14px;
    color: var(--color-text);
    font-size: 1.65rem;
    font-weight: 400;
    line-height: 1.25;
}

.about-value-text {
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.85;
}

.about-principles-section {
    padding-top: var(--section-space-md);
    padding-bottom: var(--section-space-md);
    background: #ffffff;
}

.about-principles-header {
    max-width: 860px;
    margin-bottom: 2.75rem;
}

.principle-card {
    height: 100%;
    padding: 28px 24px;
    border: 1px solid var(--color-border-strong);
    background: #ffffff;
    transition:
        border-color var(--transition-fast),
        transform var(--transition-fast),
        box-shadow var(--transition-fast);
}

.principle-card:hover {
    border-color: rgba(0, 94, 32, 0.22);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.principle-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    color: var(--color-primary);
    background: #ffffff;
}

.principle-icon i {
    font-size: 1.35rem;
    line-height: 1;
}

.principle-title {
    margin: 0 0 0.8rem 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.principle-text {
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.8;
}

/* =========================================================
   BRAND PAGE HERO VARIANTS
========================================================= */

.page-hero-fendt {
    background-image: url("/static/img/brands/fendt/fendt-hero.jpg");
}

.page-hero-valtra {
    background-image: url("/static/img/brands/valtra/valtra-hero.jpg");
}

.page-hero-geringhoff {
    background-image: url("/static/img/brands/geringhoff/geringhoff-hero.jpg");
}

/* =========================================================
   HOME NEWS SECTION
========================================================= */

.home-news-section {
    background: #f3f3f3;
    padding-top: var(--section-space-lg);
    padding-bottom: var(--section-space-lg);
}

.home-news-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.home-news-title,
.home-news-subheading {
    max-width: var(--content-max);
}

.home-news-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 1px solid var(--color-primary);
    padding-bottom: 0.15rem;
    transition: color var(--transition-fast), border-color var(--transition-fast);
}

.home-news-all-link:hover,
.home-news-all-link:focus {
    color: var(--color-primary);
    border-color: var(--color-primary);
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0.75rem;
}

.home-news-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
}

.home-news-card--with-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.home-news-card:nth-child(1) {
    grid-column: span 5;
    grid-row: span 2;
    min-height: 420px;
    background: linear-gradient(145deg, #0d3320, #0a2518);
}

.home-news-card:nth-child(2) {
    grid-column: span 4;
    min-height: 200px;
    background: linear-gradient(145deg, #0a1e35, #061428);
}

.home-news-card:nth-child(3) {
    grid-column: span 3;
    min-height: 200px;
    background: linear-gradient(145deg, #1a100a, #120b06);
}

.home-news-card:nth-child(4) {
    grid-column: span 4;
    min-height: 200px;
    background: linear-gradient(145deg, #1a1a0a, #12120a);
}

.home-news-card:nth-child(5) {
    grid-column: span 3;
    min-height: 200px;
    background: linear-gradient(145deg, #0a1a1a, #061212);
}

.home-news-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    z-index: 1;
}

.home-news-card--with-image::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.38) 48%, rgba(0, 0, 0, 0.12) 100%);
}

.home-news-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(76, 175, 80, 0.06);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.35s;
}

.home-news-card:hover::after {
    opacity: 1;
}

.home-news-card:hover {
    border-color: rgba(76, 175, 80, 0.2);
}

.home-news-card-bg-icon {
    position: absolute;
    right: -10px;
    bottom: -10px;
    opacity: 0.06;
    z-index: 0;
    transition: opacity 0.35s, transform 0.35s;
}

.home-news-card--with-image .home-news-card-bg-icon {
    display: none;
}

.home-news-card:hover .home-news-card-bg-icon {
    opacity: 0.1;
    transform: scale(1.05);
}

.home-news-card-bg-icon svg {
    width: 160px;
    stroke: #fff;
    fill: none;
    stroke-width: 0.8;
}

.home-news-card-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    padding: 1.5rem;
    transform: translateY(4px);
    transition: transform 0.3s;
}

.home-news-card:hover .home-news-card-content {
    transform: translateY(0);
}

.home-news-card-category {
    display: block;
    margin-bottom: 0.4rem;
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    line-height: 1.2;
    text-transform: uppercase;
}

.home-news-card-title {
    margin: 0 0 0.3rem 0;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
}

.home-news-card:nth-child(1) .home-news-card-title {
    font-size: 1.9rem;
}

.home-news-card-excerpt {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: var(--fs-body);
    line-height: 1.5;
}

.home-news-card-action {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 0.75rem;
    color: #4caf50;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s 0.05s, transform 0.3s 0.05s;
}

.home-news-card:hover .home-news-card-action {
    opacity: 1;
    transform: none;
}

.home-news-card-action svg {
    width: 12px;
    stroke: #4caf50;
    fill: none;
    stroke-width: 2.5;
}

.home-news-card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    padding: 0.2rem 0.5rem;
    border: 1px solid rgba(76, 175, 80, 0.25);
    background: rgba(76, 175, 80, 0.15);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

/* =========================================================
   NEWS PAGE / PRESS ROOM
========================================================= */

.news-page-section {
    margin-top: var(--section-space-lg);
    padding-top: var(--section-space-md);
    padding-bottom: var(--section-space-md);
}

.news-page-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 4rem;
    align-items: start;
}

.news-page-sidebar {
    position: sticky;
    top: 2rem;
}

.news-page-sidebar-tag {
    display: inline-block;
    margin-bottom: 0.9rem;
    color: var(--color-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
}

.news-page-sidebar-title {
    margin: 0 0 0.75rem 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.news-page-sidebar-desc {
    margin: 0 0 1.75rem 0;
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.8;
}

.news-page-filter-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.75rem;
}

.news-page-filter-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 1px solid var(--color-border-soft);
    background: #ffffff;
    color: var(--color-text-soft);
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition:
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast);
}

.news-page-filter-btn:hover {
    border-color: var(--color-border-strong);
    background: var(--color-bg-soft);
    color: var(--color-text);
}

.news-page-filter-btn.active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #ffffff;
}

.news-page-filter-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    min-height: 22px;
    padding: 0.1rem 0.45rem;
    background: rgba(0, 0, 0, 0.04);
    color: inherit;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
}

.news-page-filter-btn.active .news-page-filter-count {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.news-page-year-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1.75rem;
}

.news-page-year-btn {
    padding: 0.35rem 0.7rem;
    border: 1px solid var(--color-border);
    background: #ffffff;
    color: var(--color-text-muted);
    font-size: 0.76rem;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    transition:
        border-color var(--transition-fast),
        background-color var(--transition-fast),
        color var(--transition-fast);
}

.news-page-year-btn:hover,
.news-page-year-btn.active {
    border-color: var(--color-text);
    color: var(--color-text);
    background: var(--color-bg-soft);
}

.news-page-sidebar-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--color-primary);
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
}

.news-page-sidebar-cta svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    transition: transform var(--transition-fast);
}

.news-page-sidebar-cta:hover svg {
    transform: translateX(3px);
}

.news-page-list {
    min-width: 0;
}

.news-page-year-group-title {
    margin: 0 0 0.75rem 0;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid var(--color-text);
    color: var(--color-text-muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    line-height: 1.2;
    text-transform: uppercase;
}

.news-page-row {
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr) auto;
    gap: 1.25rem;
    align-items: center;
    padding: 1.1rem 0;
    border-bottom: 1px solid var(--color-border-soft);
    color: inherit;
    text-decoration: none;
    transition: background-color var(--transition-fast);
}

.news-page-row:hover {
    background: rgba(0, 94, 32, 0.02);
}

.news-page-date {
    color: var(--color-text-faint);
    font-size: 0.76rem;
    line-height: 1.3;
    white-space: nowrap;
}

.news-page-date strong {
    display: block;
    margin-bottom: 0.08rem;
    color: var(--color-text-soft);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
}

.news-page-body {
    min-width: 0;
}

.news-page-title {
    margin: 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.01em;
    transition: color var(--transition-fast);
}

.news-page-row:hover .news-page-title {
    color: var(--color-primary);
}

.news-page-desc {
    margin-top: 0.35rem;
    color: var(--color-text-muted);
    font-size: var(--fs-body);
    line-height: 1.65;
}

.news-page-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--color-border);
    background: #ffffff;
    color: var(--color-text-muted);
    flex-shrink: 0;
    transition:
        transform var(--transition-fast),
        border-color var(--transition-fast),
        background-color var(--transition-fast),
        color var(--transition-fast);
}

.news-page-arrow svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
}

.news-page-row:hover .news-page-arrow {
    transform: translateX(3px);
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #ffffff;
}

.news-page-pagination {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.5rem;
}

.news-page-pg-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 34px;
    padding: 0 0.55rem;
    border: 1px solid var(--color-border);
    background: #ffffff;
    color: var(--color-text-soft);
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    transition:
        border-color var(--transition-fast),
        background-color var(--transition-fast),
        color var(--transition-fast);
}

.news-page-pg-btn:hover:not(.active) {
    border-color: var(--color-text);
    color: var(--color-text);
    background: var(--color-bg-soft);
}

.news-page-pg-btn.active {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #ffffff;
}

.news-page-pg-btn svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
}

/* =========================================================
   CONTACT PAGE
========================================================= */

.page-hero-contact {
    background-image: url("/static/img/big-img/kutlucan_main.jpg");
}

.contact-info-card {
    height: 100%;
    padding: 1.6rem 1.4rem;
    border: 1px solid var(--color-border-soft);
    background: var(--color-bg-soft);
}

.contact-info-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid var(--color-border);
    background: var(--color-bg-soft);
    color: var(--color-primary);
    font-size: 1.1rem;
    line-height: 1;
}

.contact-info-title {
    margin: 0 0 0.75rem 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.3;
}

.contact-info-text {
    margin: 0;
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.8;
}

.contact-info-text a {
    color: var(--color-text);
    text-decoration: none;
}

.contact-info-text a:hover {
    color: var(--color-primary);
}

.contact-content-wrap {
    height: 100%;
    padding-right: 1rem;
}

.contact-content-text p {
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.85;
}

.contact-socials {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-top: 1.5rem;
}

.contact-social-link {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
    background: #ffffff;
    color: var(--color-text);
    font-size: 1rem;
    text-decoration: none;
    transition:
        background-color var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast),
        transform var(--transition-fast);
}

.contact-social-link:hover {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: #ffffff;
    transform: translateY(-2px);
}

.contact-form-card,
.contact-map-card,
.branch-card {
    border: 1px solid var(--color-border-strong);
    background: #ffffff;
}

.contact-form-card {
    height: 100%;
    padding: 1.75rem;
}

.contact-form-title {
    margin: 0 0 1.1rem 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.25;
}

.contact-form-card .form-label {
    color: var(--color-text);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.contact-form-card .form-control {
    min-height: 40px;
}

.contact-form-card textarea.form-control {
    min-height: 140px;
}

.contact-map-card {
    padding: 1.75rem;
}

.contact-map-embed {
    overflow: hidden;
    border: 1px solid var(--color-border-soft);
    background: var(--color-bg-soft);
}

.contact-map-embed iframe {
    display: block;
    width: 100%;
    height: 460px;
    border: 0;
}

.branches-description {
    max-width: 760px;
}

.branch-card {
    overflow: hidden;
}

.branch-map {
    border-bottom: 1px solid var(--color-border-soft);
    background: var(--color-bg-soft);
}

.branch-map iframe {
    display: block;
    width: 100%;
    height: 220px;
    border: 0;
}

.branch-card-body {
    padding: 1.25rem 1.2rem 1.3rem;
}

.branch-title {
    margin: 0 0 0.65rem 0;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 1.3;
}

.branch-address {
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.75;
}

.branch-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--color-border-soft);
}

.branch-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin: 0;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--color-border-soft);
    color: var(--color-text-soft);
    font-size: var(--fs-body);
    line-height: 1.6;
}

.branch-contact-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.branch-contact-list i {
    flex: 0 0 auto;
    margin-top: 0.15rem;
    color: var(--color-primary);
    font-size: 0.95rem;
    line-height: 1;
}

.branch-contact-list a {
    color: var(--color-text);
    text-decoration: none;
}

.branch-contact-list a:hover {
    color: var(--color-primary);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199.98px) {
    .news-page-layout {
        gap: 3rem;
    }
}

@media (max-width: 991.98px) {
    :root {
        --hero-min-height: 90vh;
        --hero-padding-top: 150px;
        --hero-padding-bottom: 70px;
    }

    .hero {
        background-position: center center;
    }

    .hero-text-wrap {
        max-width: 100%;
    }

    .hero-eyebrow {
        margin-bottom: 1.25rem;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-split-left {
        width: 50%;
        padding: 2.5rem 2rem 2.5rem 2.5rem;
    }

    .about-intro-section,
    .about-story-section,
    .about-milestones-section,
    .about-values-section,
    .about-principles-section {
        padding-top: var(--section-space-sm);
        padding-bottom: var(--section-space-sm);
    }

    .about-principles-header {
        margin-bottom: 2rem;
    }

    .about-intro-media img {
        min-height: 320px;
    }

    .about-summary-card,
    .about-value-card,
    .milestone-card,
    .about-stat-item,
    .principle-card {
        padding: 24px 22px;
    }

    .about-value-title {
        font-size: 1.4rem;
    }

    .principle-title {
        font-size: 1.08rem;
    }

    .brands-section {
        padding: 80px 0;
    }

    .brands-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }

    .brand-card {
        padding: 34px 28px;
        border-right: 0;
        border-bottom: 1px solid var(--frame-color);
    }

    .brand-card:last-child {
        border-bottom: 0;
    }

    .home-news-head {
        align-items: start;
    }

    .news-page-section {
        padding-top: var(--section-space-sm);
        padding-bottom: var(--section-space-sm);
    }

    .news-page-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .news-page-sidebar {
        position: static;
    }

    .news-page-filter-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .news-page-filter-btn {
        width: auto;
    }

    .contact-content-wrap {
        padding-right: 0;
    }

    .contact-form-card,
    .contact-map-card {
        padding: 1.4rem;
    }

    .contact-map-embed iframe {
        height: 380px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --hero-min-height: auto;
        --hero-padding-top: 130px;
        --hero-padding-bottom: 60px;
    }

    .hero-eyebrow {
        gap: 0.75rem;
        flex-wrap: wrap;
    }

    .hero-line {
        width: 52px;
    }

    .hero-eyebrow-text {
        font-size: 0.72rem;
        letter-spacing: 0.10em;
    }

    .hero-title {
        margin-bottom: 1.25rem;
        line-height: 1;
    }

    .hero-description {
        font-size: var(--fs-body);
        line-height: 1.7;
    }

    .hero-split-slider {
        min-height: 100vh;
        flex-direction: column;
    }

    .hero-split-left {
        width: 100%;
        padding: 2rem 1.5rem 5rem;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 50%, transparent 100%);
        position: absolute;
        inset: 0;
        z-index: 5;
        justify-content: flex-end;
    }

    .hero-split-left::after {
        display: none;
    }

    .hero-split-right {
        width: 100%;
        min-height: 100vh;
    }

    .hero-split-arrows {
        right: 1rem;
        bottom: 1.5rem;
    }

    .hero-split-arrow {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 768px) {
    .home-news-grid {
        grid-template-columns: 1fr 1fr;
    }

    .home-news-card:nth-child(1) {
        grid-column: span 2;
        min-height: 240px;
    }

    .home-news-card:nth-child(n + 2) {
        grid-column: span 1;
        min-height: 160px;
    }
}

@media (max-width: 575.98px) {
    :root {
        --hero-padding-top: 120px;
        --hero-padding-bottom: 52px;
    }

    .hero-title-light {
        font-size: clamp(2.4rem, 10vw, 3rem);
    }

    .hero-title-strong {
        font-size: clamp(2.5rem, 11vw, 3.2rem);
    }

    .brand-card {
        padding: 28px 20px;
    }

    .brand-card-logo {
        min-height: 46px;
    }

    .brand-card-name img,
    .brand-card-logo img {
        max-height: 34px;
    }

    .brand-card-desc {
        font-size: var(--fs-body);
        line-height: 1.75;
    }

    .home-news-head {
        margin-bottom: 2rem;
    }

    .home-news-grid {
        grid-template-columns: 1fr;
    }

    .home-news-card {
        grid-column: span 1 !important;
        min-height: 180px !important;
    }

    .home-news-card-content {
        padding: 1rem;
    }

    .home-news-card-title {
        font-size: 1.05rem;
    }

    .home-news-card:nth-child(1) .home-news-card-title {
        font-size: 1.5rem;
    }

    .home-news-card-excerpt {
        font-size: var(--fs-body);
    }

    .news-page-row {
        grid-template-columns: 1fr auto;
        gap: 1rem;
        padding: 0.95rem 0;
    }

    .news-page-date {
        display: none;
    }

    .news-page-title {
        font-size: 0.95rem;
    }

    .news-page-desc {
        font-size: var(--fs-body);
    }

    .news-page-pagination {
        flex-wrap: wrap;
    }

    .contact-info-card,
    .contact-form-card,
    .contact-map-card {
        padding: 1.1rem;
    }

    .contact-map-embed iframe {
        height: 300px;
    }

    .branch-map iframe {
        height: 200px;
    }

    .branch-card-body {
        padding: 1rem;
    }

    .contact-form-title {
        font-size: 1.12rem;
    }
}

/* Mobile quality pass for the home and listing pages. */
@media (max-width: 767.98px) {
    .hero {
        min-height: max(560px, 100svh);
        align-items: flex-end;
        background-size: cover;
        background-position: center top;
    }

    .hero::before {
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.40) 0%,
            rgba(0, 0, 0, 0.24) 32%,
            rgba(0, 0, 0, 0.72) 100%
        );
    }

    .hero-content {
        padding-right: 18px;
        padding-left: 18px;
    }

    .hero-text-wrap {
        width: 100%;
        max-width: 100%;
        padding: 112px 0 44px;
    }

    .hero-text-wrap::before {
        top: auto;
        right: -18px;
        bottom: 0;
        left: -18px;
        height: calc(100% - 90px);
        background: linear-gradient(
            180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.54) 34%,
            rgba(0, 0, 0, 0.76) 100%
        );
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .hero-eyebrow {
        gap: 0.65rem;
        margin-bottom: 0.95rem;
    }

    .hero-line {
        width: 42px;
    }

    .hero-eyebrow-text {
        font-size: 0.68rem;
        letter-spacing: 0.08em;
        line-height: 1.25;
    }

    .hero-title {
        margin-bottom: 1rem;
        line-height: 1.02;
        letter-spacing: 0;
    }

    .hero-title-light {
        font-size: 2.05rem;
        line-height: 1.05;
    }

    .hero-title-strong {
        font-size: 2.18rem;
        line-height: 1.02;
    }

    .hero-description {
        margin-bottom: 1.25rem;
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .hero .btn {
        min-height: 40px;
        padding: 0.55rem 0.82rem !important;
        font-size: 0.84rem;
        line-height: 1.2;
    }

    .brands-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .brands-grid {
        margin-top: 1.75rem;
    }

    .brand-card {
        padding: 1.35rem 1.1rem;
    }

    .home-news-grid {
        gap: 0.9rem;
    }
}

@media (max-width: 374.98px) {
    .hero-title-light {
        font-size: 1.85rem;
    }

    .hero-title-strong {
        font-size: 1.98rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }
}
