/* =========================================================
   MERSİN HURDACI - ANA TEMA CSS
   Responsive + Mobil Menü + Dropdown
   ========================================================= */

:root {
    --primary: #087443;
    --primary-dark: #055b34;
    --primary-light: #e9f7ef;
    --accent: #f4b400;
    --dark: #17231d;
    --text: #34423a;
    --muted: #68756e;
    --white: #ffffff;
    --light: #f6f8f7;
    --border: #e2e8e4;
    --shadow: 0 10px 30px rgba(0,0,0,.08);
    --radius: 14px;
    --container: 1180px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { border: 0; }
.container {
    width: min(100% - 40px, var(--container));
    margin-inline: auto;
}

/* TOP BAR */
.topbar { background: var(--dark); color: #fff; font-size: 14px; }
.topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.topbar-info {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.topbar a { transition: opacity .2s ease; }
.topbar a:hover { opacity: .75; }

/* HEADER */
.site-header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 1000;
}
.header-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

/* LOGO */
.logo {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.05;
    flex-shrink: 0;
}
.logo-main {
    color: var(--primary);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -.5px;
}
.logo-sub {
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 5px;
}

/* NAVIGATION */
.main-nav {
    display: flex;
    align-items: center;
    gap: 3px;
}
.main-nav > a,
.nav-dropdown > a {
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    padding: 11px;
    border-radius: 8px;
    transition: background .2s ease, color .2s ease;
}
.main-nav > a:hover,
.main-nav > a.active,
.nav-dropdown:hover > a,
.nav-dropdown:focus-within > a {
    color: var(--primary);
    background: var(--primary-light);
}

/* DROPDOWN */
.nav-dropdown { position: relative; }
.nav-dropdown > a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}
.dropdown-arrow {
    width: 7px;
    height: 7px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    margin-top: -4px;
    transition: transform .2s ease;
}
.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown:focus-within .dropdown-arrow {
    transform: rotate(225deg);
    margin-top: 4px;
}
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 235px;
    margin: 0;
    padding: 8px;
    list-style: none;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .2s ease, visibility .2s ease, transform .2s ease;
    z-index: 1200;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li { margin: 0; padding: 0; }
.dropdown-menu a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    transition: color .2s ease, background .2s ease;
}
.dropdown-menu a:hover,
.dropdown-menu a:focus {
    color: var(--primary);
    background: var(--primary-light);
}
.dropdown-menu .dropdown-all {
    margin-top: 6px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    color: var(--primary);
    font-weight: 800;
}

/* PHONE - HTML'de kullanılmıyorsa hiçbir etkisi yok */
.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    padding: 12px 18px;
    border-radius: 9px;
    font-weight: 700;
    white-space: nowrap;
    transition: background .2s ease;
    flex-shrink: 0;
}
.header-phone:hover { background: var(--primary-dark); }

/* MOBILE BUTTON */
.mobile-menu-button {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    margin-left: auto;
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 9px;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    position: relative;
    z-index: 1300;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}
.mobile-menu-button span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
}
.mobile-menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu-button[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* HERO */
.hero {
    position: relative;
    min-height: 590px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        linear-gradient(
            90deg,
            rgba(8,32,21,.92) 0%,
            rgba(8,32,21,.78) 45%,
            rgba(8,32,21,.25) 100%
        ),
        url("../images/mersin-hurdaci.webp") center center / cover no-repeat;
}
.hero-content {
    max-width: 700px;
    color: #fff;
    padding: 70px 0;
}
.hero-label {
    display: inline-block;
    background: rgba(244,180,0,.95);
    color: #1b261f;
    padding: 7px 14px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 18px;
}
.hero h1 {
    margin: 0 0 20px;
    font-size: clamp(36px,5vw,62px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: #fff;
}
.hero p {
    max-width: 650px;
    margin: 0 0 30px;
    font-size: 19px;
    line-height: 1.65;
    color: rgba(255,255,255,.92);
}
.hero-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 9px;
    border: 2px solid transparent;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-accent { background: var(--accent); color: #1d241f; }
.btn-light { background: #fff; color: var(--primary); }
.btn-outline {
    border-color: rgba(255,255,255,.65);
    color: #fff;
    background: transparent;
}
.btn-outline:hover { background: #fff; color: var(--primary); }

/* QUICK INFO */
.quick-info {
    margin-top: -55px;
    position: relative;
    z-index: 5;
}
.quick-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}
.quick-item {
    padding: 27px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    border-right: 1px solid var(--border);
}
.quick-item:last-child { border-right: 0; }
.quick-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 10px;
    flex-shrink: 0;
}
.quick-item strong {
    display: block;
    color: var(--dark);
    margin-bottom: 4px;
}
.quick-item span {
    display: block;
    color: var(--muted);
    font-size: 14px;
}

/* SECTIONS */
.section { padding: 90px 0; }
.section-light { background: var(--light); }
.section-heading {
    max-width: 750px;
    margin: 0 auto 45px;
    text-align: center;
}
.eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}
.section-heading h2 {
    margin: 0 0 15px;
    color: var(--dark);
    font-size: clamp(28px,4vw,42px);
    line-height: 1.2;
}
.section-heading p { margin: 0; color: var(--muted); }

/* ABOUT */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.about-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}
.about-content h2 {
    margin: 0 0 18px;
    color: var(--dark);
    font-size: 38px;
    line-height: 1.2;
}
.about-content p { color: var(--muted); margin: 0 0 17px; }
.about-list { list-style: none; padding: 0; margin: 25px 0 30px; }
.about-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    color: var(--dark);
    font-weight: 600;
}
.about-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary);
    font-weight: 900;
}

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
}
.service-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: rgba(8,116,67,.25);
}
.service-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 12px;
    margin-bottom: 22px;
}
.service-card h3 { margin: 0 0 10px; color: var(--dark); font-size: 21px; }
.service-card p { margin: 0; color: var(--muted); font-size: 15px; }

