/* Pozetiketdestek - Profesyonel ön yüz teması */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --color-primary: #0f172a;
    --color-primary-soft: #1e293b;
    --color-accent: #f59e0b;
    --color-accent-hover: #d97706;
    --color-text: #334155;
    --color-text-muted: #64748b;
    --color-bg: #f8fafc;
    --color-bg-alt: #f1f5f9;
    --color-white: #ffffff;
    --font-sans: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, .05);
    --shadow: 0 4px 6px -1px rgba(15, 23, 42, .08), 0 2px 4px -2px rgba(15, 23, 42, .06);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, .08), 0 4px 6px -4px rgba(15, 23, 42, .06);
    --radius: 10px;
    --radius-lg: 14px;
    --transition: .2s ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--color-text);
    background: var(--color-bg);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ========== Header ========== */
/* Üst bar: adres + WhatsApp / Telefon / Yol tarifi */
body:has(.header-top) {
    --header-top-height: 44px;
}

.header-top {
    background: var(--color-primary);
    color: var(--color-white);
    font-size: 0.9rem;
    position: sticky;
    top: 0;
    z-index: 101;
    margin: 0;
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem;
    min-height: 44px;
}

.header-top-left {
    display: flex;
    align-items: center;
}

.header-top-address {
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition);
    max-width: 420px;
}

.header-top-address:hover {
    color: var(--color-white);
}

.header-top-address i {
    flex-shrink: 0;
    opacity: .9;
}

.header-top-right {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.header-top-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 0.85rem;
    border-radius: 6px;
    text-decoration: none;
    color: var(--color-white);
    font-weight: 500;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.header-top-btn:hover {
    color: var(--color-white);
    text-decoration: none;
}

.header-top-wa {
    background: rgba(37, 211, 102, .25);
    color: #fff;
}

.header-top-wa:hover {
    background: #25d366;
}

.header-top-phone {
    background: rgba(220, 38, 38, .3);
    color: #fff;
}

.header-top-phone:hover {
    background: #dc2626;
}

.header-top-directions {
    background: rgba(255, 255, 255, .15);
    color: #fff;
}

.header-top-directions:hover {
    background: rgba(255, 255, 255, .25);
}

@media (max-width: 768px) {
    body:has(.header-top) {
        --header-top-height: 40px;
    }
    .header-top {
        margin-bottom: 0;
    }
    .header-top-inner {
        padding: 0.5rem 1rem;
        min-height: 40px;
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
    .header-top-left {
        min-width: 0;
        flex: 1 1 auto;
    }
    .header-top-address {
        max-width: 100%;
        overflow: hidden;
    }
    .header-top-address span {
        display: block;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .header-top-right {
        flex: 0 0 auto;
        flex-wrap: nowrap;
    }
    .header-top-btn-text {
        display: none;
    }
    .header-top-btn {
        padding: 0.45rem 0.65rem;
    }
}

.site-header {
    background: var(--color-white);
    box-shadow: 0 1px 3px rgba(15, 23, 42, .08);
    border-bottom: 1px solid rgba(15, 23, 42, .06);
    position: sticky;
    top: 0;
    z-index: 100;
    overflow: visible;
    margin: 0;
}

body:has(.header-top) .site-header {
    top: var(--header-top-height, 44px);
}

.site-header .container.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    gap: 1.5rem;
    position: relative;
    overflow: visible;
}

.header-nav-wrap {
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
}

.btn-teklif {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 1.35rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-accent);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}
.btn-teklif:hover {
    background: var(--color-accent-hover);
}
.btn-teklif:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* Teklif Al modal */
.teklif-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
}
.teklif-modal.is-open {
    opacity: 1;
    visibility: visible;
}
.teklif-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    cursor: pointer;
}
.teklif-modal-content {
    position: relative;
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.25);
    border: 1px solid rgba(15, 23, 42, 0.08);
}
.teklif-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.teklif-modal-title {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}
.teklif-modal-close {
    width: 40px;
    height: 40px;
    padding: 0;
    border: none;
    background: transparent;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--color-text-muted);
    cursor: pointer;
    border-radius: 8px;
    transition: color 0.2s ease, background 0.2s ease;
}
.teklif-modal-close:hover {
    color: var(--color-primary);
    background: var(--color-bg-alt);
}
.teklif-form {
    padding: 1.5rem;
}
.teklif-form .form-group {
    margin-bottom: 1.25rem;
}
.teklif-form .form-group:last-of-type {
    margin-bottom: 1.5rem;
}
.teklif-form label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 500;
    color: var(--color-text);
}
.teklif-form input,
.teklif-form textarea,
.teklif-form select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--color-white);
    color: var(--color-text);
}
.teklif-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748b' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
}
.teklif-form input:focus,
.teklif-form textarea:focus,
.teklif-form select:focus {
    outline: none;
    border-color: var(--color-accent);
}
.teklif-form-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.btn-teklif-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    background: var(--color-accent);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.btn-teklif-submit:hover {
    background: var(--color-accent-hover);
}
.teklif-form-actions .btn-secondary {
    padding: 0.65rem 1.25rem;
    border: 1px solid rgba(15, 23, 42, 0.2);
    background: var(--color-white);
    color: var(--color-text);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
}
.teklif-form-actions .btn-secondary:hover {
    background: var(--color-bg-alt);
}

