/* TEMEL AYARLAR */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --yellow: #f8bd00;
    --yellow-light: #ffd33d;
    --black: #0c0d0f;
    --dark: #121417;
    --dark-soft: #1b1e22;
    --white: #ffffff;
    --off-white: #f6f6f4;
    --gray: #666b73;
    --light-gray: #d7d9dd;
    --border: #e2e3e5;
    --whatsapp: #20b358;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

body {
    min-width: 320px;

    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        Helvetica,
        sans-serif;

    background-color: var(--white);
    color: var(--black);
}

body.menu-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

svg {
    display: block;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.whatsapp-icon {
    width: 21px;
    height: 21px;

    fill: currentColor;
    stroke: none;
}

/* ÜST MENÜ */

.site-header {
    height: 88px;

    display: flex;
    align-items: center;

    background-color: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    position: sticky;
    top: 0;
    z-index: 1000;

    backdrop-filter: blur(12px);
}

.header-container {
    width: min(1400px, calc(100% - 56px));
    height: 100%;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

/* LOGO */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: var(--white);
    text-decoration: none;

    flex-shrink: 0;
}

.brand-icon {
    width: 66px;
    height: 54px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    flex-shrink: 0;
}

.brand-icon img {
    width: 100%;
    height: 100%;
    max-width: none;

    object-fit: cover;
    object-position: center;

    transform: scale(1.7);

}

.brand-text {
    display: flex;
    flex-direction: column;

    line-height: 0.95;
}

.brand-text strong {
    color: var(--white);

    font-size: 28px;
    font-weight: 900;
    letter-spacing: -0.8px;
}

.brand-text small {
    margin-top: 7px;

    color: var(--yellow);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.6px;
}

/* ANA MENÜ */

.main-navigation {
    height: 100%;

    display: flex;
    align-items: center;
    gap: 30px;
}

.main-navigation a {
    height: 100%;

    display: inline-flex;
    align-items: center;

    color: #e6e6e6;

    border-bottom: 3px solid transparent;

    font-size: 14px;
    font-weight: 700;
    text-decoration: none;

    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}

.main-navigation a:hover,
.main-navigation a.active {
    color: var(--yellow);
    border-bottom-color: var(--yellow);
}

/* HEADER BUTONLARI */

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;

    flex-shrink: 0;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--white);
    text-decoration: none;
}

.header-phone-icon {
    width: 32px;
    height: 32px;

    display: grid;
    place-items: center;

    color: var(--yellow);
}