/* MATERIALS */
.material-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}
.material-card {
    position: relative;
    overflow: hidden;
    min-height: 170px;
    border-radius: 12px;
    background: var(--dark);
    color: #fff;
}
.material-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .62;
    transition: transform .4s ease;
}
.material-card:hover img { transform: scale(1.06); }
.material-overlay {
    position: absolute;
    inset: 0;
    padding: 22px;
    display: flex;
    align-items: flex-end;
    background: linear-gradient(to top,rgba(0,0,0,.78),rgba(0,0,0,.05));
}
.material-overlay h3 { margin: 0; font-size: 20px; }

/* PRICE CTA */
.price-cta { background: var(--primary); color: #fff; }
.price-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
}
.price-cta h2 { margin: 0 0 10px; color: #fff; font-size: 34px; }
.price-cta p { margin: 0; color: rgba(255,255,255,.85); }

/* AREAS */
.area-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 13px;
}
.area-link {
    display: block;
    padding: 17px 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 9px;
    color: var(--dark);
    font-weight: 700;
    transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.area-link:hover {
    color: var(--primary);
    background: var(--primary-light);
    border-color: rgba(8,116,67,.2);
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}
.feature { text-align: center; padding: 25px; }
.feature-number {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 900;
    font-size: 20px;
}
.feature h3 { margin: 0 0 9px; color: var(--dark); }
.feature p { margin: 0; color: var(--muted); }

/* FAQ */
.faq { max-width: 850px; margin: auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item summary {
    cursor: pointer;
    list-style: none;
    padding: 20px 35px 20px 0;
    color: var(--dark);
    font-weight: 700;
    position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 17px;
    color: var(--primary);
    font-size: 24px;
}
.faq-item[open] summary::after { content: "−"; }
.faq-answer { padding: 0 35px 20px 0; color: var(--muted); }

/* CTA */
.contact-cta { background: var(--dark); color: #fff; }
.contact-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.contact-cta h2 { margin: 0 0 10px; color: #fff; font-size: 34px; }
.contact-cta p { margin: 0; color: rgba(255,255,255,.78); }

/* FOOTER */
.site-footer { background: #101914; color: #b9c3bd; }
.footer-main { padding: 65px 0 45px; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-logo {
    color: #fff;
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 15px;
}
.footer-about { max-width: 340px; margin: 0; color: #aab5ae; }
.footer-title { margin: 0 0 18px; color: #fff; font-size: 17px; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: #aab5ae; transition: color .2s ease; }
.footer-links a:hover { color: #fff; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}
.footer-bottom p { margin: 0; font-size: 13px; color: #8f9b94; }

/* WHATSAPP */
.whatsapp-button {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 25px rgba(0,0,0,.2);
    z-index: 999;
    transition: transform .2s ease;
}
.whatsapp-button:hover { transform: scale(1.08); }

/* BREADCRUMB */
.breadcrumb {
    background: var(--light);
    border-bottom: 1px solid var(--border);
}
.breadcrumb-inner {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--muted);
    font-size: 14px;
}
.breadcrumb a { color: var(--primary); font-weight: 600; }

/* INNER PAGE HERO */
.page-hero {
    background:
        linear-gradient(rgba(5,45,27,.85),rgba(5,45,27,.85)),
        var(--page-hero-image, url("../images/hurdaci-banner.webp")) center / cover no-repeat;
    padding: 80px 0;
    color: #fff;
}
.page-hero h1 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(32px,5vw,50px);
}
.page-hero p {
    max-width: 700px;
    margin: 0;
    color: rgba(255,255,255,.86);
}

/* TABLET */
@media (max-width: 1100px) {
    .header-inner { gap: 15px; }
    .main-nav { gap: 0; }
    .main-nav > a,
    .nav-dropdown > a {
        padding: 10px 7px;
        font-size: 13px;
    }
    .header-phone { padding: 11px 13px; }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .material-grid { grid-template-columns: repeat(3,1fr); }
    .footer-grid { grid-template-columns: repeat(2,1fr); }
}

/* MOBILE */
@media (max-width: 768px) {
    .container { width: min(100% - 28px,var(--container)); }

    .topbar-inner {
        justify-content: center;
        min-height: 38px;
    }
    .topbar-info {
        justify-content: center;
        gap: 10px;
        font-size: 13px;
    }

    .header-inner {
        min-height: 75px;
        position: relative;
        gap: 8px;
    }
    .logo-main { font-size: 23px; }
    .logo-sub { font-size: 11px; }

    .mobile-menu-button {
        display: flex;
        margin-left: auto;
        flex-shrink: 0;
        z-index: 1301;
    }

    .header-phone {
        font-size: 14px;
        padding: 10px 12px;
        flex-shrink: 0;
    }

    .main-nav {
        position: absolute;
        top: calc(100% + 1px);
        left: 0;
        right: 0;
        z-index: 1300;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 10px;
        background: #fff;
        border: 1px solid var(--border);
        border-top: 0;
        border-radius: 0 0 12px 12px;
        box-shadow: 0 18px 35px rgba(0,0,0,.14);
        max-height: calc(100vh - 75px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .main-nav.menu-open { display: flex; }

    .main-nav > a,
    .nav-dropdown > a {
        width: 100%;
        min-height: 48px;
        padding: 13px 14px;
        font-size: 15px;
    }

    .nav-dropdown { width: 100%; }
    .nav-dropdown > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        top: auto;
        left: auto;
        width: 100%;
        margin: 0;
        padding: 4px 0 4px 14px;
        border: 0;
        border-left: 2px solid var(--primary-light);
        border-radius: 0;
        box-shadow: none;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: none;
    }

    .nav-dropdown.dropdown-open .dropdown-menu { display: block; }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown:focus-within .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }

    .nav-dropdown.dropdown-open:hover .dropdown-menu,
    .nav-dropdown.dropdown-open:focus-within .dropdown-menu {
        display: block;
    }

    .nav-dropdown.dropdown-open > a .dropdown-arrow {
        transform: rotate(225deg);
        margin-top: 4px;
    }

    .dropdown-menu a {
        min-height: 44px;
        padding: 10px 12px;
        font-size: 14px;
    }

    .hero {
        min-height: 570px;
        background-position: 65% center;
    }
    .hero-content { padding: 55px 0; }
    .hero h1 { font-size: 39px; }
    .hero p { font-size: 17px; }
    .hero-buttons {
        align-items: stretch;
        flex-direction: column;
    }
    .hero-buttons .btn { width: 100%; }

    .quick-info {
        margin-top: 0;
        padding-top: 20px;
    }
    .quick-grid { grid-template-columns: 1fr; }
    .quick-item {
        border-right: 0;
        border-bottom: 1px solid var(--border);
    }
    .quick-item:last-child { border-bottom: 0; }

    .section { padding: 65px 0; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .about-content h2 { font-size: 30px; }

    .services-grid { grid-template-columns: 1fr; }

    .material-grid { grid-template-columns: repeat(2,1fr); }

    .price-cta-inner,
    .contact-cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .area-grid { grid-template-columns: repeat(2,1fr); }

    .features-grid { grid-template-columns: 1fr; }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    /* =====================================================
       FİYAT TABLOSU - MOBİLDE TAM EKRANA SIĞDIR
       Sadece fiyat sayfasındaki .price-table-section etkilenir.
       Inline <style> içindeki min-width değerlerini güvenle ezer.
       ===================================================== */
    .price-table-section .price-table-wrap {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    .price-table-section .price-table {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        table-layout: fixed !important;
    }

    .price-table-section .price-table th,
    .price-table-section .price-table td {
        padding: 11px 8px !important;
        font-size: 13px !important;
        line-height: 1.35 !important;
        white-space: normal !important;
        overflow-wrap: anywhere !important;
        word-break: normal !important;
    }

    .price-table-section .price-table th:first-child,
    .price-table-section .price-table td:first-child {
        width: 58% !important;
        text-align: left !important;
    }

    .price-table-section .price-table th:last-child,
    .price-table-section .price-table td:last-child {
        width: 42% !important;
        text-align: right !important;
        white-space: nowrap !important;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
    .container { width: min(100% - 22px,var(--container)); }

    .header-inner { gap: 8px; }
    .logo { max-width: 190px; }
    .logo-main { font-size: 21px; }
    .logo-sub {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .mobile-menu-button {
        width: 44px;
        height: 44px;
    }

    .header-phone {
        font-size: 0;
        width: 43px;
        height: 43px;
        padding: 0;
        justify-content: center;
    }
    .header-phone::before {
        content: "☎";
        font-size: 19px;
    }

    .hero { min-height: 540px; }
    .hero h1 { font-size: 34px; }
    .hero-label { font-size: 12px; }

    .material-grid { grid-template-columns: 1fr 1fr; }
    .material-card { min-height: 145px; }

    .area-grid { grid-template-columns: 1fr; }

    .whatsapp-button {
        right: 16px;
        bottom: 16px;
        width: 54px;
        height: 54px;
    }

    /* 480px altında tabloyu biraz daha sıkıştır */
    .price-table-section .price-table {
        min-width: 0 !important;
        width: 100% !important;
    }

    .price-table-section .price-table th,
    .price-table-section .price-table td {
        padding: 9px 6px !important;
        font-size: 12px !important;
    }

    .price-table-section .price-table th:first-child,
    .price-table-section .price-table td:first-child {
        width: 56% !important;
    }

    .price-table-section .price-table th:last-child,
    .price-table-section .price-table td:last-child {
        width: 44% !important;
        white-space: nowrap !important;
    }
}

/* ACCESSIBILITY */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(244,180,0,.9);
    outline-offset: 3px;
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}


/* =========================================================
   HURDA FİYAT TABLOSU - DAHA OKUNAKLI YAZILAR
   Masaüstü + Mobil
   ========================================================= */

/* Masaüstü ve tüm ekranlarda ürün adı da fiyat kadar güçlü */
.price-table-section .price-table td:first-child {
    font-weight: 800;
    color: var(--dark);
}

/* Fiyat sütunu güçlü ve net */
.price-table-section .price-table td:last-child {
    font-weight: 800;
}

/* Masaüstünde biraz daha okunaklı */
@media (min-width: 769px) {
    .price-table-section .price-table td {
        font-size: 16px;
    }

    .price-table-section .price-table th {
        font-size: 16px;
    }
}

/* Mobilde yazıları büyüt; tablo yine ekrana tam sığsın */
@media (max-width: 768px) {
    .price-table-section .price-table th,
    .price-table-section .price-table td {
        font-size: 15px !important;
        line-height: 1.35 !important;
    }

    .price-table-section .price-table td:first-child {
        font-weight: 800 !important;
    }

    .price-table-section .price-table td:last-child {
        font-size: 15px !important;
        font-weight: 800 !important;
    }
}

/* Küçük telefonlarda da okunaklı kal */
@media (max-width: 480px) {
    .price-table-section .price-table th,
    .price-table-section .price-table td {
        font-size: 14px !important;
    }

    .price-table-section .price-table td:first-child,
    .price-table-section .price-table td:last-child {
        font-weight: 800 !important;
    }
}

/* =====================================================
   İLETİŞİM - HARİTALAR
====================================================== */

.maps-section {
    background: #fff;
}

.maps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    margin-top: 40px;
}

.map-card {
    background: #fff;
    border: 1px solid #e3ebe6;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.map-card-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
}

.map-number {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
}

.map-card-header h3 {
    margin: 0 0 7px;
    font-size: 20px;
    color: var(--dark);
}

.map-card-header p {
    margin: 0;
    line-height: 1.7;
    color: #5c6861;
}

.map-frame {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
}

.map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}


/* MOBİL */

@media (max-width: 768px) {

    .maps-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .map-frame {
        height: 330px;
    }

    .map-card-header {
        padding: 20px;
    }


}