/* =========================================================
   KOÇ METAL HURDACILIK
   MERSİN - ANA CSS
   Sade / Hızlı / Mobil Uyumlu
========================================================= */


/* =========================================================
   TEMEL AYARLAR
========================================================= */

:root {

    --green: #087a3b;
    --green-dark: #055c2c;
    --green-light: #eef7f1;

    --white: #ffffff;
    --black: #151a17;

    --text: #27302b;
    --text-light: #68736d;

    --gray: #f5f7f6;
    --border: #dfe6e2;

    --container: 1180px;

}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;
    padding: 0;

    background: var(--white);

    color: var(--text);

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    font-size: 16px;

    line-height: 1.7;

}


img {

    max-width: 100%;
    height: auto;

    display: block;

}


a {

    color: inherit;

    text-decoration: none;

}


button,
input,
textarea,
select {

    font-family: inherit;

}


.container {

    width: 100%;

    max-width: var(--container);

    margin-left: auto;
    margin-right: auto;

    padding-left: 20px;
    padding-right: 20px;

}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {

    width: 100%;

    background: var(--green-dark);

    color: var(--white);

    font-size: 13px;

}


.top-bar-inner {

    min-height: 38px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.top-bar a {

    color: var(--white);

    font-weight: 700;

}


/* =========================================================
   HEADER
========================================================= */

.site-header {

    position: relative;

    width: 100%;

    background: var(--white);

    border-bottom: 1px solid var(--border);

    z-index: 1000;

}


.header-inner {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

}


/* =========================================================
   LOGO
========================================================= */

.logo {

    display: inline-flex;

    flex-direction: column;

    justify-content: center;

    flex-shrink: 0;

    line-height: 1;

}


.logo-main {

    color: var(--green);

    font-size: 27px;

    font-weight: 800;

    letter-spacing: -0.5px;

}


.logo-sub {

    margin-top: 5px;

    color: var(--text);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 4px;

}


/* =========================================================
   MASAÜSTÜ MENÜ
========================================================= */

.main-menu {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 4px;

}


.main-menu > a,
.main-menu > .dropdown > a {

    min-height: 44px;

    display: flex;

    align-items: center;

    padding: 8px 11px;

    color: var(--text);

    font-size: 14px;

    font-weight: 600;

    border-radius: 5px;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        color 0.2s ease;

}


.main-menu > a:hover,
.main-menu > .dropdown > a:hover {

    background: var(--green-light);

    color: var(--green);

}


.main-menu > a.active {

    color: var(--green);

}


/* =========================================================
   MASAÜSTÜ AÇILIR MENÜ
========================================================= */

.dropdown {

    position: relative;

}


.dropdown > a {

    gap: 7px;

}


.dropdown-arrow {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    font-size: 9px;

    line-height: 1;

    transition: transform 0.2s ease;

}


.dropdown:hover > a .dropdown-arrow {

    transform: rotate(180deg);

}


.dropdown-menu {

    position: absolute;

    top: calc(100% + 1px);

    left: 0;

    width: 245px;

    padding: 7px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 6px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.12);

    opacity: 0;

    visibility: hidden;

    transform: translateY(5px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;

    z-index: 9999;

}


.dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}


.dropdown-menu a {

    display: flex;

    align-items: center;

    width: 100%;

    min-height: 39px;

    padding: 8px 11px;

    color: var(--text);

    font-size: 13px;

    font-weight: 600;

    border-radius: 4px;

}


.dropdown-menu a:hover {

    background: var(--green-light);

    color: var(--green);

}


/* =========================================================
   HEADER TELEFON
========================================================= */

.header-phone {

    margin-left: 6px;

    padding: 10px 14px !important;

    background: var(--green) !important;

    color: var(--white) !important;

    border-radius: 5px !important;

}


.header-phone:hover {

    background: var(--green-dark) !important;

}


/* =========================================================
   MOBİL MENÜ BUTONU
========================================================= */

.mobile-menu-button {

    display: none;

    width: 44px;

    height: 44px;

    padding: 0;

    background: var(--green);

    color: var(--white);

    border: 0;

    border-radius: 5px;

    font-size: 23px;

    line-height: 1;

    cursor: pointer;

}