.teklif-feedback {
    margin: 0 0 1rem;
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 500;
}
.teklif-feedback-ok {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}
.teklif-feedback-hata {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.teklif-modal-body { position: relative; }
.teklif-modal-loader {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    min-height: 200px;
}
.teklif-loader-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid rgba(15, 23, 42, 0.1);
    border-top-color: var(--color-accent);
    border-radius: 50%;
    animation: teklif-spin 0.9s linear infinite;
}
@keyframes teklif-spin {
    to { transform: rotate(360deg); }
}
.teklif-loader-text {
    margin: 1rem 0 0;
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 500;
}
.teklif-modal-result {
    display: none;
    padding: 1.5rem;
    text-align: center;
}
.teklif-modal-result .teklif-result-inner { margin-bottom: 1.25rem; }
.teklif-modal-result .teklif-result-inner p {
    margin: 0.75rem 0 0;
    font-size: 1rem;
    line-height: 1.5;
}
.teklif-result-icon { font-size: 3rem; display: block; }
.teklif-result-icon-ok { color: #16a34a; }
.teklif-result-icon-hata { color: #dc2626; }
.teklif-result-countdown {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}
.teklif-modal-result .teklif-result-close {
    display: inline-block;
    min-width: 140px;
    padding: 0.65rem 1.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    background: var(--color-accent);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.2s ease;
}
.teklif-modal-result .teklif-result-close:hover {
    background: var(--color-accent-hover);
}
.teklif-modal-result .teklif-result-close:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

.logo {
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 700;
    font-size: 1.65rem;
    letter-spacing: -0.02em;
    transition: opacity var(--transition), transform var(--transition);
    flex-shrink: 0;
}

.logo:hover {
    opacity: .92;
}

.logo img {
    max-height: 56px;
    width: auto;
    display: block;
    object-fit: contain;
}

.logo-text {
    color: var(--color-primary);
}

/* Hamburger – sadece mobilde görünür */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    background: var(--color-bg-alt);
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid rgba(15, 23, 42, .08);
    transition: background .2s ease;
}
.nav-toggle:hover {
    background: var(--color-white);
}
.nav-toggle-bar {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 1px;
    margin: 0 auto;
    transition: transform .25s ease, opacity .25s ease;
}
.site-header.nav-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.site-header.nav-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}
.site-header.nav-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--color-bg-alt);
    padding: 0.4rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(15, 23, 42, .08);
    position: relative;
    overflow: visible;
}

.nav a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.nav a:hover {
    color: var(--color-primary);
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
}

.nav a:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

/* Tek link öğesi */
.nav .nav-item {
    display: inline-flex;
    position: relative;
}

/* Ana menü öğeleri arası dikey ayraç */
.nav > .nav-item:not(:last-child)::after,
.nav > .nav-item-has-dropdown:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.35rem;
    top: 50%;
    transform: translateY(-50%);
    height: 1.25em;
    width: 1px;
    background: rgba(15, 23, 42, 0.28);
    border-radius: 1px;
}

/* Dropdown wrapper – buton ile panel arasında boşluk için */
.nav .nav-item-has-dropdown {
    position: relative;
    display: inline-flex;
}

.nav .nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.nav .nav-dropdown-arrow {
    font-size: 0.65em;
    opacity: 0.85;
    transition: transform 0.25s ease;
    margin-left: 0.1rem;
}

.nav .nav-item-has-dropdown:hover .nav-dropdown-arrow,
.nav .nav-item-has-dropdown.nav-dropdown-open .nav-dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown panel – menü bitiminden aşağıda başlasın (margin: 0 sonra gelmesin, sıfırlamasın) */
.nav .nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin: 9px 0 0 0;
    min-width: 220px;
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.14), 0 4px 14px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(15, 23, 42, 0.06);
    list-style: none;
    padding: 0;
    z-index: 200;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}
/* İlk tıklanabilir alan da menü çubuğundan uzak olsun */
.nav .nav-dropdown-menu::before {
    content: '';
    display: block;
    height: 4px;
}

