:root {
    --orange: #f36b0a;
    --orange-dark: #d95700;
    --black: #10151a;
    --dark: #151c22;
    --text: #171c21;
    --gray: #6b747d;
    --light: #f6f7f8;
    --border: #e5e8eb;
    --white: #ffffff;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
}

.site-header {
    height: 82px;
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    height: 100%;
    padding: 0 25px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-area img {
    width: 47px;
    height: 47px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-name strong {
    display: block;
    font-size: 19px;
    line-height: 1;
    letter-spacing: -.5px;
}

.logo-name strong span,
.footer-logo strong span {
    color: var(--orange);
}

.logo-name small {
    display: block;
    margin-top: 4px;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 3px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav a {
    color: #626b73;
    font-size: 12px;
    font-weight: 600;
    transition: .2s;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--orange);
}

.contact-button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 19px;
    color: #fff;
    background: var(--orange);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    transition: .2s;
}

.contact-button:hover {
    background: var(--orange-dark);
}

.mobile-menu {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 2px;
    display: block;
    margin: 5px;
    background: var(--black);
}


.hero {
    min-height: 650px;
    background: #fff;
}

.hero-container {
    max-width: 1200px;
    min-height: 650px;
    margin: auto;
    padding: 65px 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--orange);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.eyebrow span {
    width: 28px;
    height: 2px;
    background: var(--orange);
}

.hero h1 {
    margin-top: 21px;
    font-size: clamp(45px, 5vw, 67px);
    line-height: 1.04;
    letter-spacing: -3px;
    font-weight: 800;
}

.hero h1 span {
    color: var(--orange);
}

.hero-text > p {
    max-width: 520px;
    margin-top: 24px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 11px;
    margin-top: 30px;
}

.btn-primary,
.btn-outline {
    min-height: 49px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    transition: .2s;
}

.btn-primary {
    color: #fff;
    background: var(--orange);
}

.btn-primary:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid var(--border);
}

.btn-outline:hover {
    color: var(--orange);
    border-color: var(--orange);
}

.hero-features {
    display: flex;
    gap: 35px;
    margin-top: 48px;
}

.hero-features div {
    display: flex;
    flex-direction: column;
}

.hero-features strong {
    font-size: 13px;
}

.hero-features small {
    color: var(--gray);
    font-size: 9px;
    margin-top: 2px;
}


.hero-image {
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orange-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #f5f6f7;
}

.orange-circle::before {
    content: "";
    position: absolute;
    inset: 45px;
    border-radius: 50%;
    border: 1px solid #e1e4e7;
}

.main-logo {
    position: relative;
    z-index: 2;
    width: 285px;
    height: 285px;
    padding: 7px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 25px 70px rgba(0,0,0,.13);
}

.main-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.info-box {
    position: absolute;
    z-index: 5;
    min-width: 205px;
    padding: 13px;
    display: flex;
    align-items: center;
    gap: 11px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 12px 35px rgba(0,0,0,.09);
}

.box-one {
    top: 62px;
    right: 0;
}

.box-two {
    bottom: 62px;
    left: 0;
}

.info-icon {
    width: 37px;
    height: 37px;
    display: grid;
    place-items: center;
    color: var(--orange);
    background: #fff0e6;
    border-radius: 7px;
    font-weight: 800;
}

.info-box strong,
.info-box small {
    display: block;
}

.info-box strong {
    font-size: 10px;
}

.info-box small {
    color: var(--gray);
    font-size: 8px;
    margin-top: 2px;
}


.intro {
    padding: 80px 25px;
    background: var(--dark);
    color: #fff;
}