/* =========================================================
   MOBİL MENÜ
========================================================= */

.mobile-menu {

    display: none;

    width: 100%;

    background: var(--white);

    border-top: 1px solid var(--border);

}


.mobile-menu.mobile-menu-open {

    display: block;

}


.mobile-menu-inner {

    width: 100%;

    padding-top: 7px;

    padding-bottom: 15px;

}


/* Ana mobil bağlantılar */

.mobile-menu-inner > a {

    display: flex;

    align-items: center;

    width: 100%;

    min-height: 48px;

    padding: 11px 5px;

    border-bottom: 1px solid var(--border);

    color: var(--text);

    font-size: 15px;

    font-weight: 600;

}


.mobile-menu-inner > a:hover {

    color: var(--green);

}


/* =========================================================
   MOBİL AÇILIR MENÜ
========================================================= */

.mobile-dropdown {

    width: 100%;

    margin: 0;

    padding: 0;

    border-bottom: 1px solid var(--border);

}


/* Açılır başlık butonu */

.mobile-dropdown-toggle {

    width: 100%;

    min-height: 48px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 11px 5px;

    margin: 0;

    background: transparent;

    color: var(--text);

    border: 0;

    font-family: inherit;

    font-size: 15px;

    font-weight: 600;

    text-align: left;

    cursor: pointer;

}


/* Buton yazısı */

.mobile-dropdown-title {

    display: block;

    flex: 1;

}


/* Sadece ok */

.mobile-dropdown-arrow {

    flex: 0 0 30px;

    width: 30px;

    height: 30px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-left: 10px;

    font-size: 10px;

    line-height: 1;

    transition: transform 0.25s ease;

}


/* Açıldığında SADECE ok döner */

.mobile-dropdown.open
.mobile-dropdown-arrow {

    transform: rotate(180deg);

}


/* Alt menü */

.mobile-submenu {

    display: none;

    width: 100%;

    margin: 0;

    padding: 6px 0 9px 12px;

    background: #f7faf8;

    border-left: 3px solid var(--green);

}


/* Açılmış alt menü */

.mobile-dropdown.open .mobile-submenu {

    display: block;

}


/* Alt menü bağlantıları */

.mobile-submenu a {

    display: flex;

    align-items: center;

    width: 100%;

    min-height: 43px;

    padding: 9px 12px;

    color: var(--text-light);

    font-size: 14px;

    font-weight: 500;

    border: 0 !important;

}


.mobile-submenu a:hover {

    background: var(--green-light);

    color: var(--green);

}


/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 590px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background: #18211c;

}


.hero-image {

    position: absolute;

    inset: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;

    object-position: center;

}


.hero-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.42),
            rgba(0, 0, 0, 0.15)
        );

}


.hero .container {

    position: relative;

    z-index: 2;

}


.hero-content {

    max-width: 680px;

    padding: 70px 0;

    color: var(--white);

}


.hero h1 {

    margin: 0 0 20px;

    font-size: clamp(38px, 5vw, 62px);

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -1px;

}


.hero h1 span {

    color: #8fe0ae;

}


.hero p {

    max-width: 620px;

    margin: 0 0 28px;

    font-size: 18px;

    line-height: 1.7;

}


.hero-content > div {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

}


/* =========================================================
   BUTONLAR
========================================================= */

.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 48px;

    padding: 10px 22px;

    border-radius: 5px;

    font-size: 14px;

    font-weight: 700;

    transition:
        background 0.2s ease,
        transform 0.2s ease;

}


.button:hover {

    transform: translateY(-1px);

}


.button-green {

    background: var(--green);

    color: var(--white);

}


.button-green:hover {

    background: var(--green-dark);

}


.button-white {

    background: var(--white);

    color: var(--green);

}


.button-white:hover {

    background: var(--green-light);

}


/* =========================================================
   BÖLÜMLER
========================================================= */

.section {

    width: 100%;

    padding: 80px 0;

}


.section-white {

    background: var(--white);

}


.section-gray {

    background: var(--gray);

}


/* =========================================================
   BAŞLIKLAR
========================================================= */