.nav .nav-item-has-dropdown:hover .nav-dropdown-menu,
.nav .nav-item-has-dropdown.nav-dropdown-open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav .nav-dropdown-menu li {
    margin: 0;
}

.nav .nav-dropdown-menu > li {
    position: relative;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}
.nav .nav-dropdown-menu > li:last-child {
    border-bottom: none;
}

.nav .nav-dropdown-menu > li > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    margin: 0 0.4rem;
    border-radius: 6px;
    white-space: nowrap;
    font-weight: 500;
    color: var(--color-text);
    transition: background 0.15s ease, color 0.15s ease;
}

.nav .nav-dropdown-menu > li > a:hover {
    background: var(--color-bg-alt);
    color: var(--color-primary);
}

.nav .nav-dropdown-menu > li > a i {
    width: 1.1em;
    opacity: 0.85;
}

/* Alt seviye (nested) */
.nav .nav-dropdown-sub {
    list-style: none;
    margin: 0;
    padding: 0.25rem 0 0.35rem 0.5rem;
    border-left: 2px solid rgba(15, 23, 42, 0.08);
    margin-left: 1.25rem;
}

.nav .nav-dropdown-sub li {
    margin: 0;
}

.nav .nav-dropdown-sub a {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.9rem;
    padding: 0.45rem 0.75rem;
    border-radius: 4px;
    color: var(--color-text-muted);
    transition: background 0.15s ease, color 0.15s ease;
}

.nav .nav-dropdown-sub a:hover {
    color: var(--color-primary);
    background: rgba(15, 23, 42, 0.04);
}

/* Footer menü ikonları */
.footer-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* ========== Mobil menü (768 ve altı) ========== */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
        flex-shrink: 0;
    }
    .header-nav-wrap {
        gap: 0.5rem;
    }
    .btn-teklif {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .site-header .container.header-inner {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        min-height: 64px;
        padding: 0.75rem 1.5rem;
        gap: 1rem;
    }
    /* Logo alanı hamburger ile çakışmasın: kare/dikdörtgen fark etmez, menüye taşmaz */
    .logo {
        font-size: 1.25rem;
        min-width: 0;
        flex: 1 1 auto;
        max-width: calc(100% - 44px - 1rem);
        display: flex;
        align-items: center;
    }
    .logo img {
        max-height: 44px;
        max-width: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        object-position: left center;
    }

    /* Masaüstü nav kapat; mobilde kapalıyken gizle, açıkken düzenli liste */
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0;
        margin: 0;
        border: none;
        border-radius: 0;
        background: var(--color-white);
        box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
        border-top: 1px solid rgba(15, 23, 42, 0.08);
        transition: max-height 0.35s ease, opacity 0.25s ease, visibility 0.25s ease;
        z-index: 99;
    }
    .site-header.nav-open .nav {
        max-height: 85vh;
        overflow-y: auto;
        overflow-x: hidden;
        opacity: 1;
        visibility: visible;
    }

    .nav .nav-item,
    .nav .nav-item-has-dropdown {
        display: block;
        width: 100%;
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    }
    .nav .nav-item:last-child,
    .nav .nav-item-has-dropdown:last-child {
        border-bottom: none;
    }
    .nav .nav-item > a,
    .nav .nav-dropdown-toggle {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 1rem 1.25rem;
        font-size: 1rem;
        border-radius: 0;
        box-shadow: none;
        text-align: left;
        gap: 0.75rem;
    }
    /* Dropdown başlığı: ikon+metin solda, ok sağda (ortaya kaymasın) */
    .nav .nav-dropdown-toggle {
        justify-content: flex-start;
    }
    .nav .nav-dropdown-toggle .nav-dropdown-arrow {
        margin-left: auto;
    }
    .nav .nav-dropdown-arrow {
        transition: transform 0.25s ease;
        flex-shrink: 0;
    }
    .nav .nav-item-has-dropdown.nav-dropdown-open .nav-dropdown-arrow {
        transform: rotate(180deg);
    }

    /* Mobilde dropdown = accordion (grid ile düzgün açılır) */
    .nav .nav-item-has-dropdown {
        display: grid;
        grid-template-rows: auto 0fr;
        transition: grid-template-rows 0.3s ease;
    }
    .nav .nav-item-has-dropdown.nav-dropdown-open {
        grid-template-rows: auto 1fr;
    }
    .nav .nav-dropdown-menu {
        position: static;
        margin: 0;
        min-width: 100%;
        min-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: var(--color-bg-alt);
        list-style: none;
        padding: 0;
    }
    .nav .nav-dropdown-menu::before {
        display: none;
    }
    .nav .nav-dropdown-menu > li {
        border-bottom: 1px solid rgba(15, 23, 42, 0.06);
        margin: 0;
        list-style: none;
    }
    .nav .nav-dropdown-menu > li:last-child {
        border-bottom: none;
    }
    .nav .nav-dropdown-menu > li > a {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin: 0;
        padding: 0.9rem 1.25rem 0.9rem 2rem;
        font-size: 0.95rem;
    }
    .nav .nav-dropdown-menu > li > a i {
        flex-shrink: 0;
        width: 1.25em;
        opacity: 0.9;
    }
    .nav .nav-dropdown-sub {
        list-style: none;
        margin: 0;
        padding: 0.35rem 0 0.5rem 2rem;
        border-left: none;
    }
    .nav .nav-dropdown-sub li {
        margin: 0;
        list-style: none;
    }
    .nav .nav-dropdown-sub a {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        padding: 0.75rem 1rem;
    }
    .nav .nav-dropdown-sub a i {
        flex-shrink: 0;
        width: 1.1em;
    }
}

