/* =========================================================
   İZMİR GEZİCİ LASTİKÇİ
   STYLE.CSS
   INDEX.HTML İLE TAM UYUMLU
   ========================================================= */


/* =========================================================
   TEMEL DEĞİŞKENLER
   ========================================================= */

:root {
    --dark: #101010;
    --dark-2: #171717;
    --dark-3: #222222;

    --white: #ffffff;
    --light: #f5f5f5;

    --gray: #777777;
    --gray-light: #e9e9e9;

    --red: #e50914;
    --red-dark: #b90710;

    --green: #20b858;
    --green-dark: #168c43;

    --border: #e3e3e3;

    --shadow:
        0 12px 35px rgba(0, 0, 0, 0.10);

    --shadow-dark:
        0 15px 40px rgba(0, 0, 0, 0.30);

    --radius: 14px;

    --container: 1180px;
}


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background: var(--white);
    color: var(--dark);

    line-height: 1.6;

    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.container {
    width: 100%;
    max-width: var(--container);

    margin: 0 auto;

    padding-left: 20px;
    padding-right: 20px;
}


/* =========================================================
   HEADER
   ========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(16, 16, 16, 0.98);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.header-inner {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


/* =========================================================
   NAVIGATION
   ========================================================= */

.nav {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 5px;

    margin-left: auto;
}

.nav a {
    color: #eeeeee;

    font-size: 14px;
    font-weight: 700;

    padding: 10px 13px;

    border-radius: 7px;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.2s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--white);
    background: var(--red);
}

.nav a:active {
    transform: scale(0.97);
}


/* =========================================================
   HEADER ACTIONS
   ========================================================= */

.header-actions {
    display: flex;

    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}


/*
   ÜST HEADER'DA SADECE HEMEN ARA BULUNUR.
   WhatsApp HTML'den kaldırıldığı için burada
   WhatsApp görünmeyecektir.
*/

.header-call {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 43px;

    padding: 0 18px;

    color: var(--white);

    background: var(--red);

    border-radius: 7px;

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;

    white-space: nowrap;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.header-call:hover {
    background: var(--red-dark);

    transform: translateY(-2px);
}


/* =========================================================
   MENU TOGGLE
   ========================================================= */

.menu-toggle {
    display: none;

    border: 0;

    background: transparent;

    color: var(--white);

    font-size: 30px;

    line-height: 1;

    cursor: pointer;

    padding: 5px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 680px;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            120deg,
            #080808 0%,
            #161616 55%,
            #252525 100%
        );

    overflow: hidden;
}


/* Dekoratif arka plan */

.hero::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    right: -180px;
    top: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(229, 9, 20, 0.28),
            transparent 68%
        );

    pointer-events: none;
}

.hero::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: -220px;
    bottom: -220px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(229, 9, 20, 0.15),
            transparent 70%
        );

    pointer-events: none;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.20)
        );

    pointer-events: none;
}

.hero-content {
    position: relative;

    z-index: 2;

    padding-top: 70px;
    padding-bottom: 70px;
}


/* =========================================================
   HERO BADGE
   ========================================================= */

.hero-badge {
    display: inline-flex;

    align-items: center;

    padding: 8px 14px;

    margin-bottom: 20px;

    color: var(--white);

    background:
        rgba(229, 9, 20, 0.15);

    border:
        1px solid rgba(229, 9, 20, 0.55);

    border-radius: 50px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 1px;
}


/* =========================================================
   HERO H1
   ========================================================= */

.hero h1 {
    max-width: 850px;

    color: var(--white);

    font-size:
        clamp(42px, 6vw, 76px);

    line-height: 1.04;

    font-weight: 900;

    letter-spacing: -2px;

    margin-bottom: 25px;
}

.hero h1 span {
    display: block;

    color: var(--red);
}


/* =========================================================
   HERO DESCRIPTION
   ========================================================= */

.hero-description {
    max-width: 690px;

    color: #dddddd;

    font-size: 19px;

    line-height: 1.75;

    margin-bottom: 32px;
}

.hero-description strong {
    color: var(--white);
}


/* =========================================================
   BUTTONS
   ========================================================= */

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 12px;

    flex-wrap: wrap;
}

