@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
    --yellow: #ffb400;
    --black: #08090a;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: "Montserrat", Arial, sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(92%, 1280px);
    margin: 0 auto;
}


/* ================================
   HEADER
================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 78px;
    z-index: 1000;
    background: rgba(3, 4, 5, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--yellow);
}

.logo span {
    color: white;
}

.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav a {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    transition: .25s;
}

.nav a:hover {
    color: var(--yellow);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--yellow);
    color: #111;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
}

.menu-btn {
    display: none;
    background: none;
    border: 0;
    color: white;
    font-size: 24px;
    cursor: pointer;
}


/* ================================
   HERO
================================ */

.hero {
    height: 100vh;
    min-height: 620px;
    max-height: 800px;
    position: relative;
    background: url("images/hero.jpg") center center / cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .9) 0%,
            rgba(0, 0, 0, .65) 45%,
            rgba(0, 0, 0, .25) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, .7),
            transparent 45%
        );
}

.hero-content {
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 580px;
    margin-left: 4%;
    padding-top: 40px;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 22px;
    color: #ddd;
}

.eyebrow span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--yellow);
    box-shadow: 0 0 12px var(--yellow);
}

.hero h1 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: clamp(42px, 6vw, 68px);
    line-height: .95;
    font-weight: 700;
    margin-bottom: 22px;
}

.hero h1 strong {
    display: block;
    color: var(--yellow);
}

.hero-text > p {
    color: #ddd;
    font-size: 15px;
    line-height: 1.7;
    max-width: 460px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    min-width: 150px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 24px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 800;
    transition: .25s;
}

.btn-yellow {
    background: var(--yellow);
    color: #111;
}

.btn-yellow:hover {
    background: white;
    transform: translateY(-3px);
}

.btn-outline {
    border: 1.5px solid rgba(255, 255, 255, .7);
    color: white;
}

.btn-outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
}

.yellow-border {
    border-color: var(--yellow);
}

.hero-actions {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 90px;
    z-index: 10;
    background: rgba(3, 4, 5, .88);
}

.hero-actions a {
    height: 75px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: #eee;
    transition: .2s;
}

.hero-actions i {
    font-size: 22px;
}

.hero-actions a:hover {
    color: var(--yellow);
    background: rgba(255, 180, 0, .1);
}


/* ================================
   SECTIONS
================================ */

.section-dark {
    background: var(--black);
}

.services,
.process,
.areas,
.why {
    padding: 70px 0;
}

.section-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 35px;
}

.section-number {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--yellow);
}

.section-head h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}


/* ================================
   SERVICES
================================ */

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.service-card {
    background: linear-gradient(160deg, #1c1e21, #121416);
    padding: 30px 26px 26px;
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 12px;
    transition: all .3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 180, 0, .5);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
}

.service-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 180, 0, .12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 22px;
    margin-bottom: 18px;
}

.service-card h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 20px;
    margin-bottom: 10px;
}

.service-card p {
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--yellow);
    font-size: 13px;
    font-weight: 600;
    transition: .25s;
}

.service-link:hover {
    gap: 12px;
}


/* ================================
   PROCESS
================================ */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-image {
    height: 150px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 16px;
}

.process-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .4s;
}

.process-card:hover img {
    transform: scale(1.06);
}

.process-number {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 48px;
    height: 32px;
    background: var(--yellow);
    color: #111;
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 800;
}

.process-card h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 18px;
    margin-bottom: 8px;
}

.process-card p {
    color: #aaa;
    font-size: 13.5px;
    line-height: 1.6;
}


/* ================================
   STATS
================================ */

.stats {
    background: #181a1c;
    padding: 45px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    padding: 10px 0;
}

.stat:last-child {
    border-right: 0;
}

.stat > i {
    color: var(--yellow);
    font-size: 32px;
}

.stat strong {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 36px;
    line-height: 1;
}

.stat span {
    display: block;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    margin-top: 4px;
    color: #bbb;
}


/* ================================
   AREAS / 39 İLÇE
================================ */

.areas-content {
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: start;
    gap: 40px;
}

.areas-text h2 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 38px;
    line-height: 1.05;
    margin-bottom: 18px;
}

.areas-text p {
    color: #aaa;
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.small-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border: 1.5px solid var(--yellow);
    color: white;
    border-radius: 6px;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    font-weight: 600;
    transition: .25s;
}

.small-btn:hover {
    background: var(--yellow);
    color: #111;
}

.map-area {
    width: 100%;
}

.districts {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 9px;
    margin-bottom: 30px;
}

.districts span {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
    background: linear-gradient(
        145deg,
        rgba(255, 255, 255, .055),
        rgba(255, 255, 255, .02)
    );
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 6px;
    color: #aaa;
    font-family: "Barlow Condensed", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .6px;
    transition: .25s ease;
}

.districts span:hover {
    color: #111;
    background: var(--yellow);
    border-color: var(--yellow);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 180, 0, .15);
}

.map-box {
    width: 100%;
    position: relative;
}

.map-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: brightness(.92) contrast(1.05);

    mask-image: radial-gradient(
        ellipse 88% 82% at center,
        black 52%,
        transparent 100%
    );

    -webkit-mask-image: radial-gradient(
        ellipse 88% 82% at center,
        black 52%,
        transparent 100%
    );
}

.map-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        transparent 45%,
        rgba(8, 9, 10, .65) 100%
    );
    pointer-events: none;
}


/* ================================
   WHY
================================ */

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.why-card {
    text-align: center;
    padding: 10px;
}

.why-card i {
    color: var(--yellow);
    font-size: 34px;
    margin-bottom: 16px;
}