/* ========== Main ========== */
.main {
    min-height: calc(100vh - 72px - 220px);
    padding: 2.5rem 0 4rem;
}

/* Slider ana sayfada ilk sıradaysa header ile arasında boşluk olmasın */
.main > .home-slider:first-child {
    margin-top: -2.5rem;
}

/* ========== Home slider (Swiper) ========== */
.home-slider {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
}

.home-slider .swiper {
    width: 100%;
    height: 480px;
    border-radius: 0;
    overflow: hidden;
}

.home-slider .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-color: var(--color-bg-alt);
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: #0f172a;
    pointer-events: none;
}

.slider-caption {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 2.5rem 2rem 7rem;
    color: var(--color-white);
    z-index: 1;
}

.slider-caption.vertical-top { align-items: flex-start; }
.slider-caption.vertical-middle { align-items: center; }
.slider-caption.vertical-bottom { align-items: flex-end; }

.slider-caption.align-left { justify-content: flex-start; text-align: left; }
.slider-caption.align-center { justify-content: center; text-align: center; }
.slider-caption.align-right { justify-content: flex-end; text-align: right; }

.slider-caption-inner {
    max-width: 560px;
}

.slider-title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 1px 2px rgba(0,0,0,.3);
}

.slider-subtitle {
    margin: 0 0 1.25rem;
    font-size: 1.05rem;
    opacity: .95;
    line-height: 1.5;
}

.slider-btn-cta {
    display: inline-block;
    padding: 0.65rem 1.4rem;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: var(--radius);
    transition: transform var(--transition), opacity var(--transition);
    color: var(--color-primary);
    background: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.slider-btn-cta:hover {
    transform: translateY(-2px);
    opacity: .95;
    color: var(--color-primary);
}

.slider-btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, .8);
}

.slider-btn-outline:hover {
    background: rgba(255, 255, 255, .15);
    color: var(--color-white);
}

.slider-btn-white {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
}

.slider-btn-white:hover {
    background: #f1f5f9;
    color: var(--color-primary);
}

.slider-slide-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

.home-slider .swiper-button-prev,
.home-slider .swiper-button-next {
    color: var(--color-white);
    background: rgba(0, 0, 0, .35);
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.home-slider .swiper-button-prev:after,
.home-slider .swiper-button-next:after {
    font-size: 1.2rem;
}

.home-slider .swiper-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 0 1rem;
    z-index: 3;
}

.home-slider .swiper-pagination-bullet {
    width: 44px;
    height: 44px;
    margin: 0;
    border-radius: 6px;
    background: rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .9);
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: background .2s ease, color .2s ease, transform .2s ease;
    border: 2px solid rgba(255, 255, 255, .35);
}

.home-slider .swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, .4);
    color: var(--color-white);
}

.home-slider .swiper-pagination-bullet-active {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .home-slider .swiper { height: 380px; }
    .slider-caption { padding: 1.5rem 1rem 6.5rem; }
}

/* Rich text in content */
.about-block.rich p,
.about-card-text.rich p,
.subtitle.rich p { margin: 0 0 0.5em; }
.about-block.rich p:last-child,
.about-card-text.rich p:last-child,
.subtitle.rich p:last-child { margin-bottom: 0; }
.about-block.rich img,
.about-card-text.rich img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 0.5em 0;
}

/* ========== Float buttons (WhatsApp, Phone) ========== */
.float-buttons {
    position: fixed;
    bottom: 1.75rem;
    right: 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
    z-index: 999;
}

.float-btn-wrap {
    position: relative;
}