.btn {
    min-height: 54px;

    padding: 0 27px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 900;

    letter-spacing: 0.4px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-call {
    color: var(--white);

    background: var(--red);

    box-shadow:
        0 10px 30px rgba(229, 9, 20, 0.25);
}

.btn-call:hover {
    background: var(--red-dark);
}

.btn-whatsapp {
    color: var(--white);

    background: var(--green);

    box-shadow:
        0 10px 30px rgba(32, 184, 88, 0.20);
}

.btn-whatsapp:hover {
    background: var(--green-dark);
}


/* =========================================================
   HERO INFO
   ========================================================= */

.hero-info {
    display: flex;

    flex-wrap: wrap;

    gap: 35px;

    margin-top: 45px;
}

.hero-info div {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.hero-info strong {
    color: var(--white);

    font-size: 22px;

    font-weight: 900;
}

.hero-info span {
    color: #aaaaaa;

    font-size: 12px;
}


/* =========================================================
   QUICK SERVICES
   ========================================================= */

.quick-services {
    position: relative;

    z-index: 5;

    margin-top: -45px;
}

.quick-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 15px;
}

.quick-card {
    min-height: 120px;

    padding: 20px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    gap: 4px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.quick-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.14);
}

.quick-card span {
    font-size: 25px;

    margin-bottom: 4px;
}

.quick-card strong {
    font-size: 16px;

    font-weight: 800;
}

.quick-card small {
    color: var(--gray);

    font-size: 12px;
}


/* =========================================================
   SECTION
   ========================================================= */

.section {
    padding: 100px 0;
}

.section-heading {
    max-width: 750px;

    margin:
        0 auto 55px;

    text-align: center;
}

.section-label {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--red);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.section-heading h2 {
    color: var(--dark);

    font-size:
        clamp(31px, 4vw, 48px);

    line-height: 1.15;

    font-weight: 900;

    letter-spacing: -1px;

    margin-bottom: 15px;
}

.section-heading h2 span {
    color: var(--red);
}

.section-heading p {
    color: var(--gray);

    font-size: 16px;
}


/* =========================================================
   DARK SECTION
   ========================================================= */

.section-dark {
    background: var(--dark);
}

.section-heading.light h2 {
    color: var(--white);
}

.section-heading.light p {
    color: #aaaaaa;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;
}

.service-card {
    padding: 30px;

    background: var(--white);

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    box-shadow:
        0 8px 25px 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 20px 45px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    background:
        #fff0f1;

    border-radius: 12px;

    font-size: 28px;
}

.service-card h3 {
    margin-bottom: 10px;

    font-size: 20px;

    font-weight: 900;
}

.service-card p {
    min-height: 75px;

    color: var(--gray);

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 18px;
}

.service-card a {
    color: var(--red);

    font-size: 13px;

    font-weight: 900;
}

.service-card a:hover {
    color: var(--red-dark);
}


/* =========================================================
   AREAS
   ========================================================= */

.areas-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;
}