.why-card h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 16px;
    margin-bottom: 10px;
}

.why-card p {
    color: #999;
    font-size: 13.5px;
    line-height: 1.6;
}


/* ================================
   CTA
================================ */

.cta {
    min-height: 240px;
    position: relative;
    background: url("images/cta.jpg") center / cover no-repeat;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, .9),
        rgba(0, 0, 0, .55)
    );
}

.cta-inner {
    position: relative;
    z-index: 2;
    min-height: 240px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 36px;
    margin: 8px 0 12px;
}

.cta-content > p {
    color: #ddd;
    font-size: 15px;
    margin-bottom: 22px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-list {
    width: 240px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px 26px;
    background: rgba(0, 0, 0, .55);
    border-radius: 8px;
}

.cta-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14.5px;
}

.cta-list i {
    color: var(--yellow);
}


/* ================================
   FOOTER
================================ */

.footer {
    background: #090a0b;
    padding-top: 55px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr 1.2fr;
    gap: 30px;
    padding-bottom: 45px;
}

.footer-about p {
    max-width: 260px;
    color: #999;
    font-size: 13.5px;
    line-height: 1.7;
    margin: 16px 0 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid #333;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #bbb;
    font-size: 15px;
    transition: .2s;
}

.footer-social a:hover {
    color: var(--yellow);
    border-color: var(--yellow);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column h3 {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 15px;
    margin-bottom: 8px;
}

.footer-column > a {
    color: #999;
    font-size: 13.5px;
    transition: .2s;
}

.footer-column > a:hover {
    color: var(--yellow);
}

.footer-column > a i {
    width: 20px;
    color: #ccc;
}

.fake-map {
    width: 160px;
    height: 95px;
    background:
        linear-gradient(
            25deg,
            transparent 45%,
            #aaa 46%,
            #aaa 48%,
            transparent 49%
        ),
        linear-gradient(
            155deg,
            transparent 50%,
            #777 51%,
            #777 53%,
            transparent 54%
        ),
        #dedede;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.fake-map span {
    position: absolute;
    bottom: 6px;
    left: 8px;
    color: #333;
    font-size: 11px;
    font-weight: 800;
    background: rgba(255, 255, 255, .85);
    padding: 3px 5px;
}

.map-pin {
    position: absolute;
    left: 55%;
    top: 40%;
    color: #df1d1d;
    font-size: 26px;
}

.map-road {
    position: absolute;
    background: #fff;
    opacity: .7;
}

.road-1 {
    width: 180px;
    height: 2px;
    transform: rotate(28deg);
    top: 28px;
}

.road-2 {
    width: 150px;
    height: 2px;
    transform: rotate(-22deg);
    top: 53px;
}

.road-3 {
    width: 100px;
    height: 2px;
    transform: rotate(78deg);
    left: 70px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #777;
    font-size: 13px;
    position: relative;
}

.footer-bottom a:hover {
    color: var(--yellow);
}

.back-top {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1.5px solid var(--yellow);
    color: var(--yellow);
    position: absolute;
    right: 0;
    bottom: 10px;
    transition: .2s;
}

.back-top:hover {
    background: var(--yellow);
    color: #111;
}


/* ================================
   ANIMATION
================================ */

.service-card,
.process-card,
.why-card,
.stat {
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity .6s ease,
        transform .6s ease;
}

.service-card.visible,
.process-card.visible,
.why-card.visible,
.stat.visible {
    opacity: 1;
    transform: translateY(0);
}


/* ================================
   RESPONSIVE - 1100
================================ */

@media (max-width: 1100px) {

    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .districts {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* ================================
   RESPONSIVE - 900
================================ */

@media (max-width: 900px) {

    .areas-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .areas-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-area {
        width: 100%;
    }

    .districts {
        grid-template-columns: repeat(4, 1fr);
    }
}


/* ================================
   RESPONSIVE - 780
================================ */

@media (max-width: 780px) {

    .header {
        height: 68px;
    }

    .nav {
        position: fixed;
        top: 68px;
        left: 0;
        width: 100%;
        background: #0a0b0c;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 25px;
        gap: 22px;
        border-bottom: 1px solid #222;
    }

    .nav.active {
        display: flex;
    }

    .header-phone {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .hero-actions {
        display: none;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .stat {
        border-right: 0;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 50px 0;
    }

    .cta-list {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .districts {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* ================================
   RESPONSIVE - 520
================================ */

@media (max-width: 520px) {

    /* HERO */

    .hero {
        background-position: 20% center;
    }

    .hero-text {
        margin-left: 0;
        padding-top: 30px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-text > p {
        font-size: 14px;
    }

    .hero-buttons {
        gap: 10px;
    }

    .btn {
        min-width: 140px;
        padding: 0 18px;
        font-size: 12px;
    }


    /* SECTIONS */

    .services,
    .process,
    .areas,
    .why {
        padding: 55px 0;
    }

    .section-head {
        margin-bottom: 28px;
    }


    /* PROCESS */

    .process-grid,
    .why-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }


    /* STATS */

    .stats-grid {
        grid-template-columns: 1fr;
    }


    /* AREAS */

    .areas-text h2 {
        font-size: 34px;
    }


    /* 39 İLÇE */

    .districts {
        grid-template-columns: repeat(2, 1fr);
        gap: 7px;
        margin-bottom: 22px;
    }

    .districts span {
        min-height: 35px;
        padding: 7px 5px;
        font-size: 12px;
        letter-spacing: .4px;
    }


    /* CTA */

    .cta-title {
        font-size: 32px;
    }

    .cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }


    /* FOOTER */

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        padding: 20px 0 55px;
    }
}