.header-phone-icon svg {
    width: 26px;
    height: 26px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-phone-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.header-phone-text strong {
    font-size: 14px;
}

.header-phone-text small {
    color: #bbbbbb;
    font-size: 12px;
}

.header-whatsapp-button {
    min-height: 48px;
    padding: 0 19px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    background-color: var(--yellow);
    color: var(--black);

    border-radius: 6px;

    font-size: 14px;
    font-weight: 900;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease;
}

.header-whatsapp-button:hover {
    background-color: var(--yellow-light);
    transform: translateY(-2px);
}

/* MOBİL MENÜ BUTONU */

.menu-button {
    width: 46px;
    height: 46px;

    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;

    background-color: transparent;

    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
}

.menu-button span {
    width: 22px;
    height: 2px;

    background-color: var(--white);

    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.menu-button.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-button.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-button.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ANA KARŞILAMA ALANI */

.hero {
    background-color: var(--black);
    color: var(--white);

    overflow: hidden;
}

.hero-layout {
    min-height: 620px;

    display: grid;
    grid-template-columns: 46% 54%;
}

.hero-content {
    padding:
        70px 55px
        70px max(40px, calc((100vw - 1180px) / 2));

    display: flex;
    flex-direction: column;
    justify-content: center;

    background:
        radial-gradient(
            circle at 100% 50%,
            rgba(248, 189, 0, 0.11),
            transparent 42%
        ),
        var(--black);

    position: relative;
    z-index: 2;
}

.hero-kicker {
    width: fit-content;

    margin-bottom: 21px;
    padding: 9px 13px;

    color: var(--yellow);

    border: 1px solid rgba(248, 189, 0, 0.55);
    border-radius: 5px;

    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.1px;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 690px;
    margin-bottom: 23px;

    font-size: clamp(44px, 5vw, 69px);
    line-height: 1.03;
    letter-spacing: -3px;
}

.hero h1 span {
    display: block;
    margin-top: 8px;

    color: var(--yellow);
}

.hero-description {
    max-width: 570px;
    margin-bottom: 32px;

    color: #dedede;

    font-size: 18px;
    line-height: 1.75;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    min-height: 54px;
    padding: 0 23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    border-radius: 6px;

    font-size: 15px;
    font-weight: 900;
    text-decoration: none;

    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        color 0.2s ease;
}

.button svg {
    width: 21px;
    height: 21px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button .whatsapp-icon,
.button-secondary .whatsapp-icon {
    fill: currentColor;
    stroke: none;
}

.button-primary {
    background-color: var(--yellow);
    color: var(--black);
}

.button-primary:hover {
    background-color: var(--yellow-light);
    transform: translateY(-2px);
}

.button-secondary {
    color: var(--white);

    border: 1px solid var(--yellow);
}

.button-secondary:hover {
    background-color: var(--yellow);
    color: var(--black);

    transform: translateY(-2px);
}

.button-dark {
    width: fit-content;

    background-color: var(--black);
    color: var(--white);
}

.button-dark:hover {
    background-color: #27292d;
    transform: translateY(-2px);
}

.hero-tags {
    margin-top: 27px;

    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-tags span {
    padding: 8px 11px;

    color: #dddddd;
    background-color: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50px;

    font-size: 12px;
    font-weight: 700;
}

/* ANA GÖRSEL */

.hero-visual {
    min-width: 0;
    min-height: 620px;

    position: relative;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;

    position: absolute;
    inset: 0;

    object-fit: cover;
    object-position: 54% center;
}

.hero-visual::before {
    content: "";

    width: 130px;

    position: absolute;
    inset: 0 auto 0 0;
    z-index: 2;

    background:
        linear-gradient(
            90deg,
            var(--black) 0%,
            rgba(12, 13, 15, 0.74) 34%,
            transparent 100%
        );

    pointer-events: none;
}

.hero-visual::after {
    content: "";

    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.08),
            rgba(0, 0, 0, 0.16)
        );

    pointer-events: none;
}

.hero-visual-label {
    padding: 10px 15px;

    background-color: var(--yellow);
    color: var(--black);

    border-radius: 5px;

    font-size: 13px;
    font-weight: 900;

    position: absolute;
    top: 26px;
    right: 26px;
    z-index: 3;
}

/* ÖZELLİK ŞERİDİ */

.trust-strip {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.trust-item {
    min-width: 0;
    min-height: 140px;
    padding: 25px 18px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;

    text-align: center;

    border-right: 1px solid var(--border);
}

.trust-item:first-child {
    border-left: 1px solid var(--border);
}

.trust-icon {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    color: var(--yellow);

    flex-shrink: 0;
}

.trust-icon svg {
    width: 39px;
    height: 39px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-item h2 {
    margin-bottom: 5px;

    font-size: 15px;
    line-height: 1.25;
}

.trust-item p {
    max-width: 180px;

    color: var(--gray);

    font-size: 12px;
    line-height: 1.5;
}

/* GENEL BAŞLIKLAR */

.section-heading {
    max-width: 720px;
    margin-bottom: 45px;
}

.section-heading-center {
    margin-right: auto;
    margin-left: auto;

    text-align: center;
}

.section-kicker {
    margin-bottom: 13px;

    color: #b68b00;

    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.section-heading h2,
.fleet-introduction h2,
.contact-content h2 {
    margin-bottom: 18px;

    font-size: clamp(36px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.section-heading h2 span,
.fleet-introduction h2 span {
    display: block;

    color: #c39400;
}

.section-heading > p:last-child,
.fleet-introduction > p,
.contact-content > p {
    color: var(--gray);

    font-size: 17px;
    line-height: 1.75;
}

/* HİZMETLER */

.services-section {
    padding: 100px 0;

    background-color: var(--off-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.service-card {
    min-height: 290px;
    padding: 30px;

    display: flex;
    flex-direction: column;

    background-color: var(--white);

    border: 1px solid var(--border);
    border-top: 5px solid var(--yellow);
    border-radius: 10px;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.11);
}

.service-card-dark {
    background-color: var(--black);
    color: var(--white);
}

.service-number {
    margin-bottom: 43px;

    color: #bd9000;

    font-size: 15px;
    font-weight: 900;
}

.service-card h3 {
    margin-bottom: 14px;

    font-size: 24px;
    line-height: 1.25;
}

.service-card p {
    margin-bottom: 25px;

    color: var(--gray);

    font-size: 15px;
    line-height: 1.7;
}

.service-card-dark p {
    color: #c9c9c9;
}

.service-card a {
    margin-top: auto;

    display: inline-flex;
    gap: 7px;

    color: #a87e00;

    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

.service-card-dark a {
    color: var(--yellow);
}

/* MAKİNE PARKI */

.fleet-section {
    padding: 100px 0;

    background-color: var(--white);
}

.fleet-layout {
    display: grid;
    grid-template-columns: 0.72fr 1.28fr;
    align-items: start;
    gap: 55px;
}

.fleet-introduction {
    padding-top: 15px;
}

.fleet-introduction > p {
    margin-bottom: 28px;
}

.fleet-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.machine-card {
    overflow: hidden;

    background-color: var(--white);

    border: 1px solid var(--border);
    border-radius: 11px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.machine-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 42px rgba(0, 0, 0, 0.12);
}

.machine-image {
    height: 245px;

    position: relative;
    overflow: hidden;
}

.machine-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    transition: transform 0.4s ease;
}

.machine-card:hover .machine-image img {
    transform: scale(1.04);
}

.machine-image span {
    padding: 7px 10px;

    background-color: var(--yellow);
    color: var(--black);

    border-radius: 4px;

    font-size: 12px;
    font-weight: 900;

    position: absolute;
    bottom: 13px;
    left: 13px;
}

.machine-content {
    padding: 22px;
}

.machine-content h3 {
    margin-bottom: 7px;

    font-size: 22px;
}

.machine-content p {
    margin-bottom: 18px;

    color: var(--gray);
    font-size: 14px;
}

.machine-content a {
    color: #9d7700;

    font-size: 14px;
    font-weight: 900;
    text-decoration: none;
}

/* İLETİŞİM */

.contact-section {
    padding: 100px 0;

    background-color: var(--yellow);
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 70px;
}

.contact-content .section-kicker {
    color: var(--black);
}

.contact-content > p {
    color: #292929;
}

.contact-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
}

.contact-card {
    min-height: 125px;
    padding: 24px 27px;

    display: flex;
    align-items: center;
    gap: 20px;

    background-color: var(--black);
    color: var(--white);

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;

    text-decoration: none;

    transition:
        transform 0.22s ease,
        background-color 0.22s ease;
}

a.contact-card:hover {
    background-color: #24262a;
    transform: translateX(7px);
}

.contact-card-icon {
    width: 48px;
    height: 48px;

    display: grid;
    place-items: center;

    color: var(--yellow);

    flex-shrink: 0;
}

.contact-card-icon svg {
    width: 34px;
    height: 34px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-card-icon .whatsapp-icon {
    width: 34px;
    height: 34px;

    fill: currentColor;
    stroke: none;
}

.contact-card-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-card-content small {
    color: var(--yellow);

    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.5px;
}

.contact-card-content strong {
    font-size: 22px;
}

.contact-card-content > span {
    color: #bdbdbd;

    font-size: 14px;
    line-height: 1.5;
}

/* FOOTER */

.site-footer {
    background-color: var(--black);
    color: var(--white);
}

.footer-grid {
    padding: 65px 0;

    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr 0.8fr;
    gap: 48px;
}

.footer-brand .brand {
    margin-bottom: 18px;
}

.footer-brand p {
    max-width: 300px;

    color: #bdbdbd;

    font-size: 14px;
    line-height: 1.7;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
}

.footer-column h2 {
    margin-bottom: 7px;

    color: var(--yellow);

    font-size: 14px;
}

.footer-column p,
.footer-column a {
    color: #d1d1d1;

    font-size: 14px;
    line-height: 1.7;
    text-decoration: none;
}

.footer-column a:hover {
    color: var(--yellow);
}

.footer-bottom {
    padding: 20px 0;

    color: #9c9c9c;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    font-size: 12px;
}

/* TELEFON SABİT BUTONLARI */

.mobile-action-bar {
    display: none;
}

/* ORTA EKRANLAR */

@media (max-width: 1160px) {
    .main-navigation {
        gap: 20px;
    }

    .main-navigation a {
        font-size: 13px;
    }

    .header-phone {
        display: none;
    }

    .hero-layout {
        grid-template-columns: 49% 51%;
    }

    .trust-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .trust-item:nth-child(3) {
        border-right: 0;
    }

    .trust-item:nth-child(4),
    .trust-item:nth-child(5) {
        border-top: 1px solid var(--border);
    }

    .trust-item:nth-child(4) {
        grid-column: 1 / 2;
    }

    .trust-item:nth-child(5) {
        grid-column: 2 / 4;
    }
}

/* TABLET */

@media (max-width: 900px) {
    html {
        scroll-padding-top: 76px;
    }

    .site-header {
        height: 76px;
    }

    .header-container {
        width: calc(100% - 30px);
    }

    .brand-icon {
        width: 57px;
        height: 46px;
    }

    .brand-text strong {
        font-size: 23px;
    }

    .brand-text small {
        font-size: 9px;
    }

    .main-navigation {
        width: 100%;
        height: auto;
        padding: 17px;

        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        background-color: var(--black);

        border-top: 1px solid rgba(255, 255, 255, 0.1);

        position: absolute;
        top: 76px;
        left: 0;

        box-shadow: 0 25px 45px rgba(0, 0, 0, 0.4);
    }

    .main-navigation.is-open {
        display: flex;
    }

    .main-navigation a {
        min-height: 52px;
        height: auto;
        padding: 0 10px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .main-navigation a:last-child {
        border-bottom: 0;
    }

    .menu-button {
        display: flex;
    }

    .hero-layout {
        min-height: auto;

        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 65px 40px 55px;
    }

    .hero-visual {
        min-height: 450px;
    }

    .hero-visual::before {
        width: 100%;
        height: 90px;

        inset: 0 0 auto;

        background:
            linear-gradient(
                180deg,
                var(--black) 0%,
                transparent 100%
            );
    }

    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .trust-item,
    .trust-item:first-child,
    .trust-item:nth-child(3),
    .trust-item:nth-child(4),
    .trust-item:nth-child(5) {
        grid-column: auto;

        border: 0;
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .trust-item:nth-child(even) {
        border-right: 0;
    }

    .trust-item:last-child {
        grid-column: 1 / -1;

        border-right: 0;
        border-bottom: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 230px;
    }

    .service-number {
        margin-bottom: 30px;
    }

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

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* TELEFON */

@media (max-width: 620px) {
    body {
        padding-bottom: 70px;
    }

    .container {
        width: calc(100% - 28px);
    }

    .header-container {
        width: calc(100% - 22px);
        gap: 12px;
    }

    .brand {
        gap: 7px;
    }

    .brand-icon {
        width: 48px;
        height: 40px;
    }

    .brand-text strong {
        font-size: 20px;
    }

    .brand-text small {
        margin-top: 5px;

        font-size: 8px;
        letter-spacing: 0.2px;
    }

    .header-whatsapp-button {
        display: none;
    }

    .hero-content {
        padding: 50px 20px 45px;
    }

    .hero-kicker {
        margin-bottom: 17px;

        font-size: 11px;
    }

    .hero h1 {
        margin-bottom: 20px;

        font-size: 42px;
        line-height: 1.04;
        letter-spacing: -2px;
    }

    .hero h1 span {
        margin-top: 6px;
    }

    .hero-description {
        margin-bottom: 26px;

        font-size: 16px;
        line-height: 1.65;
    }

    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr;
    }

    .button {
        width: 100%;
    }

    .hero-tags {
        margin-top: 22px;
    }

    .hero-tags span {
        font-size: 11px;
    }

    .hero-visual {
        min-height: 330px;
    }

    .hero-visual img {
        object-position: 55% center;
    }

    .hero-visual-label {
        top: 14px;
        right: 14px;

        font-size: 11px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .trust-item:first-child,
    .trust-item:nth-child(3),
    .trust-item:nth-child(4),
    .trust-item:nth-child(5),
    .trust-item:last-child {
        min-height: 112px;

        grid-column: auto;

        flex-direction: row;
        justify-content: flex-start;

        text-align: left;

        border: 0;
        border-bottom: 1px solid var(--border);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .trust-item p {
        max-width: none;
    }

    .services-section,
    .fleet-section,
    .contact-section {
        padding: 75px 0;
    }

    .section-heading {
        margin-bottom: 34px;
    }

    .section-heading h2,
    .fleet-introduction h2,
    .contact-content h2 {
        font-size: 37px;
        letter-spacing: -1.5px;
    }

    .section-heading > p:last-child,
    .fleet-introduction > p,
    .contact-content > p {
        font-size: 15px;
    }

    .service-card {
        padding: 25px;
    }

    .fleet-cards {
        grid-template-columns: 1fr;
    }

    .machine-image {
        height: 230px;
    }

    .contact-card {
        min-height: 115px;
        padding: 21px 19px;
        gap: 14px;
    }

    .contact-card-icon {
        width: 42px;
        height: 42px;
    }

    .contact-card-icon svg,
    .contact-card-icon .whatsapp-icon {
        width: 30px;
        height: 30px;
    }

    .contact-card-content strong {
        font-size: 19px;
    }

    .footer-grid {
        padding: 50px 0;

        grid-template-columns: 1fr;
        gap: 34px;
    }

    .mobile-action-bar {
        height: 70px;

        display: grid;
        grid-template-columns: 1fr 1fr;

        background-color: var(--black);

        border-top: 1px solid rgba(255, 255, 255, 0.12);

        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1500;

        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.25);
    }

    .mobile-action-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;

        font-size: 14px;
        font-weight: 900;
        text-decoration: none;
    }

    .mobile-action-bar svg {
        width: 21px;
        height: 21px;

        fill: none;
        stroke: currentColor;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .mobile-action-bar .whatsapp-icon {
        fill: currentColor;
        stroke: none;
    }

    .mobile-call-button {
        background-color: var(--yellow);
        color: var(--black);
    }

    .mobile-whatsapp-button {
        background-color: var(--whatsapp);
        color: var(--white);
    }
}

@media (max-width: 370px) {
    .brand-icon {
        display: none;
    }

    .hero h1 {
        font-size: 37px;
    }
}
/* ÖZELLİK ŞERİDİ — SON DÜZEN */

.trust-strip {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
}

.trust-grid {
    width: min(1400px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.trust-item,
.trust-item:first-child,
.trust-item:nth-child(3),
.trust-item:nth-child(4),
.trust-item:nth-child(5),
.trust-item:last-child {
    min-width: 0;
    min-height: 116px;
    padding: 20px 22px;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;

    text-align: left;

    grid-column: auto;

    border-top: 0;
    border-bottom: 0;
    border-left: 0;
    border-right: 1px solid var(--border);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-icon {
    width: 43px;
    height: 43px;

    display: grid;
    place-items: center;

    color: var(--yellow);
    flex-shrink: 0;
}

.trust-icon svg {
    width: 39px;
    height: 39px;

    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-item > div {
    min-width: 0;
    max-width: 175px;
}

.trust-item h2 {
    min-height: 36px;
    margin-bottom: 5px;

    display: flex;
    align-items: flex-end;

    font-size: 15px;
    line-height: 1.2;
}

.trust-item p {
    max-width: none;
    margin: 0;

    color: var(--gray);
    font-size: 12px;
    line-height: 1.45;
}

/* TABLET */

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

    .trust-item,
    .trust-item:first-child,
    .trust-item:nth-child(3),
    .trust-item:nth-child(4),
    .trust-item:nth-child(5) {
        min-height: 110px;

        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .trust-item:nth-child(even) {
        border-right: 0;
    }

    .trust-item:last-child {
        grid-column: 1 / -1;

        border-right: 0;
        border-bottom: 0;
    }
}

/* TELEFON */

@media (max-width: 620px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .trust-item:first-child,
    .trust-item:nth-child(3),
    .trust-item:nth-child(4),
    .trust-item:nth-child(5),
    .trust-item:last-child {
        min-height: 98px;
        padding: 18px 24px;

        justify-content: flex-start;

        grid-column: auto;

        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .trust-item > div {
        max-width: none;
    }

    .trust-item h2 {
        min-height: auto;
    }
}
/* YENİ HİZMETLER VE ÖZELLİKLER İÇİN SON DÜZEN */

/* Masaüstünde 6 eşit özellik kutusu */

.trust-grid {
    width: min(1500px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.trust-item,
.trust-item:first-child,
.trust-item:nth-child(3),
.trust-item:nth-child(4),
.trust-item:nth-child(5),
.trust-item:nth-child(6),
.trust-item:last-child {
    min-width: 0;
    min-height: 142px;
    padding: 22px 15px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;

    text-align: center;

    grid-column: auto;

    border-top: 0;
    border-bottom: 0;
    border-left: 0;
    border-right: 1px solid var(--border);
}

.trust-item:last-child {
    border-right: 0;
}

.trust-item > div {
    min-width: 0;
    width: 100%;
}

.trust-item h2 {
    min-height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;
    line-height: 1.25;
}

.trust-item p {
    max-width: 190px;
    margin: 0 auto;

    font-size: 11px;
    line-height: 1.45;
}

/* Masaüstünde 4 hizmet kartı */

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.service-card {
    min-height: 320px;
}

/* İletişim kartları masaüstünde 2 x 2 */

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.contact-card {
    min-width: 0;
}

.contact-card-content {
    min-width: 0;
}

.contact-card-content strong {
    overflow-wrap: anywhere;
}

/* Küçük masaüstü ve tablet */

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

    .trust-item,
    .trust-item:first-child,
    .trust-item:nth-child(3),
    .trust-item:nth-child(4),
    .trust-item:nth-child(5),
    .trust-item:nth-child(6),
    .trust-item:last-child {
        min-height: 130px;

        grid-column: auto;

        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .trust-item:nth-child(3n) {
        border-right: 0;
    }

    .trust-item:nth-child(n + 4) {
        border-bottom: 0;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Tablet */

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

    .trust-item,
    .trust-item:first-child,
    .trust-item:nth-child(3),
    .trust-item:nth-child(4),
    .trust-item:nth-child(5),
    .trust-item:nth-child(6),
    .trust-item:last-child {
        border-right: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
    }

    .trust-item:nth-child(even) {
        border-right: 0;
    }

    .trust-item:nth-child(n + 5) {
        border-bottom: 0;
    }

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

/* Telefon */

@media (max-width: 620px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-item,
    .trust-item:first-child,
    .trust-item:nth-child(3),
    .trust-item:nth-child(4),
    .trust-item:nth-child(5),
    .trust-item:nth-child(6),
    .trust-item:last-child {
        min-height: 105px;
        padding: 18px 22px;

        flex-direction: row;
        justify-content: flex-start;

        text-align: left;

        grid-column: auto;

        border-right: 0;
        border-bottom: 1px solid var(--border);
    }

    .trust-item:last-child {
        border-bottom: 0;
    }

    .trust-item > div {
        width: auto;
    }

    .trust-item h2 {
        min-height: auto;

        display: block;
    }

    .trust-item p {
        max-width: none;
        margin: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        min-height: 260px;
    }
}
/* MOBİL ANA EKRAN — FOTOĞRAFLI VE KOMPAKT TASARIM */

@media (max-width: 620px) {

    /* Sabit alt butonlar için daha az boşluk */
    body {
        padding-bottom: 58px;
    }

    /* Ana bölümün tamamında forklift fotoğrafı */
    .hero {
        min-height: calc(100svh - 76px);

        background-color: var(--black);

        position: relative;
        isolation: isolate;
    }

    /* Forklift fotoğrafı */
    .hero::before {
        content: "";

        position: absolute;
        inset: 0;
        z-index: -2;

        background-image: url("images/forklift-hero.png");
        background-size: cover;
        background-position: 62% center;
        background-repeat: no-repeat;
    }

    /* Yazıların okunması için koyu geçiş */
    .hero::after {
        content: "";

        position: absolute;
        inset: 0;
        z-index: -1;

        background:
            linear-gradient(
                90deg,
                rgba(10, 11, 13, 0.96) 0%,
                rgba(10, 11, 13, 0.88) 48%,
                rgba(10, 11, 13, 0.43) 100%
            ),
            linear-gradient(
                180deg,
                rgba(10, 11, 13, 0.18) 0%,
                rgba(10, 11, 13, 0.10) 55%,
                rgba(10, 11, 13, 0.88) 100%
            );
    }

    .hero-layout {
        min-height: calc(100svh - 76px);

        display: block;
    }

    .hero-content {
        min-height: calc(100svh - 76px);
        padding: 45px 20px 34px;

        justify-content: center;

        background: transparent;

        position: relative;
        z-index: 2;
    }

    /* Ayrı duran ikinci fotoğrafı mobilde gizliyoruz */
    .hero-visual {
        display: none;
    }

    .hero-kicker {
        margin-bottom: 15px;
        padding: 8px 11px;

        background-color: rgba(10, 11, 13, 0.50);

        font-size: 10px;
        letter-spacing: 0.8px;
    }

    .hero h1 {
        max-width: 355px;
        margin-bottom: 17px;

        font-size: 36px;
        line-height: 1.04;
        letter-spacing: -1.6px;

        text-shadow: 0 3px 18px rgba(0, 0, 0, 0.55);
    }

    .hero h1 span {
        margin-top: 5px;
    }

    .hero-description {
        max-width: 340px;
        margin-bottom: 22px;

        color: #f0f0f0;

        font-size: 14px;
        line-height: 1.58;

        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.60);
    }

    /* Ara ve WhatsApp butonları yan yana */
    .hero-buttons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .hero-buttons .button {
        width: 100%;
        min-height: 48px;
        padding: 0 10px;
        gap: 7px;

        font-size: 12px;
        white-space: nowrap;
    }

    .hero-buttons .button svg {
        width: 18px;
        height: 18px;
    }

    /* Küçük bilgi etiketleri tek satırda kaydırılabilir */
    .hero-tags {
        margin-top: 18px;

        display: flex;
        flex-wrap: nowrap;
        gap: 7px;

        overflow-x: auto;
        padding-bottom: 4px;

        scrollbar-width: none;
    }

    .hero-tags::-webkit-scrollbar {
        display: none;
    }

    .hero-tags span {
        flex: 0 0 auto;

        padding: 7px 10px;

        background-color: rgba(10, 11, 13, 0.58);
        color: #f3f3f3;

        border-color: rgba(255, 255, 255, 0.24);

        font-size: 10px;

        backdrop-filter: blur(5px);
    }

    /* Telefonun altındaki sabit çubuğu inceltiyoruz */
    .mobile-action-bar {
        height: 58px;
    }

    .mobile-action-bar a {
        gap: 7px;
        font-size: 12px;
    }

    .mobile-action-bar svg,
    .mobile-action-bar .whatsapp-icon {
        width: 18px;
        height: 18px;
    }
}

/* Çok dar telefonlarda butonlar alt alta geçsin */

@media (max-width: 355px) {
    .hero-buttons {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 33px;
    }
}
/* ANA BAŞLIKTA KONUM VURGUSU */

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hero-kicker svg {
    width: 17px;
    height: 17px;

    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;

    flex-shrink: 0;
}
/* PROFESYONEL EKİP HİZA DÜZELTMESİ */

@media (min-width: 621px) {
    .trust-item:nth-of-type(2) > .trust-icon,
    .trust-item:nth-of-type(2) > div {
        position: relative;
        top: -8px;
    }
}