.float-btn-label {
    position: absolute;
    right: 100%;
    top: 50%;
    margin-right: 0.65rem;
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    background: rgba(15, 23, 42, .92);
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .2);
    opacity: 0;
    transform: translateY(-50%) translateX(8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.float-btn-wrap:hover .float-btn-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.float-btn-wrap:hover .float-btn-label.float-label-wa {
    background: rgba(37, 211, 102, .95);
    color: #fff;
}

.float-btn-wrap:hover .float-btn-label.float-label-phone {
    background: rgba(185, 28, 28, .95);
    color: #fff;
}

.float-btn {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    border: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .35), 0 3px 10px rgba(0, 0, 0, .2);
    transition: transform .25s ease, box-shadow .25s ease, color .2s ease;
    flex-shrink: 0;
}

.float-btn:hover {
    text-decoration: none;
    color: #fff;
}

.float-btn i {
    font-size: 2rem;
    display: block;
    line-height: 1;
}

.float-btn-wrap:hover .float-btn {
    transform: scale(1.08);
    box-shadow: 0 10px 32px rgba(0, 0, 0, .4), 0 6px 16px rgba(0, 0, 0, .25);
    color: #fff;
}

.float-btn:active {
    transform: scale(1.02);
}

.float-wa {
    background: linear-gradient(145deg, #25d366 0%, #128c7e 50%, #075e54 100%);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .4), 0 3px 10px rgba(0, 0, 0, .2);
}

.float-btn-wrap:hover .float-wa {
    background: linear-gradient(145deg, #2ee06b 0%, #25d366 50%, #128c7e 100%);
    box-shadow: 0 10px 32px rgba(37, 211, 102, .5), 0 6px 16px rgba(0, 0, 0, .25);
}

.float-phone {
    background: linear-gradient(145deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
    box-shadow: 0 6px 20px rgba(220, 38, 38, .45), 0 3px 10px rgba(0, 0, 0, .2);
}

.float-btn-wrap:hover .float-phone {
    background: linear-gradient(145deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
    box-shadow: 0 10px 32px rgba(220, 38, 38, .5), 0 6px 16px rgba(0, 0, 0, .25);
}

@media (max-width: 768px) {
    .float-buttons {
        bottom: 1.25rem;
        right: 1.25rem;
        gap: 0.75rem;
    }
    .float-btn-label {
        font-size: 0.85rem;
        padding: 0.45rem 0.75rem;
    }
    .float-btn {
        width: 64px;
        height: 64px;
    }
    .float-btn i {
        font-size: 1.75rem;
    }
}

/* ========== Hero ========== */
.hero {
    text-align: center;
    padding: 4.5rem 0 5rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-soft) 50%, #0c4a6e 100%);
    color: var(--color-white);
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: .6;
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.85rem, 4.5vw, 2.75rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.hero .subtitle {
    margin: 0 auto 1.75rem;
    font-size: 1.125rem;
    opacity: .92;
    max-width: 560px;
    line-height: 1.6;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-accent);
    color: var(--color-primary) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition);
    box-shadow: var(--shadow);
}

.hero-cta:hover {
    background: var(--color-accent-hover);
    color: var(--color-primary) !important;
    transform: translateY(-1px);
}

.hero-cta:focus-visible {
    outline: 2px solid var(--color-white);
    outline-offset: 2px;
}

.hero-cta-outline {
    background: rgba(255, 255, 255, .18) !important;
    color: var(--color-white) !important;
    border: 1px solid rgba(255, 255, 255, .4);
}

.hero-cta-outline:hover {
    background: rgba(255, 255, 255, .25) !important;
    color: var(--color-white) !important;
}

.hero-cta + .hero-cta {
    margin-left: 0.75rem;
}

/* ========== Sections ========== */
.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: var(--color-primary);
    letter-spacing: -0.02em;
}
.container > .section-title {
    margin-bottom: 2rem;
}

/* Hakkımızda bölümü – başlık hizalı */
.section-about .section-title {
    text-align: left;
    margin-bottom: 1.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--color-accent);
    display: inline-block;
}

.about-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    border: 1px solid rgba(15, 23, 42, .06);
    overflow: hidden;
}

.about-card-with-image {
    display: grid;
    grid-template-columns: 1fr  minmax(280px, 38%);
    gap: 0;
    align-items: stretch;
}

.about-card-text {
    padding: 2.25rem 2rem;
    white-space: pre-line;
    line-height: 1.75;
}
.about-card-text.rich {
    white-space: normal;
}

.about-card-with-image .about-card-text {
    padding: 2.25rem 2rem 2.25rem 2.25rem;
}