.section-title {

    max-width: 760px;

    margin: 0 auto 45px;

    text-align: center;

}


.section-title h2 {

    margin: 0 0 12px;

    color: var(--text);

    font-size: clamp(28px, 4vw, 40px);

    line-height: 1.2;

}


.section-title h2 span {

    color: var(--green);

}


.section-title p {

    margin: 0;

    color: var(--text-light);

    font-size: 16px;

}


/* =========================================================
   İÇERİK
========================================================= */

.content {

    max-width: 900px;

    margin-left: auto;

    margin-right: auto;

}


.content h2 {

    margin: 35px 0 15px;

    color: var(--text);

    font-size: 28px;

    line-height: 1.3;

}


.content h2:first-child {

    margin-top: 0;

}


.content h3 {

    margin: 28px 0 10px;

    font-size: 21px;

}


.content p {

    margin: 0 0 18px;

    color: var(--text);

}


.content ul {

    margin: 0 0 20px;

    padding-left: 22px;

}


/* =========================================================
   HURDA ÜRÜN KARTLARI
========================================================= */

.products-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;

}


.product-card {

    display: block;

    overflow: hidden;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 7px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;

}


.product-card:hover {

    transform: translateY(-3px);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08);

}


.product-image {

    width: 100%;

    aspect-ratio: 4 / 3;

    object-fit: cover;

}


.product-content {

    padding: 18px;

}


.product-content h3 {

    margin: 0 0 7px;

    color: var(--green);

    font-size: 19px;

}


.product-content p {

    margin: 0;

    color: var(--text-light);

    font-size: 14px;

    line-height: 1.6;

}


/* =========================================================
   ÖZELLİKLER
========================================================= */

.features-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 25px;

}


.feature {

    padding: 28px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 7px;

}


.feature-icon {

    width: 46px;

    height: 46px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 15px;

    background: var(--green-light);

    color: var(--green);

    border-radius: 50%;

    font-size: 20px;

    font-weight: 800;

}


.feature h3 {

    margin: 0 0 9px;

    font-size: 19px;

}


.feature p {

    margin: 0;

    color: var(--text-light);

    font-size: 14px;

}


/* =========================================================
   CTA
========================================================= */

.cta {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 40px;

    background: var(--green);

    border-radius: 8px;

    color: var(--white);

}


.cta h2 {

    margin: 0 0 8px;

    color: var(--white);

    font-size: 30px;

    line-height: 1.25;

}


.cta p {

    margin: 0;

    color: rgba(255,255,255,0.88);

}


.cta-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    flex-shrink: 0;

}


/* =========================================================
   HİZMET BÖLGELERİ
========================================================= */

.regions-grid {

    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 12px;

}


.region-link {

    display: flex;

    align-items: center;

    justify-content: center;

    min-height: 58px;

    padding: 12px 15px;

    background: var(--gray);

    border: 1px solid var(--border);

    border-radius: 5px;

    color: var(--text);

    font-size: 14px;

    font-weight: 700;

    text-align: center;

    transition:
        background 0.2s ease,
        color 0.2s ease;

}


.region-link:hover {

    background: var(--green-light);

    color: var(--green);

}


/* =========================================================
   FOOTER
========================================================= */

.site-footer {

    padding: 60px 0 0;

    background: #17201b;

    color: #d9e0dc;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr
        1fr
        1fr
        1fr;

    gap: 40px;

    padding-bottom: 45px;

}


.footer-logo {

    margin-bottom: 15px;

    color: var(--white);

    font-size: 23px;

    font-weight: 800;

}


.site-footer p {

    margin: 0 0 12px;

    color: #aeb8b2;

    font-size: 14px;

}


.site-footer h3 {

    margin: 0 0 15px;

    color: var(--white);

    font-size: 17px;

}


.site-footer ul {

    margin: 0;

    padding: 0;

    list-style: none;

}


.site-footer li {

    margin-bottom: 8px;

}


.site-footer li a {

    color: #aeb8b2;

    font-size: 14px;

}


.site-footer li a:hover {

    color: var(--white);

}


.site-footer strong {

    color: var(--white);

}