.intro-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.intro-title > span {
    color: var(--orange);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.intro h2 {
    margin-top: 13px;
    font-size: 40px;
    line-height: 1.12;
    letter-spacing: -1.5px;
}

.intro h2 strong {
    color: var(--orange);
}

.intro-text p {
    max-width: 500px;
    color: #aab2b9;
    font-size: 13px;
    line-height: 1.9;
}

.intro-text a {
    display: inline-flex;
    gap: 10px;
    margin-top: 22px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
}

.intro-text a:hover {
    color: var(--orange);
}


.quick-services {
    padding: 95px 25px;
    background: var(--light);
}

.section-container {
    max-width: 1100px;
    margin: auto;
}

.section-heading > span {
    color: var(--orange);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2px;
}

.section-heading h2 {
    margin-top: 10px;
    font-size: 38px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-heading h2 strong {
    color: var(--orange);
}

.service-row {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.service-item {
    min-height: 170px;
    padding: 24px;
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    transition: .25s;
}

.service-item:hover {
    transform: translateY(-4px);
    border-color: #d9dde0;
    box-shadow: 0 15px 35px rgba(0,0,0,.06);
}

.service-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--orange);
    background: #fff1e8;
    border-radius: 7px;
    font-weight: 800;
}

.service-item h3 {
    margin-top: 20px;
    font-size: 14px;
}

.service-item p {
    max-width: 230px;
    margin-top: 6px;
    color: var(--gray);
    font-size: 10px;
    line-height: 1.7;
}

.arrow {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: var(--orange);
    font-size: 18px;
}


.home-contact {
    padding: 70px 25px;
    background: #fff;
}

.home-contact-container {
    max-width: 1100px;
    margin: auto;
    padding: 45px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: #f5f6f7;
    border-radius: 10px;
}

.home-contact-container > div > span {
    color: var(--orange);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.home-contact h2 {
    margin-top: 8px;
    font-size: 31px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.home-contact h2 strong {
    color: var(--orange);
}

.contact-large-button {
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    background: var(--orange);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

.contact-large-button:hover {
    background: var(--orange-dark);
}


.site-footer {
    padding: 38px 25px 20px;
    background: var(--black);
    color: #fff;
}

.footer-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo img {
    width: 43px;
    height: 43px;
    object-fit: cover;
    border-radius: 50%;
}

.footer-logo strong,
.footer-logo small {
    display: block;
}

.footer-logo strong {
    font-size: 12px;
}

.footer-logo small {
    margin-top: 2px;
    color: #68727b;
    font-size: 8px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.footer-links a {
    color: #8b959d;
    font-size: 9px;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-contact {
    display: flex;
    justify-content: flex-end;
    gap: 18px;
}

.footer-contact a {
    color: #aeb5ba;
    font-size: 9px;
}

.footer-bottom {
    max-width: 1100px;
    margin: 30px auto 0;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,.08);
    display: flex;
    justify-content: space-between;
    color: #56616a;
    font-size: 8px;
}


@media (max-width: 950px) {

    .main-nav {
        gap: 15px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .eyebrow,
    .hero-actions {
        justify-content: center;
    }

    .hero-text > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        justify-content: center;
    }

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

    .intro-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-row {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 700px) {

    .site-header {
        height: 70px;
    }

    .contact-button {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 70px;
        left: 15px;
        right: 15px;
        padding: 7px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 7px;
        box-shadow: 0 15px 35px rgba(0,0,0,.1);
    }

    .main-nav.show {
        display: flex;
    }

    .main-nav a {
        padding: 13px;
    }

    .hero-container {
        padding: 50px 18px;
    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }

    .hero-features {
        gap: 20px;
    }

    .hero-image {
        height: 360px;
        min-height: 360px;
    }

    .orange-circle {
        width: 290px;
        height: 290px;
    }

    .orange-circle::before {
        inset: 32px;
    }

    .main-logo {
        width: 205px;
        height: 205px;
    }

    .info-box {
        min-width: 165px;
        padding: 9px;
    }

    .box-one {
        top: 15px;
        right: -5px;
    }

    .box-two {
        bottom: 10px;
        left: -5px;
    }

    .intro,
    .quick-services {
        padding: 70px 18px;
    }

    .intro h2,
    .section-heading h2 {
        font-size: 33px;
    }

    .home-contact {
        padding: 50px 18px;
    }

    .home-contact-container {
        padding: 30px 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .footer-contact {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 7px;
    }
}

/* =========================================================
   HAKKIMIZDA SAYFASI
   ========================================================= */

.page-hero {
    background: var(--dark);
    color: #fff;
    padding: 110px 0 100px;
}

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

.page-label,
.section-label {
    display: inline-block;
    color: var(--orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(46px, 6vw, 78px);
    line-height: 1;
    letter-spacing: -3px;
}

.page-hero p {
    margin: 25px 0 0;
    max-width: 600px;
    color: rgba(255,255,255,.7);
    font-size: 18px;
    line-height: 1.7;
}


/* ABOUT */

.about-main {
    padding: 110px 0;
    background: #fff;
}

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

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image-frame {
    background: #f4f4f4;
    min-height: 480px;

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

    overflow: hidden;
}

.about-image-frame img {
    width: 75%;
    max-width: 360px;
    height: auto;
    object-fit: contain;
}

.about-badge {
    position: absolute;
    right: -25px;
    bottom: 35px;

    width: 150px;
    height: 150px;

    border-radius: 50%;
    background: var(--orange);
    color: #fff;

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

    box-shadow: 0 15px 35px rgba(0,0,0,.15);
}

.about-badge strong {
    font-size: 21px;
    letter-spacing: 1px;
}

.about-badge span {
    font-size: 11px;
    letter-spacing: 2px;
    margin-top: 4px;
}


.about-content h2 {
    margin: 0 0 25px;

    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -2px;

    color: var(--dark);
}

.about-content h2 strong {
    color: var(--orange);
}

.about-content p {
    color: #62676c;
    font-size: 16px;
    line-height: 1.8;
    margin: 0 0 18px;
}


/* VALUES */

.about-values {
    background: #f6f7f8;
    padding: 100px 0;
}

.centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 55px;
}

.centered h2 {
    margin-top: 0;
    color: var(--dark);
}

.centered h2 strong {
    color: var(--orange);
}

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

.value-card {
    background: #fff;
    padding: 35px 28px;
    border: 1px solid #e9eaec;
    transition: transform .25s ease, box-shadow .25s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0,0,0,.08);
}

.value-number {
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 35px;
}

.value-card h3 {
    color: var(--dark);
    font-size: 21px;
    margin: 0 0 15px;
}

.value-card p {
    color: #70757a;
    line-height: 1.7;
    font-size: 14px;
    margin: 0;
}


/* ABOUT CTA */

.about-cta {
    background: var(--orange);
    color: #fff;
    padding: 70px 0;
}

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

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

.about-cta-container > div > span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    opacity: .85;
}

.about-cta h2 {
    margin: 12px 0 0;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.about-cta h2 strong {
    display: block;
}

.about-cta .contact-large-button {
    background: #fff;
    color: var(--dark);
    flex-shrink: 0;
}

.about-cta .contact-large-button:hover {
    background: var(--dark);
    color: #fff;
}


/* MOBILE */

@media (max-width: 950px) {

    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-image {
        max-width: 600px;
        margin: auto;
        width: 100%;
    }

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

}


@media (max-width: 700px) {

    .page-hero {
        padding: 75px 0;
    }

    .page-hero h1 {
        letter-spacing: -2px;
    }

    .about-main {
        padding: 70px 0;
    }

    .about-image-frame {
        min-height: 330px;
    }

    .about-badge {
        width: 110px;
        height: 110px;
        right: -5px;
        bottom: 20px;
    }

    .about-badge strong {
        font-size: 16px;
    }

    .about-badge span {
        font-size: 9px;
    }

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

    .about-values {
        padding: 70px 0;
    }

    .about-cta {
        padding: 55px 0;
    }

    .about-cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   HİZMETLERİMİZ
   ========================================================= */

.services-main {
    padding: 110px 0;
    background: #fff;
}

.services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: end;
    margin-bottom: 65px;
}

.services-intro h2 {
    margin: 0;
    color: var(--dark);
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.services-intro h2 strong {
    color: var(--orange);
}

.services-intro > p {
    margin: 0;
    color: #666c72;
    font-size: 16px;
    line-height: 1.8;
    max-width: 540px;
}

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

.service-card-large {
    min-height: 300px;
    padding: 38px;

    background: #f6f7f8;
    border: 1px solid #e7e8ea;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: .25s ease;
}

.service-card-large:hover {
    background: var(--dark);
    border-color: var(--dark);
    transform: translateY(-5px);
}

.service-card-icon {
    width: 52px;
    height: 52px;

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

    background: var(--orange);
    color: #fff;

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

.service-card-content > span {
    color: var(--orange);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.service-card-content h3 {
    margin: 12px 0 12px;
    color: var(--dark);
    font-size: 25px;
}

.service-card-content p {
    margin: 0;
    max-width: 550px;
    color: #686e74;
    font-size: 15px;
    line-height: 1.7;
}

.service-card-large:hover .service-card-content h3,
.service-card-large:hover .service-card-content p {
    color: #fff;
}

.services-process {
    padding: 100px 0;
    background: #f6f7f8;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.process-item {
    background: #fff;
    padding: 35px;
    border: 1px solid #e7e8ea;
}

.process-icon {
    color: var(--orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 45px;
}

.process-item h3 {
    margin: 0 0 12px;
    color: var(--dark);
    font-size: 21px;
}

.process-item p {
    margin: 0;
    color: #6b7177;
    line-height: 1.7;
    font-size: 14px;
}

.services-cta {
    padding: 70px 0;
    background: var(--orange);
}

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

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

.services-cta-container > div > span {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #fff;
}

.services-cta h2 {
    margin: 12px 0 0;
    color: #fff;
    font-size: clamp(32px, 4vw, 50px);
    letter-spacing: -2px;
}

.services-cta .contact-large-button {
    flex-shrink: 0;
    background: #fff;
    color: var(--dark);
}

.services-cta .contact-large-button:hover {
    background: var(--dark);
    color: #fff;
}


@media (max-width: 950px) {

    .services-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

}


@media (max-width: 700px) {

    .services-main {
        padding: 70px 0;
    }

    .services-process {
        padding: 70px 0;
    }

    .service-card-large {
        min-height: 270px;
        padding: 28px;
    }

    .services-cta {
        padding: 55px 0;
    }

    .services-cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   REFERANSLAR
   ========================================================= */

.references-main {
    padding: 110px 0;
    background: #fff;
}

.references-heading {
    max-width: 720px;
    margin-bottom: 60px;
}

.references-heading h2 {
    margin: 0 0 25px;
    color: var(--dark);
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.references-heading h2 strong {
    color: var(--orange);
}

.references-heading p {
    margin: 0;
    color: #686e74;
    font-size: 16px;
    line-height: 1.8;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.reference-card {
    min-height: 190px;
    padding: 35px;

    background: #f6f7f8;
    border: 1px solid #e7e8ea;

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

    text-align: center;

    transition: .25s ease;
}

.reference-card:hover {
    background: var(--dark);
    transform: translateY(-5px);
}

.reference-logo {
    color: var(--dark);
    font-size: 25px;
    font-weight: 800;
    letter-spacing: 2px;
}

.reference-logo::first-letter {
    color: var(--orange);
}

.reference-card p {
    margin: 12px 0 0;
    color: #7a7f84;
    font-size: 13px;
}

.reference-card:hover .reference-logo {
    color: #fff;
}

.reference-card:hover p {
    color: rgba(255,255,255,.65);
}


/* REFERANS CTA */

.references-note {
    padding: 75px 0;
    background: var(--orange);
}

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

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

.references-note-container > div > span {
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.references-note h2 {
    margin: 12px 0 0;
    color: #fff;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.references-note h2 strong {
    display: block;
}

.references-note .contact-large-button {
    flex-shrink: 0;
    background: #fff;
    color: var(--dark);
}

.references-note .contact-large-button:hover {
    background: var(--dark);
    color: #fff;
}


@media (max-width: 950px) {

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

}


@media (max-width: 700px) {

    .references-main {
        padding: 70px 0;
    }

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

    .reference-card {
        min-height: 160px;
    }

    .references-note {
        padding: 55px 0;
    }

    .references-note-container {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================================
   İLETİŞİM
   ========================================================= */

.contact-main {
    padding: 110px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 80px;
    align-items: stretch;
}

.contact-info h2 {
    margin: 0 0 25px;
    color: var(--dark);
    font-size: clamp(36px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.contact-info h2 strong {
    color: var(--orange);
}

.contact-info > p {
    max-width: 540px;
    margin: 0 0 45px;
    color: #686e74;
    font-size: 16px;
    line-height: 1.8;
}

.contact-list {
    border-top: 1px solid #e5e6e8;
}

.contact-item {
    min-height: 88px;
    padding: 18px 0;

    border-bottom: 1px solid #e5e6e8;

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

    color: inherit;
    text-decoration: none;

    transition: .2s ease;
}

a.contact-item:hover {
    padding-left: 8px;
}

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

    flex-shrink: 0;

    background: var(--dark);
    color: #fff;

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

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

.contact-item small {
    display: block;
    margin-bottom: 6px;

    color: #8a8f94;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.contact-item strong {
    color: var(--dark);
    font-size: 16px;
    line-height: 1.5;
}

.contact-arrow {
    margin-left: auto;
    color: var(--orange);
    font-size: 20px;
}


/* MAP */

.contact-map {
    min-height: 520px;
    background: #f5f6f7;
    border: 1px solid #e5e6e8;
    overflow: hidden;
}

.map-header {
    min-height: 82px;
    padding: 18px 25px;

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

    background: var(--dark);
    color: #fff;
}

.map-header span {
    display: block;
    margin-bottom: 5px;

    color: var(--orange);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.map-header strong {
    font-size: 16px;
}

.map-header a {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.map-header a:hover {
    color: var(--orange);
}

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


/* CTA */

.contact-cta {
    padding: 70px 0;
    background: var(--orange);
}

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

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

.contact-cta-container > div > span {
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-cta h2 {
    margin: 12px 0 0;
    color: #fff;
    font-size: clamp(32px, 4vw, 50px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.contact-cta h2 strong {
    display: block;
}

.contact-cta .contact-large-button {
    flex-shrink: 0;
    background: #fff;
    color: var(--dark);
}

.contact-cta .contact-large-button:hover {
    background: var(--dark);
    color: #fff;
}


/* MOBILE */

@media (max-width: 950px) {

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

    .contact-map {
        min-height: 450px;
    }

    .contact-map iframe {
        height: 368px;
    }

}


@media (max-width: 700px) {

    .contact-main {
        padding: 70px 0;
    }

    .contact-info > p {
        margin-bottom: 35px;
    }

    .contact-item {
        min-height: 80px;
    }

    .contact-map {
        min-height: 390px;
    }

    .contact-map iframe {
        height: 310px;
    }

    .map-header {
        padding: 16px;
    }

    .contact-cta {
        padding: 55px 0;
    }

    .contact-cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

}


/* =========================================
   FOODEX EXPRESS - ANA SAYFA POLISH
   ========================================= */

/* Hero */
.hero {
    min-height: 680px;
    display: flex;
    align-items: center;
    background:
        radial-gradient(circle at 78% 45%, rgba(243,107,10,.08), transparent 30%),
        #ffffff;
}

.hero-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 60px;
}

.hero-text {
    max-width: 650px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #f36b0a;
}

.eyebrow span {
    width: 26px;
    height: 2px;
    background: #f36b0a;
    display: block;
}

.hero h1 {
    margin: 0;
    font-size: clamp(46px, 5.2vw, 72px);
    line-height: 1.02;
    letter-spacing: -3px;
    color: #151c22;
}

.hero h1 span {
    color: #f36b0a;
}

.hero-text > p {
    max-width: 570px;
    margin: 28px 0 32px;
    font-size: 17px;
    line-height: 1.8;
    color: #68727b;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 13px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-outline {
    min-height: 52px;
    padding: 0 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: .25s ease;
}

.btn-primary {
    color: #fff;
    background: #f36b0a;
    box-shadow: 0 10px 24px rgba(243,107,10,.18);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(243,107,10,.25);
}

.btn-outline {
    color: #151c22;
    border: 1px solid #dfe3e6;
    background: #fff;
}

.btn-outline:hover {
    border-color: #f36b0a;
    color: #f36b0a;
}

.hero-features {
    display: flex;
    gap: 34px;
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #eceff1;
}

.hero-features > div {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.hero-features strong {
    font-size: 14px;
    color: #151c22;
}

.hero-features small {
    font-size: 12px;
    color: #8a9299;
}

/* Hero visual */
.hero-image {
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orange-circle {
    width: 390px;
    height: 390px;
    position: absolute;
    border-radius: 50%;
    background: #f36b0a;
    opacity: .09;
}

.main-logo {
    width: 290px;
    height: 290px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 25px 70px rgba(21,28,34,.13);
    border: 10px solid #fff;
}

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

.info-box {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 17px;
    border: 1px solid #eceff1;
    border-radius: 10px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 15px 40px rgba(21,28,34,.10);
}

.box-one {
    left: 0;
    top: 26%;
}

.box-two {
    right: 0;
    bottom: 22%;
}

.info-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    border-radius: 8px;
    background: #fff2e8;
    color: #f36b0a;
    font-weight: 800;
}

.info-box strong,
.info-box small {
    display: block;
}

.info-box strong {
    font-size: 12px;
    color: #151c22;
}

.info-box small {
    margin-top: 3px;
    font-size: 11px;
    color: #8a9299;
}

/* Intro */
.intro {
    padding: 105px 0;
    background: #151c22;
    color: #fff;
}

.intro-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 90px;
    align-items: center;
}

.intro-title > span,
.section-heading > span,
.home-contact span {
    display: block;
    margin-bottom: 15px;
    color: #f36b0a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.intro-title h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.intro-title h2 strong {
    color: #f36b0a;
}

.intro-text p {
    max-width: 570px;
    margin: 0 0 26px;
    color: #aeb6bc;
    font-size: 16px;
    line-height: 1.8;
}

.intro-text a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
}

.intro-text a span {
    margin: 0;
    font-size: 18px;
}

/* Quick services */
.quick-services {
    padding: 105px 0;
    background: #f7f8f9;
}

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

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

.section-heading h2 {
    margin: 0;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.1;
    letter-spacing: -2px;
    color: #151c22;
}

.section-heading h2 strong {
    color: #f36b0a;
}

.service-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.service-item {
    min-height: 220px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    border: 1px solid #e4e7e9;
    border-radius: 10px;
    background: #fff;
    text-decoration: none;
    transition: .25s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    border-color: #f36b0a;
    box-shadow: 0 18px 40px rgba(21,28,34,.08);
}

.service-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    margin-bottom: 25px;
    border-radius: 8px;
    background: #fff2e8;
    color: #f36b0a;
    font-weight: 800;
}

.service-item h3 {
    margin: 0 0 8px;
    color: #151c22;
    font-size: 17px;
}

.service-item p {
    margin: 0;
    color: #7b858d;
    font-size: 13px;
    line-height: 1.7;
}

.service-item .arrow {
    position: absolute;
    right: 25px;
    bottom: 25px;
    color: #f36b0a;
    font-size: 20px;
    transition: .25s ease;
}

.service-item:hover .arrow {
    transform: translateX(4px);
}

/* Home CTA */
.home-contact {
    padding: 85px 0;
    background: #f36b0a;
}

.home-contact-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.home-contact span {
    margin-bottom: 12px;
    color: rgba(255,255,255,.75);
}

.home-contact h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.home-contact h2 strong {
    color: #151c22;
}

.contact-large-button {
    min-height: 56px;
    padding: 0 25px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 7px;
    background: #151c22;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: .25s ease;
}

.contact-large-button:hover {
    transform: translateY(-2px);
    background: #fff;
    color: #151c22;
}

/* Mobile */
@media (max-width: 950px) {
    .hero {
        min-height: auto;
        padding: 80px 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

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

    .hero-image {
        min-height: 400px;
    }

    .intro-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .service-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 700px) {
    .hero-container,
    .section-container,
    .intro-container,
    .home-contact-container {
        width: min(100% - 32px, 1180px);
    }

    .hero {
        padding: 60px 0;
    }

    .hero h1 {
        font-size: 45px;
        letter-spacing: -2px;
    }

    .hero-text > p {
        font-size: 15px;
        margin: 22px 0 27px;
    }

    .hero-features {
        gap: 20px;
        margin-top: 38px;
    }

    .hero-features strong {
        font-size: 13px;
    }

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

    .orange-circle {
        width: 270px;
        height: 270px;
    }

    .main-logo {
        width: 210px;
        height: 210px;
    }

    .info-box {
        padding: 10px 12px;
    }

    .box-one {
        left: 0;
    }

    .box-two {
        right: 0;
    }

    .intro,
    .quick-services {
        padding: 75px 0;
    }

    .home-contact-container {
        align-items: flex-start;
        flex-direction: column;
    }

    .contact-large-button {
        width: 100%;
        justify-content: center;
    }
}

/* =========================================
   FOODEX EXPRESS - HEADER POLISH
   ========================================= */

.site-header {
    height: 78px;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid #eceff1;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.header-container {
    width: min(1180px, calc(100% - 48px));
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-area img {
    width: 44px;
    height: 44px;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.logo-name {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-name strong {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.5px;
    color: #151c22;
}

.logo-name strong span {
    color: #f36b0a;
}

.logo-name small {
    margin-top: 4px;
    color: #8a9299;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 2.2px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav a {
    position: relative;
    padding: 10px 13px;
    color: #626c74;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: color .2s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 3px;
    height: 2px;
    background: #f36b0a;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #151c22;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.contact-button {
    min-height: 42px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 7px;
    background: #151c22;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: .2s ease;
}

.contact-button:hover {
    background: #f36b0a;
    transform: translateY(-1px);
}

.contact-button span {
    font-size: 14px;
}

.mobile-menu {
    width: 42px;
    height: 42px;
    padding: 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid #e1e5e8;
    border-radius: 7px;
    background: #fff;
    cursor: pointer;
}

.mobile-menu span {
    width: 18px;
    height: 2px;
    display: block;
    background: #151c22;
    transition: .2s ease;
}

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

.mobile-menu.open span:nth-child(2) {
    opacity: 0;
}

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

@media (max-width: 950px) {
    .site-header {
        height: 70px;
    }

    .header-container {
        width: min(100% - 32px, 1180px);
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 16px;
        right: 16px;
        padding: 10px;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        border: 1px solid #e4e7e9;
        border-radius: 10px;
        background: #fff;
        box-shadow: 0 15px 35px rgba(21,28,34,.12);
    }

    .main-nav.show {
        display: flex;
    }

    .main-nav a {
        padding: 13px 14px;
        border-radius: 6px;
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav a:hover,
    .main-nav a.active {
        background: #fff2e8;
        color: #f36b0a;
    }

    .contact-button {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }
}

@media (max-width: 500px) {
    .logo-area img {
        width: 40px;
        height: 40px;
    }

    .logo-name strong {
        font-size: 16px;
    }

    .logo-name small {
        font-size: 7px;
    }
}


/* =========================================
   FOODEX EXPRESS - REFERANSLAR POLISH
   ========================================= */

.references-main {
    padding: 100px 0;
    background: #fff;
}

.references-heading {
    max-width: 760px;
    margin-bottom: 50px;
}

.section-label {
    display: block;
    margin-bottom: 14px;
    color: #f36b0a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.references-heading h2 {
    margin: 0 0 20px;
    color: #151c22;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.references-heading h2 strong {
    color: #f36b0a;
}

.references-heading p {
    max-width: 680px;
    margin: 0;
    color: #727c84;
    font-size: 15px;
    line-height: 1.8;
}

.reference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.reference-card {
    min-height: 175px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border: 1px solid #e5e8ea;
    border-radius: 10px;
    background: #fafbfc;
    transition: .25s ease;
}

.reference-card:hover {
    transform: translateY(-4px);
    border-color: #f36b0a;
    background: #fff;
    box-shadow: 0 16px 35px rgba(21,28,34,.08);
}

.reference-logo {
    min-width: 92px;
    min-height: 42px;
    padding: 0 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 7px;
    background: #151c22;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.reference-card:hover .reference-logo {
    background: #f36b0a;
}

.reference-card p {
    margin: 0;
    color: #68727b;
    font-size: 13px;
    line-height: 1.5;
}

.references-note {
    padding: 80px 0;
    background: #f36b0a;
}

.references-note-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.references-note-container > div > span {
    display: block;
    margin-bottom: 12px;
    color: rgba(255,255,255,.75);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.references-note h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.references-note h2 strong {
    color: #151c22;
}

@media (max-width: 850px) {
    .reference-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .references-main {
        padding: 70px 0;
    }

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

    .reference-card {
        min-height: 145px;
    }

    .references-note {
        padding: 65px 0;
    }

    .references-note-container {
        width: calc(100% - 32px);
        flex-direction: column;
        align-items: flex-start;
    }

    .references-note .contact-large-button {
        width: 100%;
        justify-content: center;
    }
}


/* =========================================
   FOODEX EXPRESS - HAKKIMIZDA POLISH
   ========================================= */

.about-main {
    padding: 100px 0;
    background: #fff;
}

.about-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    gap: 85px;
}

.about-image {
    position: relative;
    min-height: 470px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-frame {
    width: min(390px, 100%);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px;
    background: #f7f8f9;
    border: 1px solid #e5e8ea;
    box-shadow: 0 25px 60px rgba(21,28,34,.10);
}

.about-image-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    right: 2%;
    bottom: 7%;
    min-width: 145px;
    padding: 17px 20px;
    border-radius: 9px;
    background: #151c22;
    color: #fff;
    box-shadow: 0 15px 35px rgba(21,28,34,.18);
}

.about-badge strong,
.about-badge span {
    display: block;
}

.about-badge strong {
    color: #fff;
    font-size: 17px;
    letter-spacing: -.3px;
}

.about-badge span {
    margin-top: 4px;
    color: #f36b0a;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-content {
    max-width: 620px;
}

.about-content .section-label {
    margin-bottom: 15px;
}

.about-content h2 {
    margin: 0 0 27px;
    color: #151c22;
    font-size: clamp(35px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.about-content h2 strong {
    color: #f36b0a;
}

.about-content p {
    margin: 0 0 18px;
    color: #707a82;
    font-size: 15px;
    line-height: 1.85;
}

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

/* Değerler */
.about-values {
    padding: 100px 0;
    background: #f7f8f9;
}

.section-heading.centered {
    max-width: 650px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-heading.centered > span {
    display: block;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.value-card {
    min-height: 205px;
    padding: 28px;
    border: 1px solid #e3e7e9;
    border-radius: 10px;
    background: #fff;
    transition: .25s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    border-color: #f36b0a;
    box-shadow: 0 16px 35px rgba(21,28,34,.07);
}

.value-card h3 {
    margin: 0 0 13px;
    color: #151c22;
    font-size: 17px;
}

.value-card p {
    margin: 0;
    color: #778189;
    font-size: 13px;
    line-height: 1.75;
}

/* Hakkımızda CTA */
.about-cta {
    padding: 80px 0;
    background: #151c22;
}

.about-cta-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-cta-container > div > span {
    display: block;
    margin-bottom: 12px;
    color: #f36b0a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-cta h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.about-cta h2 strong {
    color: #f36b0a;
}

@media (max-width: 950px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-image {
        min-height: auto;
    }

    .about-content {
        max-width: 100%;
    }

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

@media (max-width: 650px) {
    .about-main,
    .about-values {
        padding: 70px 0;
    }

    .about-container,
    .about-cta-container {
        width: calc(100% - 32px);
    }

    .about-image-frame {
        width: 300px;
    }

    .about-badge {
        right: 2%;
        bottom: 3%;
    }

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

    .value-card {
        min-height: auto;
    }

    .about-cta {
        padding: 65px 0;
    }

    .about-cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .about-cta .contact-large-button {
        width: 100%;
        justify-content: center;
    }
}


/* =========================================
   FOODEX EXPRESS - HİZMETLERİMİZ POLISH
   ========================================= */

.services-main {
    padding: 100px 0;
    background: #fff;
}

.services-intro {
    display: grid;
    grid-template-columns: 1fr .75fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 55px;
}

.services-intro h2 {
    margin: 0;
    color: #151c22;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.services-intro h2 strong {
    color: #f36b0a;
}

.services-intro > p {
    margin: 0;
    color: #707a82;
    font-size: 15px;
    line-height: 1.85;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.service-card-large {
    position: relative;
    display: flex;
    gap: 24px;
    min-height: 220px;
    padding: 32px;
    border: 1px solid #e2e6e8;
    border-radius: 11px;
    background: #fff;
    transition: .25s ease;
}

.service-card-large:hover {
    transform: translateY(-4px);
    border-color: #f36b0a;
    box-shadow: 0 18px 40px rgba(21,28,34,.08);
}

.service-card-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #fff3eb;
    color: #f36b0a;
    font-size: 22px;
    font-weight: 800;
}

.service-card-content h3 {
    margin: 2px 0 12px;
    color: #151c22;
    font-size: 20px;
    letter-spacing: -.4px;
}

.service-card-content p {
    margin: 0;
    color: #707a82;
    font-size: 14px;
    line-height: 1.8;
}

/* Süreç */
.services-process {
    padding: 100px 0;
    background: #f7f8f9;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 48px;
}

.process-item {
    padding: 32px;
    background: #fff;
    border: 1px solid #e3e7e9;
    border-radius: 10px;
}

.process-item h3 {
    margin: 0 0 12px;
    color: #151c22;
    font-size: 18px;
}

.process-item p {
    margin: 0;
    color: #778189;
    font-size: 13px;
    line-height: 1.75;
}

/* CTA */
.services-cta {
    padding: 80px 0;
    background: #f36b0a;
}

.services-cta-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.services-cta-container > div > span {
    display: block;
    margin-bottom: 12px;
    color: rgba(255,255,255,.75);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.services-cta h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.services-cta .contact-large-button {
    background: #151c22;
    color: #fff;
    border-color: #151c22;
}

.services-cta .contact-large-button:hover {
    background: #fff;
    color: #151c22;
    border-color: #fff;
}

@media (max-width: 900px) {

    .services-intro {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

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

}

@media (max-width: 650px) {

    .services-main,
    .services-process {
        padding: 70px 0;
    }

    .services-intro,
    .services-grid,
    .process-grid {
        width: calc(100% - 32px);
        margin-left: auto;
        margin-right: auto;
    }

    .services-intro {
        margin-bottom: 40px;
    }

    .service-card-large {
        padding: 25px;
        gap: 18px;
        min-height: auto;
    }

    .service-card-icon {
        flex-basis: 46px;
        width: 46px;
        height: 46px;
        font-size: 19px;
    }

    .services-cta {
        padding: 65px 0;
    }

    .services-cta-container {
        width: calc(100% - 32px);
        flex-direction: column;
        align-items: flex-start;
    }

    .services-cta .contact-large-button {
        width: 100%;
        justify-content: center;
    }

}


/* =========================================
   FOODEX EXPRESS - İLETİŞİM POLISH
   ========================================= */

.contact-main {
    padding: 100px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 70px;
    align-items: stretch;
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h2 {
    margin: 0 0 22px;
    color: #151c22;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.contact-info h2 strong {
    color: #f36b0a;
}

.contact-info > p {
    max-width: 540px;
    margin: 0 0 35px;
    color: #707a82;
    font-size: 15px;
    line-height: 1.85;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 17px;
    min-height: 78px;
    padding: 15px 18px;
    border: 1px solid #e3e7e9;
    border-radius: 9px;
    background: #fff;
    color: inherit;
    text-decoration: none;
    transition: .25s ease;
}

.contact-item:hover {
    border-color: #f36b0a;
    transform: translateX(4px);
    box-shadow: 0 10px 25px rgba(21,28,34,.06);
}

.contact-icon {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff3eb;
    color: #f36b0a;
    font-size: 18px;
    font-weight: 800;
}

.contact-item > div:nth-child(2) {
    flex: 1;
}

.contact-item small {
    display: block;
    margin-bottom: 5px;
    color: #90989e;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.contact-item strong {
    display: block;
    color: #151c22;
    font-size: 14px;
    line-height: 1.5;
}

.contact-arrow {
    color: #a3aaaf;
    font-size: 18px;
    transition: .25s ease;
}

.contact-item:hover .contact-arrow {
    color: #f36b0a;
    transform: translateX(3px);
}

/* Harita */
.contact-map {
    min-height: 520px;
    overflow: hidden;
    border: 1px solid #e2e6e8;
    border-radius: 12px;
    background: #f5f6f7;
    box-shadow: 0 20px 50px rgba(21,28,34,.08);
}

.map-header {
    min-height: 78px;
    padding: 17px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #151c22;
}

.map-header span {
    display: block;
    margin-bottom: 4px;
    color: #f36b0a;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.map-header strong {
    color: #fff;
    font-size: 15px;
}

.map-header a {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.map-header a:hover {
    color: #f36b0a;
}

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

/* İletişim CTA */
.contact-cta {
    padding: 80px 0;
    background: #f36b0a;
}

.contact-cta-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.contact-cta-container > div > span {
    display: block;
    margin-bottom: 12px;
    color: rgba(255,255,255,.75);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
}

.contact-cta h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.contact-cta h2 strong {
    color: #151c22;
}

.contact-cta .contact-large-button {
    background: #151c22;
    color: #fff;
    border-color: #151c22;
}

.contact-cta .contact-large-button:hover {
    background: #fff;
    color: #151c22;
    border-color: #fff;
}

@media (max-width: 900px) {

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

    .contact-map {
        min-height: 450px;
    }

    .contact-map iframe {
        height: 372px;
    }

}

@media (max-width: 650px) {

    .contact-main {
        padding: 70px 0;
    }

    .contact-grid,
    .contact-cta-container {
        width: calc(100% - 32px);
        margin-left: auto;
        margin-right: auto;
    }

    .contact-map {
        min-height: 400px;
        border-radius: 9px;
    }

    .map-header {
        padding: 15px;
    }

    .contact-map iframe {
        height: 320px;
    }

    .contact-item {
        min-height: 72px;
        padding: 13px;
    }

    .contact-cta {
        padding: 65px 0;
    }

    .contact-cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-cta .contact-large-button {
        width: 100%;
        justify-content: center;
    }

}


/* =========================================
   REFERANSLAR - LOGO TASARIMI
   ========================================= */

.reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
    gap: 24px;
    justify-content: center;
    align-items: stretch;
}

.reference-card {
    min-height: 220px;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #e5e8ea;
    border-radius: 12px;
    background: #fff;
    transition: .25s ease;
}

.reference-card:hover {
    transform: translateY(-5px);
    border-color: #f36b0a;
    box-shadow: 0 14px 35px rgba(21, 28, 34, .10);
}

.reference-logo {
    width: 190px;
    height: 105px;
    margin-bottom: 18px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 9px;
    background: #f7f8f9;
    color: #151c22;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1px;
    overflow: hidden;
}

.reference-logo img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 170px;
    max-height: 85px;
    object-fit: contain;
    border-radius: 6px;
}

.reference-card p {
    margin: 0;
    color: #68727b;
    font-size: 13px;
    line-height: 1.5;
}

@media (max-width: 600px) {

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

    .reference-card {
        min-height: 200px;
    }

    .reference-logo {
        width: 180px;
        height: 100px;
    }
}


/* =========================================
   REFERANSLAR - SADE / KURUMSAL TASARIM
   ========================================= */

.reference-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 300px));
    gap: 28px;
    justify-content: center;
    align-items: stretch;
}

.reference-card {
    min-height: 235px;
    padding: 30px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid #e8eaec;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 5px 18px rgba(21, 28, 34, .04);
    transition: none;
}

.reference-card:hover {
    transform: none;
    border-color: #e8eaec;
    background: #fff;
    box-shadow: 0 5px 18px rgba(21, 28, 34, .04);
}

.reference-logo {
    width: 100%;
    height: 120px;
    margin: 0 0 18px;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #151c22;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1px;
    overflow: hidden;
}

.reference-logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 210px;
    max-height: 105px;
    object-fit: contain;
    border-radius: 0;
}

.reference-card:hover .reference-logo {
    background: transparent;
    color: #151c22;
}

.reference-card p {
    margin: 0;
    color: #68727b;
    font-size: 13px;
    line-height: 1.55;
}

@media (max-width: 600px) {

    .reference-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 20px;
    }

    .reference-card {
        min-height: 220px;
        padding: 25px 22px;
    }

    .reference-logo {
        height: 110px;
    }

    .reference-logo img {
        max-width: 190px;
        max-height: 95px;
    }
}


/* Referans kartlarında hover yazı rengi sabit */
.reference-card:hover .reference-logo {
    color: #151c22 !important;
    background: transparent !important;
}

.reference-card:hover p {
    color: #68727b !important;
}

.reference-card:hover {
    transform: none !important;
    border-color: #e8eaec !important;
    background: #fff !important;
    box-shadow: 0 5px 18px rgba(21, 28, 34, .04) !important;
}


/* =========================
   CONTACT FORM
   ========================= */

.contact-form-box {
    padding: 38px;
    background: #fff;
    border: 1px solid #e7e9eb;
    border-radius: 14px;
    box-shadow: 0 8px 28px rgba(21, 28, 34, .05);
    margin-bottom: 28px;
}

.contact-form-box h2 {
    margin: 10px 0 28px;
    font-size: 30px;
    line-height: 1.2;
    color: #151c22;
}

.contact-form-box h2 strong {
    display: block;
    color: #f36b0a;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-form-field {
    margin-bottom: 18px;
}

.contact-form-field label {
    display: block;
    margin-bottom: 8px;
    color: #151c22;
    font-size: 13px;
    font-weight: 700;
}

.contact-form-field label span {
    color: #8a9299;
    font-weight: 400;
}

.contact-form-field input,
.contact-form-field textarea {
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #dfe3e6;
    border-radius: 8px;
    background: #fafbfc;
    color: #151c22;
    font-family: inherit;
    font-size: 14px;
    padding: 13px 15px;
    outline: none;
    transition: border-color .2s ease, background .2s ease;
}

.contact-form-field input {
    height: 48px;
}

.contact-form-field textarea {
    min-height: 125px;
    resize: vertical;
    line-height: 1.5;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
    border-color: #f36b0a;
    background: #fff;
}

.contact-form-field input::placeholder,
.contact-form-field textarea::placeholder {
    color: #9aa1a7;
}

.contact-form-button {
    width: 100%;
    min-height: 52px;
    padding: 0 22px;
    border: 0;
    border-radius: 8px;
    background: #f36b0a;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contact-form-button span {
    font-size: 18px;
}

@media (max-width: 700px) {
    .contact-form-box {
        padding: 26px 20px;
    }

    .contact-form-box h2 {
        font-size: 25px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Telefon +90 */
.phone-input {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #dfe3e6;
}

.phone-prefix {
    flex: 0 0 auto;
    color: #151c22;
    font-size: 14px;
    padding-right: 10px;
}

.phone-input input {
    border-bottom: 0 !important;
    flex: 1;
}

.phone-input:focus-within {
    border-bottom-color: #f36b0a;
}


/* ==========================================
   FOODEX CONTACT - FINAL LAYOUT
   ========================================== */

.contact-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 55px !important;
    align-items: start !important;
}

.contact-form-box {
    width: 100%;
    box-sizing: border-box;
    padding: 38px !important;
    margin: 0 !important;
    background: #fff !important;
    border: 1px solid #e5e8ea !important;
    border-radius: 14px !important;
    box-shadow: 0 8px 30px rgba(21, 28, 34, .06) !important;
}

.contact-form-box h2 {
    margin: 10px 0 28px !important;
    font-size: 30px !important;
    line-height: 1.2 !important;
}

.contact-form-box h2 strong {
    display: block;
    color: #f36b0a !important;
}

.contact-form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
}

.contact-form-field {
    margin-bottom: 18px !important;
}

.contact-form-field label {
    display: block;
    margin-bottom: 8px !important;
    color: #151c22 !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
}

.contact-form-field label span {
    color: #8a9299 !important;
    font-weight: 400 !important;
}

.contact-form-field input,
.contact-form-field textarea {
    width: 100% !important;
    box-sizing: border-box !important;
    border: 1px solid #dfe3e6 !important;
    border-radius: 8px !important;
    background: #fafbfc !important;
    color: #151c22 !important;
    padding: 13px 14px !important;
    font-family: inherit !important;
    font-size: 13px !important;
    outline: none !important;
}

.contact-form-field input {
    height: 46px !important;
}

.contact-form-field textarea {
    min-height: 125px !important;
    resize: vertical !important;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
    border-color: #f36b0a !important;
    background: #fff !important;
}

.phone-input {
    display: flex !important;
    align-items: center !important;
    height: 46px !important;
    border: 1px solid #dfe3e6 !important;
    border-radius: 8px !important;
    background: #fafbfc !important;
    overflow: hidden !important;
}

.phone-prefix {
    padding: 0 12px !important;
    color: #151c22 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    border-right: 1px solid #dfe3e6 !important;
}

.phone-input input {
    height: 44px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    flex: 1 !important;
}

.phone-input:focus-within {
    border-color: #f36b0a !important;
}

.contact-form-button {
    width: 100% !important;
    min-height: 50px !important;
    border: 0 !important;
    border-radius: 8px !important;
    background: #f36b0a !important;
    color: #fff !important;
    font-family: inherit !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
}

.contact-form-button:hover {
    background: #f36b0a !important;
    color: #fff !important;
}

.contact-map {
    width: 100% !important;
    margin-top: 28px !important;
    grid-column: 1 / -1 !important;
}

.contact-map iframe {
    width: 100% !important;
    min-height: 360px !important;
}

@media (max-width: 800px) {

    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }

    .contact-form-box {
        padding: 28px 22px !important;
    }

    .contact-form-row {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .contact-map {
        grid-column: auto !important;
        margin-top: 0 !important;
    }

}


/* Contact form notifications */

.contact-success,
.contact-error {
    width: 100%;
    box-sizing: border-box;
    margin: 0 0 24px;
    padding: 14px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
}

.contact-success {
    background: #edf7ed;
    border: 1px solid #cfe8cf;
    color: #287a35;
}

.contact-success span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #3c9b48;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}

.contact-error {
    background: #fff1f1;
    border: 1px solid #f0cccc;
    color: #a52c2c;
}

.contact-error span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #c83d3d;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    flex-shrink: 0;
}