.about-card-image {
    background: var(--color-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
}

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

@media (max-width: 768px) {
    .about-card-with-image {
        grid-template-columns: 1fr;
    }
    .about-card-image {
        min-height: 240px;
        order: -1;
    }
}

.about-block {
    background: var(--color-white);
    padding: 2.25rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
    white-space: pre-line;
    line-height: 1.75;
    border: 1px solid rgba(15, 23, 42, .06);
}

/* ========== Hizmet kartları (ana sayfa) ========== */
.section-home-cards {
    margin-bottom: 3rem;
}

.section-home-cards .section-title {
    text-align: left;
    margin-bottom: 1.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--color-accent);
    display: inline-block;
}

/* Ana sayfa galeri bölümü */
.section-home-gallery {
    margin-bottom: 3rem;
}
.section-home-gallery .section-title {
    text-align: left;
    margin-bottom: 1.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--color-accent);
    display: inline-block;
}
.home-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (min-width: 769px) {
    .home-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
.home-gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--color-bg-alt);
    aspect-ratio: 4/3;
}
.home-gallery-thumb {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    position: relative;
}
.home-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.home-gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.5rem 0.75rem;
    background: rgba(15, 23, 42, 0.75);
    color: #fff;
    font-size: 0.875rem;
}

.home-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.home-card {
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.home-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, .2);
}

.home-card-icon-wrap {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    opacity: .95;
    flex-shrink: 0;
}

.home-card-icon-wrap .home-card-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.home-card-title {
    margin: 0 0 0.75rem;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--color-white);
    letter-spacing: -0.01em;
}

.home-card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: .92;
    margin: 0;
    flex-grow: 1;
}

.home-card-blue {
    background: linear-gradient(145deg, #4c1d95 0%, #312e81 50%, #1e1b4b 100%);
}

.home-card-brown {
    background: linear-gradient(145deg, #78350f 0%, #57534e 50%, #1c1917 100%);
}

.home-card-teal {
    background: linear-gradient(145deg, #0f766e 0%, #134e4a 50%, #042f2e 100%);
}

.home-card-yellow {
    background: linear-gradient(145deg, #a16207 0%, #713f12 50%, #422006 100%);
}

@media (max-width: 768px) {
    .home-cards-grid {
        grid-template-columns: 1fr;
    }
    .home-card {
        min-height: 0;
        padding: 1.5rem 1.25rem;
    }
}

/* ========== Product grid ========== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--color-white);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .04);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease, border-color .25s ease;
    border: 1px solid rgba(15, 23, 42, .08);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, .12), 0 4px 12px rgba(15, 23, 42, .08);
    border-color: rgba(245, 158, 11, .25);
}

.product-card .card-img-wrap {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(145deg, #f1f5f9 0%, #e2e8f0 100%);
}

.product-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.product-card:hover .card-img-wrap img {
    transform: scale(1.06);
}

.product-card .card-img-wrap .card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    background: linear-gradient(145deg, #e2e8f0 0%, #cbd5e1 100%);
}

.product-card .card-body {
    padding: 1.5rem 1.5rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.35;
    transition: color .25s ease;
}

.product-card:hover h3 {
    color: var(--color-accent);
}

.product-card .card-body p {
    margin: 0;
    font-size: 0.925rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    flex: 1;
}

.product-card .card-link-text {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(15, 23, 42, .06);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap .25s ease, color .25s ease;
}

.product-card:hover .card-link-text {
    color: var(--color-accent-hover);
    gap: 0.5rem;
}

/* ========== Gallery ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

@media (min-width: 769px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    transition: box-shadow var(--transition);
}

.gallery-item-thumb {
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.gallery-item-thumb img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition);
}

.gallery-item-thumb:hover img {
    transform: scale(1.03);
}

.gallery-item-caption {
    display: block;
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text);
    background: var(--color-white);
    border-top: 1px solid rgba(15, 23, 42, .06);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.gallery-item:hover {
    box-shadow: var(--shadow-lg);
}

/* Lightbox */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: rgba(15, 23, 42, .92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
}

.gallery-lightbox[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox-close,
.gallery-lightbox-prev,
.gallery-lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, .15);
    color: #fff;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-prev:hover,
.gallery-lightbox-next:hover {
    background: rgba(255, 255, 255, .3);
}

.gallery-lightbox-close {
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    line-height: 1;
}

.gallery-lightbox-prev {
    left: 1rem;
}

.gallery-lightbox-next {
    right: 1rem;
}

.gallery-lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gallery-lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.gallery-lightbox-caption {
    margin: 1rem 0 0;
    color: #fff;
    font-size: 1rem;
    text-align: center;
    max-width: 500px;
}

/* Product detail */
.product-detail {
    background: var(--color-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 23, 42, .06);
}

.product-detail-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: var(--color-primary);
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

/* ========== Ürün detay sayfası ========== */
/* Sol: ana görsel + altında thumb'lar yan yana | Sağ: ürün detayları (resimlerle aynı hizada başlar) */

.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 420px) 1fr;
    gap: 2rem;
    align-items: start;
}

.product-detail-layout > .product-detail-info:only-child {
    grid-column: 1 / -1;
}

.product-detail-visuals {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
}

.product-detail-main-image {
    width: 100%;
    height: 420px;
    border-radius: var(--radius);
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail-main-image .product-detail-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* Thumb'lar ana görselin altında, 4'er 4'er; boyut ana görsel ile orantılı (4 thumb = ana genişlik) */
.product-detail-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    width: 100%;
}

.product-detail-gallery-thumb {
    width: 100%;
    aspect-ratio: 1;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
    cursor: pointer;
    transition: border-color .2s, box-shadow .2s;
    box-shadow: 0 1px 3px rgba(15, 23, 42, .08);
}

.product-detail-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-detail-gallery-thumb:hover {
    border-color: var(--color-primary);
    box-shadow: 0 2px 8px rgba(15, 23, 42, .12);
}

.product-detail-gallery-thumb.active {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px var(--color-primary);
}

.product-detail-info {
    min-width: 0;
    padding-top: 0;
}

.product-detail .product-description {
    line-height: 1.8;
    color: var(--color-text);
    font-size: 1rem;
}

.product-detail .product-description.rich {
    line-height: 1.75;
}

.product-detail .product-description.rich img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

@media (max-width: 768px) {
    .product-detail-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .product-detail-visuals {
        align-items: stretch;
    }
    .product-detail-main-image {
        max-width: 100%;
        height: 280px;
    }
    .product-detail-gallery {
        width: 100%;
        grid-template-columns: repeat(4, 1fr);
        gap: 0.5rem;
    }
    .product-detail-gallery-thumb {
        min-width: 0;
    }
    .product-detail-info {
        padding-top: 0;
    }
}

/* Ürün detay / ürünler CTA – tam genişlik, footer üstünde sabit (ürün yoksa da aşağıda kalsın) */
.main:has(.product-cta) {
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.main:has(.product-cta) > .container {
    width: 100%;
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
    flex: 0 0 auto;
    margin-bottom: 3rem;
}
.main:has(.product-cta) .product-cta {
    margin-top: auto;
}
.product-cta {
    width: 100%;
    padding: 1rem 0;
    margin: 2rem 0 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-soft) 100%);
    border-bottom: 2px solid var(--color-accent);
}

.product-cta-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.product-cta-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.product-cta-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
}