.area-item {
    padding: 20px;

    color: var(--white);

    background:
        var(--dark-2);

    border:
        1px solid #303030;

    border-radius: 10px;

    font-size: 15px;

    font-weight: 700;

    text-align: center;

    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.area-item:hover {
    background: var(--red);

    border-color: var(--red);

    transform: translateY(-3px);
}

.area-wide {
    grid-column:
        span 4;

    background:
        linear-gradient(
            135deg,
            #2a2a2a,
            #151515
        );

    border-color:
        rgba(229, 9, 20, 0.45);

    color: #ffffff;
}

.area-call {
    margin-top: 40px;

    padding: 35px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    background:
        var(--dark-2);

    border:
        1px solid #303030;

    border-radius: var(--radius);
}

.area-call p {
    color: var(--white);

    font-size: 18px;

    font-weight: 800;
}


/* =========================================================
   ADVANTAGES
   ========================================================= */

.advantages {
    max-width: 950px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 20px;
}

.advantage {
    display: flex;

    gap: 20px;

    padding: 28px;

    border:
        1px solid var(--border);

    border-radius: var(--radius);

    background: var(--white);

    box-shadow:
        0 7px 25px rgba(0, 0, 0, 0.04);
}

.advantage > span {
    flex-shrink: 0;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: var(--white);

    background: var(--red);

    border-radius: 9px;

    font-size: 13px;

    font-weight: 900;

    text-align: center;
}

.advantage h3 {
    margin-bottom: 7px;

    font-size: 17px;

    font-weight: 900;
}

.advantage p {
    color: var(--gray);

    font-size: 14px;

    line-height: 1.65;
}


/*
   DARK SECTION İÇİN ADVANTAGE
   Kartlar okunabilir kalır.
*/

.section-dark .advantage {
    background: #1c1c1c;

    border-color: #303030;
}

.section-dark .advantage h3 {
    color: var(--white);
}

.section-dark .advantage p {
    color: #aaaaaa;
}


/* =========================================================
   CTA
   ========================================================= */

.cta {
    padding: 90px 0;

    background:
        linear-gradient(
            135deg,
            #b90710,
            #e50914
        );
}

.cta-content {
    text-align: center;

    max-width: 800px;

    margin: 0 auto;
}

.cta-content > span {
    color:
        rgba(255, 255, 255, 0.75);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 1.5px;
}

.cta h2 {
    margin:
        12px 0 15px;

    color: var(--white);

    font-size:
        clamp(34px, 5vw, 58px);

    line-height: 1.1;

    font-weight: 900;
}

.cta h2 strong {
    display: block;
}

.cta p {
    max-width: 650px;

    margin:
        0 auto 28px;

    color:
        rgba(255, 255, 255, 0.85);

    font-size: 16px;
}

.cta .btn-call {
    background: var(--dark);
}

.cta .btn-call:hover {
    background: #000000;
}

.cta .btn-whatsapp {
    background: var(--green);
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-box {
    padding: 45px;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    background: var(--light);

    border:
        1px solid var(--border);

    border-radius: 18px;
}

.contact-box h2 {
    margin-bottom: 14px;

    font-size:
        clamp(28px, 4vw, 42px);

    line-height: 1.15;

    font-weight: 900;
}

.contact-box h2 span {
    color: var(--red);
}

.contact-box p {
    max-width: 600px;

    color: var(--gray);

    font-size: 15px;
}

.contact-actions {
    min-width: 300px;

    display: flex;

    flex-direction: column;

    gap: 12px;
}

.contact-phone,
.contact-whatsapp {
    min-height: 72px;

    padding: 12px 20px;

    display: flex;

    align-items: center;

    gap: 15px;

    border-radius: 10px;

    color: var(--white);

    font-weight: 900;
}

.contact-phone {
    background: var(--dark);
}

.contact-whatsapp {
    background: var(--green);
}

.contact-phone > span,
.contact-whatsapp > span {
    display: flex;

    flex-direction: column;
}

.contact-phone small,
.contact-whatsapp small {
    margin-bottom: 2px;

    font-size: 10px;

    opacity: 0.7;

    letter-spacing: 1px;
}

.contact-phone:hover {
    background: #000000;
}

.contact-whatsapp:hover {
    background: var(--green-dark);
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    padding:
        65px 0 25px;

    background:
        #0b0b0b;

    color: #ffffff;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap: 40px;

    padding-bottom: 45px;
}

.footer-logo {
    margin-bottom: 18px;
}

.footer-grid > div > p {
    max-width: 360px;

    color: #999999;

    font-size: 13px;

    line-height: 1.7;
}

.footer-grid h3 {
    margin-bottom: 15px;

    font-size: 15px;
}

.footer-grid a,
.footer-grid > div > span {
    display: block;

    margin-bottom: 9px;

    color: #999999;

    font-size: 13px;

    transition:
        color 0.2s ease;
}

.footer-grid a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 22px;

    border-top:
        1px solid #252525;

    text-align: center;
}

.footer-bottom p {
    color: #777777;

    font-size: 12px;
}


/* =========================================================
   MOBİL SABİT BUTONLAR
   ========================================================= */

.mobile-actions {
    display: none;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .nav {
        gap: 0;
    }

    .nav a {
        padding:
            9px 8px;

        font-size: 13px;
    }

    .quick-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .areas-grid {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .area-wide {
        grid-column:
            span 3;
    }

    .footer-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }
}


/* =========================================================
   MOBİL
   ========================================================= */

@media (max-width: 760px) {

    body {
        padding-bottom: 64px;
    }

    .container {
        padding-left: 16px;
        padding-right: 16px;
    }


    /* -----------------------------------------
       HEADER
       ----------------------------------------- */

    .header-inner {
        min-height: 68px;
    }

    .header-actions {
        display: none !important;
    }

    .menu-toggle {
        display: block;

        margin-left: auto;
    }


    /* -----------------------------------------
       MOBİL MENÜ
       ----------------------------------------- */

    .nav {
        position: absolute;

        left: 12px;
        right: 12px;

        top:
            calc(100% + 8px);

        padding: 10px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        background:
            #171717;

        border:
            1px solid #303030;

        border-radius: 12px;

        box-shadow:
            var(--shadow-dark);

        margin-left: 0;
    }

    .nav.active {
        display: flex;
    }

    .nav a {
        width: 100%;

        padding:
            13px 14px;

        font-size: 14px;

        border-radius: 8px;
    }


    /* -----------------------------------------
       HERO
       ----------------------------------------- */

    .hero {
        min-height: 610px;
    }

    .hero-content {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size:
            clamp(39px, 12vw, 58px);

        letter-spacing: -1.5px;
    }

    .hero-description {
        font-size: 16px;

        line-height: 1.65;
    }


    /* -----------------------------------------
       HERO BUTTONS
       ----------------------------------------- */

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;

        width: 100%;

        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;

        min-height: 52px;
    }


    /* -----------------------------------------
       HERO INFO
       ----------------------------------------- */

    .hero-info {
        margin-top: 32px;

        gap: 20px;
    }

    .hero-info div {
        min-width: 95px;
    }


    /* -----------------------------------------
       QUICK SERVICES
       ----------------------------------------- */

    .quick-services {
        margin-top: -25px;
    }

    .quick-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 10px;
    }

    .quick-card {
        min-height: 115px;

        padding: 15px;
    }

    .quick-card strong {
        font-size: 14px;
    }

    .quick-card small {
        font-size: 11px;
    }


    /* -----------------------------------------
       SECTIONS
       ----------------------------------------- */

    .section {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 38px;
    }

    .section-heading h2 {
        font-size: 32px;
    }


    /* -----------------------------------------
       SERVICES
       ----------------------------------------- */

    .services-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .service-card {
        padding: 24px;
    }

    .service-card p {
        min-height: auto;
    }


    /* -----------------------------------------
       AREAS
       ----------------------------------------- */

    .areas-grid {
        grid-template-columns:
            repeat(2, 1fr);

        gap: 9px;
    }

    .area-item {
        padding:
            16px 8px;

        font-size: 13px;
    }

    .area-wide {
        grid-column:
            span 2;
    }

    .area-call {
        padding:
            25px 20px;

        flex-direction: column;

        align-items: stretch;

        text-align: center;
    }

    .area-call p {
        font-size: 16px;
    }


    /* -----------------------------------------
       ADVANTAGES
       ----------------------------------------- */

    .advantages {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .advantage {
        padding: 22px;
    }


    /* -----------------------------------------
       CTA
       ----------------------------------------- */

    .cta {
        padding: 70px 0;
    }

    .cta h2 {
        font-size: 38px;
    }

    .cta .hero-buttons {
        width: 100%;
    }


    /* -----------------------------------------
       CONTACT
       ----------------------------------------- */

    .contact-box {
        padding:
            28px 20px;

        flex-direction: column;

        align-items: stretch;

        gap: 25px;
    }

    .contact-actions {
        min-width: 0;

        width: 100%;
    }


    /* -----------------------------------------
       FOOTER
       ----------------------------------------- */

    .footer {
        padding-bottom: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;

        gap: 30px;
    }


    /* -----------------------------------------
       MOBİL ALT BUTONLAR
       ----------------------------------------- */

    .mobile-actions {
        position: fixed;

        left: 0;
        right: 0;
        bottom: 0;

        z-index: 9999;

        width: 100%;

        height: 64px;

        display: grid !important;

        grid-template-columns:
            1fr 1fr;

        box-shadow:
            0 -8px 30px rgba(0, 0, 0, 0.20);
    }

    .mobile-actions a {
        display: flex;

        align-items: center;
        justify-content: center;

        gap: 8px;

        color: var(--white);

        font-size: 14px;

        font-weight: 900;
    }

    .mobile-call {
        background: var(--red);
    }

    .mobile-whatsapp {
        background: var(--green);
    }

    .mobile-actions a:hover {
        filter:
            brightness(0.92);
    }
}