.footer-bottom {

    padding: 18px 0;

    border-top: 1px solid rgba(255,255,255,0.10);

    color: #89958e;

    font-size: 13px;

    text-align: center;

}


/* =========================================================
   SABİT İLETİŞİM BUTONLARI
========================================================= */

.floating-contact {

    position: fixed;

    right: 18px;

    bottom: 18px;

    display: flex;

    flex-direction: column;

    gap: 8px;

    z-index: 9000;

}


.floating-contact a {

    width: 50px;

    height: 50px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: var(--white);

    font-size: 20px;

    font-weight: 800;

    box-shadow:
        0 5px 15px rgba(0,0,0,0.18);

}


.floating-phone {

    background: var(--green);

}


.floating-whatsapp {

    background: #1c9d58;

}


/* =========================================================
   TABLOLAR
========================================================= */

.table-wrapper {

    width: 100%;

    overflow-x: auto;

    -webkit-overflow-scrolling: touch;

}


.price-table {

    width: 100%;

    border-collapse: collapse;

    background: var(--white);

}


.price-table th {

    padding: 13px;

    background: var(--green);

    color: var(--white);

    font-size: 14px;

    text-align: left;

}


.price-table td {

    padding: 12px 13px;

    border-bottom: 1px solid var(--border);

    font-size: 14px;

}


.price-table tr:nth-child(even) td {

    background: #f7faf8;

}


/* =========================================================
   FORM
========================================================= */

.form-group {

    margin-bottom: 18px;

}


.form-group label {

    display: block;

    margin-bottom: 6px;

    color: var(--text);

    font-size: 14px;

    font-weight: 700;

}


.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    padding: 12px 13px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 5px;

    color: var(--text);

    font-size: 15px;

    outline: none;

}


.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color: var(--green);

}


/* =========================================================
   MOBİL
========================================================= */

@media (max-width: 1050px) {

    .header-inner {

        min-height: 72px;

    }

    .main-menu {

        display: none;

    }

    .mobile-menu-button {

        display: flex;

        align-items: center;

        justify-content: center;

    }

    .hero {

        min-height: 520px;

    }

    .products-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

    .features-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

    .footer-grid {

        grid-template-columns:
            repeat(2, minmax(0, 1fr));

    }

}


@media (max-width: 700px) {

    .container {

        padding-left: 15px;

        padding-right: 15px;

    }


    .top-bar-inner {

        min-height: 34px;

        font-size: 11px;

    }


    .top-bar-inner > div:first-child {

        display: none;

    }


    .top-bar-inner {

        justify-content: center;

    }


    .header-inner {

        min-height: 68px;

    }


    .logo-main {

        font-size: 23px;

    }


    .logo-sub {

        font-size: 10px;

        letter-spacing: 3px;

    }


    .hero {

        min-height: 520px;

    }


    .hero-content {

        padding: 55px 0;

    }


    .hero h1 {

        font-size: 39px;

    }


    .hero p {

        font-size: 15px;

    }


    .section {

        padding: 60px 0;

    }


    .section-title {

        margin-bottom: 32px;

    }


    .section-title h2 {

        font-size: 29px;

    }


    .products-grid {

        grid-template-columns:
            1fr;

        gap: 15px;

    }


    .features-grid {

        grid-template-columns:
            1fr;

    }


    .regions-grid {

        grid-template-columns:
            1fr;

    }


    .cta {

        flex-direction: column;

        align-items: flex-start;

        padding: 28px 22px;

    }


    .cta h2 {

        font-size: 25px;

    }


    .footer-grid {

        grid-template-columns:
            1fr;

        gap: 30px;

    }


    .floating-contact {

        right: 12px;

        bottom: 12px;

    }


    .floating-contact a {

        width: 46px;

        height: 46px;

    }

}


@media (max-width: 400px) {

    .hero h1 {

        font-size: 34px;

    }


    .hero-content > div {

        flex-direction: column;

        align-items: stretch;

    }


    .button {

        width: 100%;

    }

}


/* =========================================================
   ERİŞİLEBİLİRLİK
========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {

    outline: 3px solid rgba(8, 122, 59, 0.35);

    outline-offset: 2px;

}



.two-column {

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 45px;

    align-items: center;
}