.product-cta-sub {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
}

.product-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.product-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    color: #fff;
    transition: transform var(--transition), box-shadow var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.product-cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    color: #fff;
}

.product-cta-btn i {
    font-size: 1.25rem;
}

.product-cta-btn small {
    margin-left: 0.25rem;
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.95;
}

.product-cta-wa {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.product-cta-wa:hover {
    background: linear-gradient(135deg, #2ee672 0%, #149b8a 100%);
}

.product-cta-phone {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-hover) 100%);
}

.product-cta-phone:hover {
    background: linear-gradient(135deg, #fbbf24 0%, var(--color-accent) 100%);
}

@media (max-width: 640px) {
    .product-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 0.75rem 1rem;
    }
    .product-cta-text {
        align-items: center;
    }
    .product-cta-title {
        font-size: 1rem;
    }
    .product-cta-buttons {
        justify-content: center;
    }
}

/* ========== Contact ========== */
.section-title-page {
    text-align: left;
    margin-bottom: 1.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid var(--color-accent);
    display: inline-block;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    background: var(--color-white);
    padding: 1.75rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 23, 42, .06);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .12);
    border-color: rgba(245, 158, 11, .35);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-soft) 100%);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.contact-card-whatsapp .contact-card-icon {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.contact-card-title {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.01em;
}

.contact-card-content {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text);
    margin: 0;
}

.contact-card-link {
    text-decoration: none;
    color: inherit;
}

.contact-card-link .contact-card-content {
    color: var(--color-primary);
    font-weight: 500;
}

.contact-card-link:hover .contact-card-content {
    color: var(--color-accent-hover);
}

.contact-empty {
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 2rem;
}

.map-wrap {
    margin-top: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(15, 23, 42, .06);
}

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

/* ========== Footer ========== */
.site-footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, .92);
    padding: 0;
    margin-top: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem 2rem;
    padding: 2.5rem 0 2rem;
    max-width: 1140px;
    margin: 0 auto;
}