/* =========================================================
   KÜÇÜK TELEFONLAR
   ========================================================= */

@media (max-width: 390px) {

    .hero h1 {
        font-size: 36px;
    }

    .hero-badge {
        font-size: 10px;
    }

    .quick-grid {
        grid-template-columns: 1fr;
    }

    .quick-card {
        min-height: 90px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .area-wide {
        grid-column:
            span 1;
    }

    .hero-info {
        display: grid;

        grid-template-columns:
            repeat(2, 1fr);
    }

    .contact-box h2 {
        font-size: 28px;
    }

    .cta h2 {
        font-size: 34px;
    }
}


/* =========================================================
   EK GÜVENLİK
   ========================================================= */

/*
   Header'da yanlışlıkla btn-whatsapp kalırsa
   masaüstünde gösterilmesini engeller.
   Mobil alt WhatsApp bundan etkilenmez.
*/

.header .btn-whatsapp {
    display: none !important;
}


/*
   Header içinde fazladan WhatsApp veya
   WhatsApp butonu kalması durumunda görünmez.
*/

.header-actions .btn-whatsapp,
.header-actions a[href*="wa.me"] {
    display: none !important;
}


/* =========================================================
   FOCUS
   ========================================================= */

a:focus-visible,
button:focus-visible {
    outline:
        3px solid rgba(229, 9, 20, 0.45);

    outline-offset: 3px;
}
/* =========================================================
   DARK SECTION SEO METİN YAZILARI
   ========================================================= */

.section-dark .text-content,
.section-dark .text-content p {
    color: #ffffff;
}

.section-dark .text-content p {
    line-height: 1.8;
    margin-bottom: 18px;
}