.footer-col-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 1rem;
    letter-spacing: 0.02em;
}

.footer-col-about .footer-text {
    font-size: 0.95rem;
    line-height: 1.65;
    opacity: .92;
    margin: 0;
}

.footer-col-about .footer-text p {
    margin: 0 0 0.5rem;
}

.footer-col-about .footer-text p:last-child {
    margin-bottom: 0;
}

.footer-col-about .footer-text a {
    color: var(--color-accent);
    text-decoration: none;
}

.footer-col-about .footer-text a:hover {
    text-decoration: underline;
}

.footer-col-menu .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 0;
}

.footer-col-menu .footer-links a {
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
    font-size: 0.95rem;
    transition: opacity var(--transition), color var(--transition);
}

.footer-col-menu .footer-links a:hover {
    opacity: 1;
    color: var(--color-white);
}

.footer-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact-list li:last-child {
    margin-bottom: 0;
}

.footer-contact-list i {
    flex-shrink: 0;
    width: 1.1em;
    margin-top: 0.2em;
    opacity: .9;
}

.footer-contact-list a,
.footer-contact-list span {
    color: rgba(255, 255, 255, .92);
    text-decoration: none;
}

.footer-contact-list a:hover {
    color: var(--color-white);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 1.25rem 0;
    text-align: center;
}

.site-footer .copyright {
    margin: 0;
    font-size: 0.875rem;
    opacity: .75;
}

.site-footer .copyright a {
    color: rgba(255, 255, 255, .95);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .4);
    padding-bottom: 0.1em;
    transition: color .2s ease, border-color .2s ease;
}

.site-footer .copyright a:hover {
    color: var(--color-white);
    border-bottom-color: rgba(255, 255, 255, .8);
}

.footer-developer {
    margin: 0.85rem 0 0;
    font-size: 0.8rem;
    opacity: .85;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.footer-developer i {
    opacity: .8;
    font-size: 0.75em;
}

.footer-developer-label {
    color: rgba(255, 255, 255, .75);
}

.footer-developer-link {
    color: rgba(255, 255, 255, .95);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.25em 0.6em;
    border-radius: 6px;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.footer-developer-link:hover {
    color: var(--color-white);
    background: rgba(255, 255, 255, .15);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0 1.5rem;
        text-align: center;
    }

    .footer-col-menu .footer-links {
        align-items: center;
    }

    .footer-contact-list li {
        justify-content: center;
    }
}

/* ========== Breadcrumb ========== */
.breadcrumb {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 1.25rem;
}

.breadcrumb a {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition);
}

.breadcrumb a:hover {
    color: var(--color-accent-hover);
}

/* ========== Empty state ========== */
.empty-state {
    text-align: center;
    padding: 3rem 1.5rem;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(15, 23, 42, .12);
    color: var(--color-text-muted);
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .nav {
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero {
        padding: 3rem 0 3.5rem;
    }
    .hero .subtitle {
        margin-bottom: 1.5rem;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }
    .product-detail {
        padding: 1.5rem;
    }
}

/* ========== 404 Sayfa ========== */
.page-404 {
    padding: 3rem 1.5rem 4rem;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-404-inner {
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
}

.page-404-logo {
    margin-bottom: 1.5rem;
    line-height: 1;
}

.page-404-logo img {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.page-404-logo-text {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    display: block;
}

.page-404-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
    margin: 0 0 0.75rem;
}

.page-404-desc {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0 0 2rem;
}

.page-404-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
    margin-bottom: 2rem;
}

@media (min-width: 769px) {
    .page-404-inner {
        max-width: 620px;
    }
    .page-404-nav {
        flex-wrap: nowrap;
    }
}

.page-404-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--color-primary);
    background: var(--color-white);
    border: 1px solid var(--color-primary-soft);
    box-shadow: var(--shadow-sm);
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.page-404-btn:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-accent);
    color: var(--color-accent-hover);
}

.page-404-btn-primary {
    background: var(--color-accent);
    color: var(--color-white);
    border-color: var(--color-accent);
}

.page-404-btn-primary:hover {
    background: var(--color-accent-hover);
    color: var(--color-white);
    border-color: var(--color-accent-hover);
}

.page-404-back {
    margin: 0;
    font-size: 0.9rem;
}

.page-404-back a {
    color: var(--color-text-muted);
    text-decoration: none;
}

.page-404-back a:hover {
    color: var(--color-accent);
    text-decoration: underline;
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    .hero h1 {
        font-size: 1.6rem;
    }
    .page-404-nav {
        flex-direction: column;
    }
    .page-404-btn {
        justify-content: center;
    }
}
