﻿:root {
    --black: #111111;
    --dark: #1b1a17;
    --cream: #f7efe3;
    --cream-soft: #fffaf2;
    --white: #ffffff;
    --gold: #c89442;
    --gold-soft: #e0b86e;
    --muted: #756d61;
    --line: rgba(200, 148, 66, .25);
    --shadow: 0 25px 70px rgba(0, 0, 0, .14);
    --radius: 26px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--cream-soft);
    color: var(--black);
    line-height: 1.65;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 34px));
    margin-inline: auto;
}

.topbar {
    background: var(--black);
    color: var(--cream);
    font-size: 14px;
}

.topbar-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.topbar-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.topbar a {
    color: var(--white);
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(17, 17, 17, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.navbar {
    height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
}

    .brand img {
        width: 78px;
        height: 62px;
        object-fit: contain;
        background: var(--white);
        border-radius: 12px;
        padding: 4px;
    }

    .brand strong {
        display: block;
        font-size: 18px;
        font-weight: 900;
        letter-spacing: .02em;
    }

    .brand small {
        display: block;
        color: var(--gold-soft);
        font-size: 12px;
        font-weight: 700;
        margin-top: -2px;
    }

.nav-menu {
    display: flex;
    align-items: center;
    gap: 24px;
    color: var(--white);
    font-size: 14px;
    font-weight: 800;
}

    .nav-menu a {
        transition: .2s ease;
    }

        .nav-menu a:hover {
            color: var(--gold-soft);
        }

.nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 12px 18px;
    border-radius: 999px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: transparent;
    border-radius: 12px;
    cursor: pointer;
}

    .menu-toggle span {
        display: block;
        width: 19px;
        height: 2px;
        background: var(--white);
        margin: 4px auto;
    }

.hero {
    min-height: 720px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: var(--black);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .66), rgba(0, 0, 0, .28)), radial-gradient(circle at 10% 90%, rgba(200, 148, 66, .25), transparent 35%);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 760px;
    padding: 110px 0;
}

.mini-title,
.section-label {
    display: inline-flex;
    color: var(--gold-soft);
    background: rgba(200, 148, 66, .12);
    border: 1px solid rgba(200, 148, 66, .28);
    border-radius: 999px;
    padding: 7px 14px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

    .section-label.light {
        color: var(--white);
        border-color: rgba(255, 255, 255, .22);
        background: rgba(255, 255, 255, .08);
    }

.hero h1 {
    font-size: clamp(42px, 6vw, 82px);
    line-height: .98;
    margin: 20px 0;
    font-family: Georgia, 'Times New Roman', serif;
}

.hero p {
    color: #f3e7d4;
    font-size: 18px;
    max-width: 650px;
}

.hero-buttons,
.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.btn {
    min-height: 50px;
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    transition: .22s ease;
}

    .btn:hover {
        transform: translateY(-3px);
    }

.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--black);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
}

.btn-light {
    background: var(--white);
    color: var(--black);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .38);
    color: var(--white);
    background: rgba(255, 255, 255, .08);
}

.section {
    padding: 90px 0;
}

.section-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 46px;
}

    .section-head h2,
    .about-preview h2,
    .why-grid h2,
    .cta-box h2,
    .page-hero h1,
    .content-text h2,
    .contact-card h2 {
        font-family: Georgia, 'Times New Roman', serif;
        font-size: clamp(32px, 4vw, 56px);
        line-height: 1.05;
        margin: 16px 0;
    }

    .section-head p,
    .about-preview p,
    .why-grid p,
    .cta-box p,
    .page-hero p,
    .content-text p,
    .contact-card p {
        color: var(--muted);
    }

.quick-info {
    margin-top: -58px;
    position: relative;
    z-index: 5;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.quick-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px;
    box-shadow: var(--shadow);
}

    .quick-card strong {
        display: block;
        color: var(--gold);
        font-size: 30px;
        line-height: 1;
    }

    .quick-card span {
        display: block;
        font-weight: 900;
        margin-top: 8px;
    }

.about-preview-grid,
.why-grid,
.content-grid,
.contact-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.about-logo-box,
.content-image,
.contact-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

    .about-logo-box img,
    .content-image img {
        width: 100%;
        max-height: 450px;
        object-fit: contain;
    }

.feature-list,
.why-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin: 26px 0;
}

    .feature-list span,
    .why-list div {
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 13px 15px;
        font-weight: 900;
    }

.services-section,
.gallery-section,
.contact-section,
.other-products-section {
    background: var(--cream);
}

/* Yatay hizmet kartları */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
    transition: .22s ease;
    display: grid;
    grid-template-columns: 210px 1fr;
    min-height: 230px;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
    }

.service-card-img {
    height: 100%;
    min-height: 230px;
    position: relative;
    overflow: hidden;
}

    .service-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .3s ease;
    }

.service-card:hover img {
    transform: scale(1.06);
}

.service-card-img span {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(0,0,0,.78);
    color: var(--white);
    border-radius: 999px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 800;
}

.service-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .service-card-body h3 {
        font-size: 21px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .service-card-body p {
        color: var(--muted);
        font-size: 14px;
    }

.service-card-actions {
    display: flex;
    gap: 9px;
    margin-top: 18px;
}

    .service-card-actions .btn {
        font-size: 12px;
        min-height: 42px;
        padding: 0 14px;
        flex: 1;
    }

.cta-section {
    padding: 76px 0;
    background: linear-gradient(rgba(0,0,0,.86), rgba(0,0,0,.86)), url('/assets/img/celik-konstruksiyon-asma-kat-kapak.jpg') center/cover fixed;
    color: var(--white);
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

    .cta-box p {
        color: #f3e7d4;
    }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.process-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

    .process-card::before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        height: 4px;
        background: linear-gradient(90deg, var(--gold), transparent);
    }

    .process-card b {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        border-radius: 50%;
        background: var(--cream);
        color: var(--gold);
        margin-bottom: 14px;
    }

    .process-card p {
        color: var(--muted);
        font-size: 14px;
        margin-top: 6px;
    }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.gallery-item {
    height: 230px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 15px 38px rgba(0,0,0,.10);
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .3s ease;
    }

    .gallery-item:hover img {
        transform: scale(1.06);
    }

.contact-preview-box {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.page-hero {
    padding: 90px 0;
    background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.55)), url('/assets/img/ferforje-kapi-kapak.jpg') center/cover;
    color: var(--white);
}

    .page-hero p {
        color: #f3e7d4;
        max-width: 700px;
    }

.content-text p + p {
    margin-top: 16px;
}

.contact-info-list {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

    .contact-info-list div {
        background: var(--cream-soft);
        border: 1px solid var(--line);
        border-radius: 16px;
        padding: 14px;
    }

    .contact-info-list strong {
        display: block;
        margin-bottom: 5px;
    }

    .contact-info-list a {
        display: block;
        color: var(--gold);
        font-weight: 900;
    }

form {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

label {
    display: grid;
    gap: 7px;
    font-weight: 900;
}

input,
select,
textarea {
    border: 1px solid var(--line);
    background: var(--cream-soft);
    border-radius: 14px;
    padding: 14px;
    outline: 0;
}

    input:focus,
    select:focus,
    textarea:focus {
        border-color: var(--gold);
        box-shadow: 0 0 0 4px rgba(200, 148, 66, .13);
    }

.product-detail-section {
    padding: 50px 0 90px;
    background: var(--cream);
}

.product-detail {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 30px;
    align-items: start;
}

.product-gallery,
.product-info {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
}

.main-product-img {
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
}

    .main-product-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.thumb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 10px;
}

    .thumb-grid img {
        height: 100px;
        width: 100%;
        object-fit: cover;
        border-radius: 14px;
        border: 3px solid transparent;
        cursor: pointer;
    }

        .thumb-grid img.active {
            border-color: var(--gold);
        }

.product-info {
    padding: 36px;
}

    .product-info h1 {
        font-family: Georgia, 'Times New Roman', serif;
        font-size: clamp(32px, 4vw, 52px);
        line-height: 1.05;
        margin: 16px 0;
    }

    .product-info p {
        color: var(--muted);
    }

.product-features {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 24px 0;
}

    .product-features li {
        background: var(--cream-soft);
        border: 1px solid var(--line);
        border-radius: 14px;
        padding: 12px 14px;
        font-weight: 800;
    }

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

    .tag-list span {
        background: var(--black);
        color: var(--white);
        border-radius: 999px;
        padding: 7px 12px;
        font-size: 12px;
        font-weight: 900;
    }

.product-detail-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.footer {
    background: var(--black);
    color: var(--cream);
    padding-top: 64px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 30px;
}

.footer .brand img {
    background: var(--white);
}

.footer p {
    color: #d6c8b3;
    margin-top: 14px;
    max-width: 390px;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 16px;
}

.footer a {
    display: block;
    color: #d6c8b3;
    margin-bottom: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.10);
    margin-top: 46px;
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #d6c8b3;
    font-size: 14px;
}

.float-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 80;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 999px;
    background: #1f9f63;
    color: var(--white);
    display: flex;
    align-items: center;
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(31,159,99,.32);
}

.center {
    text-align: center;
}

.mt-30 {
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 1050px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .quick-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-detail,
    .about-preview-grid,
    .why-grid,
    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 850px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: absolute;
        left: 17px;
        right: 17px;
        top: 92px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: var(--black);
        border: 1px solid rgba(255,255,255,.10);
        border-radius: 20px;
        padding: 18px;
    }

        .nav-menu.show {
            display: flex;
        }

        .nav-menu a {
            padding: 8px;
        }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-box,
    .contact-preview-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .topbar-inner {
        flex-direction: column;
        padding: 9px 0;
        text-align: center;
    }

    .topbar-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .brand img {
        width: 60px;
        height: 50px;
    }

    .brand strong {
        font-size: 15px;
    }

    .hero {
        min-height: 680px;
    }

        .hero h1 {
            font-size: 42px;
        }

    .quick-grid,
    .gallery-grid,
    .process-grid,
    .feature-list,
    .why-list,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        grid-template-columns: 1fr;
    }

    .service-card-img {
        height: 220px;
        min-height: 220px;
    }

    .service-card-actions {
        flex-direction: column;
    }

    .main-product-img {
        height: 330px;
    }

    .thumb-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 10px;
        padding: 18px 0;
    }

}
.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    margin: 0 !important;
    border-radius: 50%;
    background: rgba(200, 148, 66, .14);
    border: 1px solid rgba(200, 148, 66, .45);
    color: var(--gold-soft) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
}

    .footer-social-link:hover {
        background: var(--gold);
        color: var(--black) !important;
        transform: translateY(-3px);
    }

    .footer-social-link svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
    }
.gallery-showcase {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-auto-rows: 210px;
    gap: 16px;
}

    .gallery-showcase .gallery-item {
        position: relative;
        height: 100%;
        overflow: hidden;
        border-radius: 24px;
        background: var(--black);
        box-shadow: 0 18px 45px rgba(0,0,0,.13);
    }

        .gallery-showcase .gallery-item:first-child {
            grid-row: span 2;
        }

        .gallery-showcase .gallery-item:nth-child(4) {
            grid-column: span 2;
        }

        .gallery-showcase .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: .35s ease;
        }

        .gallery-showcase .gallery-item::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,.78), rgba(0,0,0,.12), transparent);
            opacity: .88;
        }

        .gallery-showcase .gallery-item:hover img {
            transform: scale(1.07);
        }

.gallery-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 2;
    color: var(--white);
    font-weight: 900;
    font-size: 15px;
    line-height: 1.3;
    text-shadow: 0 8px 18px rgba(0,0,0,.45);
}
@media (max-width: 900px) {
    .gallery-showcase {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
    }

        .gallery-showcase .gallery-item:first-child {
            grid-row: span 1;
            grid-column: span 2;
        }

        .gallery-showcase .gallery-item:nth-child(4) {
            grid-column: span 1;
        }
}

@media (max-width: 600px) {
    .gallery-showcase {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }

        .gallery-showcase .gallery-item:first-child,
        .gallery-showcase .gallery-item:nth-child(4) {
            grid-column: span 1;
        }
}
/* Kurumsal hizmet bölgesi alanı */
.service-area-section {
    background: linear-gradient(135deg, rgba(255,250,242,.96), rgba(247,239,227,.96)), radial-gradient(circle at top left, rgba(200,148,66,.16), transparent 35%);
}

.service-area-box {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 24px;
    align-items: stretch;
}

.service-area-content,
.service-area-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 38px;
}

    .service-area-content h2 {
        font-family: Georgia, 'Times New Roman', serif;
        font-size: clamp(32px, 4vw, 52px);
        line-height: 1.05;
        margin: 16px 0;
    }

    .service-area-content p,
    .service-area-card p {
        color: var(--muted);
    }

.district-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 26px;
}

    .district-list span {
        background: var(--cream-soft);
        border: 1px solid var(--line);
        color: var(--black);
        border-radius: 999px;
        padding: 9px 14px;
        font-size: 13px;
        font-weight: 900;
    }

.service-area-card {
    background: linear-gradient(rgba(17,17,17,.88), rgba(17,17,17,.88)), url('/assets/img/celik-cati-sistemleri-kapak.jpg') center/cover;
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .service-area-card strong {
        display: block;
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 36px;
        line-height: 1.05;
        color: var(--gold-soft);
        margin-bottom: 14px;
    }

    .service-area-card p {
        color: #f3e7d4;
        margin-bottom: 22px;
    }

/* SSS alanı */
.faq-section {
    background: var(--cream-soft);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

    .faq-grid details {
        background: var(--white);
        border: 1px solid var(--line);
        border-radius: 20px;
        padding: 20px 22px;
        box-shadow: 0 15px 38px rgba(0,0,0,.07);
    }

    .faq-grid summary {
        cursor: pointer;
        font-weight: 900;
        color: var(--black);
        list-style: none;
        position: relative;
        padding-right: 32px;
    }

        .faq-grid summary::-webkit-details-marker {
            display: none;
        }

        .faq-grid summary::after {
            content: "+";
            position: absolute;
            right: 0;
            top: 0;
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--cream);
            color: var(--gold);
            display: grid;
            place-items: center;
            font-weight: 900;
        }

    .faq-grid details[open] summary::after {
        content: "-";
    }

    .faq-grid p {
        color: var(--muted);
        margin-top: 12px;
    }

/* Footer sosyal ikonları */
.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    margin: 0 !important;
    border-radius: 50%;
    background: rgba(200, 148, 66, .14);
    border: 1px solid rgba(200, 148, 66, .45);
    color: var(--gold-soft) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: .2s ease;
}

    .footer-social-link:hover {
        background: var(--gold);
        color: var(--black) !important;
        transform: translateY(-3px);
    }

    .footer-social-link svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
    }

/* INALCODE footer link */
.footer-bottom a {
    color: #d6c8b3;
    font-weight: 800;
}

    .footer-bottom a:hover {
        color: var(--gold-soft);
    }

/* Ek responsive */
@media (max-width: 900px) {
    .service-area-box,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .service-area-card {
        min-height: 280px;
    }
}

@media (max-width: 600px) {
    .service-area-content,
    .service-area-card {
        padding: 26px;
    }

    .district-list span {
        width: 100%;
        text-align: center;
    }
}
/* Galeri yazı kayması düzeltme */
.gallery-item {
    position: relative;
    display: block;
}

/* Normal galeri sayfasında yazı sadece hover'da düzgün çıksın */
.gallery-grid .gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,.74), rgba(0,0,0,.08), transparent);
    opacity: 0;
    transition: .25s ease;
    z-index: 1;
}

.gallery-grid .gallery-caption {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 14px;
    z-index: 2;
    color: var(--white);
    font-size: 14px;
    line-height: 1.25;
    font-weight: 900;
    text-shadow: 0 8px 18px rgba(0,0,0,.45);
    opacity: 0;
    transform: translateY(10px);
    transition: .25s ease;
    pointer-events: none;
}

.gallery-grid .gallery-item:hover::after {
    opacity: 1;
}

.gallery-grid .gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

/* Ana sayfadaki vitrin galerisinde yazı altta düzgün dursun */
.gallery-showcase .gallery-item {
    position: relative;
}

.gallery-showcase .gallery-caption {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 16px;
    z-index: 2;
    color: var(--white);
    font-weight: 900;
    font-size: 15px;
    line-height: 1.3;
    text-shadow: 0 8px 18px rgba(0,0,0,.45);
}

/* Lightbox galeri */
body.lightbox-open {
    overflow: hidden;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,.92);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 34px;
}

    .gallery-lightbox.show {
        display: flex;
    }

.gallery-lightbox-content {
    max-width: min(1180px, 88vw);
    max-height: 86vh;
    text-align: center;
}

.gallery-lightbox-img {
    max-width: 100%;
    max-height: 78vh;
    object-fit: contain;
    border-radius: 18px;
    box-shadow: 0 28px 80px rgba(0,0,0,.45);
    background: var(--black);
}

.gallery-lightbox-caption-text {
    color: var(--cream);
    font-weight: 800;
    margin-top: 14px;
    font-size: 15px;
}

.gallery-lightbox-close,
.gallery-lightbox-arrow {
    position: fixed;
    border: 1px solid rgba(255,255,255,.20);
    background: rgba(255,255,255,.10);
    color: var(--white);
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: .2s ease;
    backdrop-filter: blur(10px);
}

    .gallery-lightbox-close:hover,
    .gallery-lightbox-arrow:hover {
        background: var(--gold);
        color: var(--black);
    }

.gallery-lightbox-close {
    top: 22px;
    right: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 34px;
    line-height: 1;
}

.gallery-lightbox-arrow {
    top: 50%;
    transform: translateY(-50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    font-size: 46px;
    line-height: 1;
}

.gallery-lightbox-prev {
    left: 24px;
}

.gallery-lightbox-next {
    right: 24px;
}

@media (max-width: 700px) {
    .gallery-lightbox {
        padding: 18px;
    }

    .gallery-lightbox-img {
        max-height: 72vh;
    }

    .gallery-lightbox-arrow {
        width: 46px;
        height: 46px;
        font-size: 36px;
    }

    .gallery-lightbox-prev {
        left: 10px;
    }

    .gallery-lightbox-next {
        right: 10px;
    }

    .gallery-lightbox-close {
        top: 12px;
        right: 12px;
        width: 42px;
        height: 42px;
        font-size: 30px;
    }
}
/* Sosyal medya ikon sistemi */
.social-mini-link,
.footer-social-link,
.btn-social-action,
.float-whatsapp,
.btn-offer-icon,
.auto-social-icon {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}

    .social-mini-link svg,
    .footer-social-link svg,
    .btn-social-action svg,
    .float-whatsapp svg,
    .btn-offer-icon svg,
    .auto-social-icon svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
    }

/* Üst bar sosyal ikonları */
.social-mini-link,
.auto-social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin: 0 !important;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    color: var(--gold-soft) !important;
    transition: .2s ease;
}

    .social-mini-link:hover,
    .auto-social-icon:hover {
        background: var(--gold);
        color: var(--black) !important;
        transform: translateY(-2px);
    }

    .social-mini-link.whatsapp:hover,
    .auto-social-icon.whatsapp:hover {
        background: #1f9f63;
        border-color: #1f9f63;
        color: var(--white) !important;
    }

/* Footer sosyal ikonları */
.footer-social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 18px;
}

.footer-social-link {
    width: 42px;
    height: 42px;
    margin: 0 !important;
    border-radius: 50%;
    background: rgba(200, 148, 66, .14);
    border: 1px solid rgba(200, 148, 66, .45);
    color: var(--gold-soft) !important;
    transition: .2s ease;
}

    .footer-social-link:hover {
        background: var(--gold);
        color: var(--black) !important;
        transform: translateY(-3px);
    }

    .footer-social-link.whatsapp:hover {
        background: #1f9f63;
        border-color: #1f9f63;
        color: var(--white) !important;
    }

/* Hizmet kartındaki ikon butonu */
.btn-social-action {
    flex: 0 0 48px !important;
    width: 48px;
    padding: 0 !important;
    border-radius: 50%;
}

    .btn-social-action svg {
        width: 23px;
        height: 23px;
    }

/* Ürün detay Teklif Al butonu */
.btn-offer-icon {
    gap: 9px;
}

    .btn-offer-icon svg {
        width: 23px;
        height: 23px;
    }

/* Sağ alttaki sabit WhatsApp logosu */
.float-whatsapp {
    width: 58px;
    height: 58px;
    min-height: 58px;
    padding: 0 !important;
    border-radius: 50%;
    background: #1f9f63;
    color: var(--white);
}

    .float-whatsapp svg {
        width: 30px;
        height: 30px;
    }

/* Footer INALCODE link */
.footer-bottom a {
    color: #d6c8b3;
    font-weight: 800;
}

    .footer-bottom a:hover {
        color: var(--gold-soft);
    }
.hero-content {
    transform: translateX(-90px);
}



@media (max-width: 1200px) {
    .hero-content {
        transform: translateX(-40px);
    }
}

@media (max-width: 900px) {
    .hero-content {
        transform: translateX(0);
    }
}
.hero-content {
    transform: translateX(-90px);
}

@media (max-width: 1200px) {
    .hero-content {
        transform: translateX(-40px);
    }
}

@media (max-width: 900px) {
    .hero-content {
        transform: translateX(0);
    }
}
/* Hizmet kartı buton düzeni */
.service-card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
}

    .service-card-actions .btn {
        min-height: 46px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 900;
    }

.btn-detail-full {
    width: 100%;
    background: var(--black);
    color: var(--white);
}

.service-contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-whatsapp-action,
.btn-call-action {
    gap: 8px;
    padding: 0 14px !important;
    color: var(--white) !important;
    white-space: nowrap;
}

.btn-whatsapp-action {
    background: #1f9f63 !important;
}

.btn-call-action {
    background: var(--gold) !important;
}

.btn-whatsapp-action:hover {
    background: #168652 !important;
    color: var(--white) !important;
}

.btn-call-action:hover {
    background: #b98231 !important;
    color: var(--white) !important;
}

.btn-whatsapp-action svg,
.btn-call-action svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
    flex-shrink: 0;
}

/* Mobilde de aynı yapı kalsın */
@media (max-width: 600px) {
    .service-card-actions {
        gap: 10px;
    }

    .service-contact-actions {
        grid-template-columns: 1fr 1fr;
    }

    .btn-whatsapp-action,
    .btn-call-action {
        font-size: 12px;
        padding: 0 10px !important;
    }

        .btn-whatsapp-action svg,
        .btn-call-action svg {
            width: 18px;
            height: 18px;
        }
}

@media (max-width: 420px) {
    .service-contact-actions {
        grid-template-columns: 1fr;
    }
}
/* Ürün detay sayfası buton düzeni */
.product-detail-actions-new {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 26px;
}

    .product-detail-actions-new .btn {
        min-height: 48px;
        border-radius: 999px;
        font-size: 13px;
        font-weight: 900;
    }

.product-contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

    .product-contact-actions .btn {
        gap: 8px;
        color: var(--white) !important;
        padding: 0 14px !important;
        white-space: nowrap;
    }

    .product-contact-actions svg {
        width: 19px;
        height: 19px;
        fill: currentColor;
        flex-shrink: 0;
    }

@media (max-width: 600px) {
    .product-contact-actions {
        grid-template-columns: 1fr 1fr;
    }

        .product-contact-actions .btn {
            font-size: 12px;
            padding: 0 10px !important;
        }
}

@media (max-width: 420px) {
    .product-contact-actions {
        grid-template-columns: 1fr;
    }
}
/* Modern hizmet / ürün buton tasarımı */
.modern-card-actions,
.product-detail-actions-new {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
}

    .modern-card-actions .btn,
    .product-detail-actions-new .btn {
        min-height: 48px;
        border-radius: 16px;
        font-size: 13px;
        font-weight: 900;
        letter-spacing: .01em;
        box-shadow: none;
    }

/* Siyah yerine modern açık detay butonu */
.btn-detail-modern {
    width: 100%;
    background: linear-gradient(135deg, #fffaf2, #f7efe3) !important;
    color: #1b1a17 !important;
    border: 1px solid rgba(200, 148, 66, .42) !important;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 18px !important;
    position: relative;
    overflow: hidden;
}

    .btn-detail-modern::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(200,148,66,.18), transparent 58%);
        opacity: 0;
        transition: .25s ease;
    }

    .btn-detail-modern span,
    .btn-detail-modern svg {
        position: relative;
        z-index: 2;
    }

    .btn-detail-modern svg {
        width: 22px;
        height: 22px;
        fill: var(--gold);
        flex-shrink: 0;
        transition: .25s ease;
    }

    .btn-detail-modern:hover {
        transform: translateY(-2px);
        border-color: rgba(200, 148, 66, .75) !important;
        box-shadow: 0 14px 28px rgba(200, 148, 66, .16);
    }

        .btn-detail-modern:hover::before {
            opacity: 1;
        }

        .btn-detail-modern:hover svg {
            transform: translateX(4px);
        }

/* WhatsApp ve arama butonları */
.service-contact-actions,
.product-contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-whatsapp-action,
.btn-call-action {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--white) !important;
    padding: 0 14px !important;
    white-space: nowrap;
    border: 0 !important;
    box-shadow: 0 12px 24px rgba(0,0,0,.10);
}

/* WhatsApp orijinal yeşil */
.btn-whatsapp-action {
    background: #1f9f63 !important;
}

    .btn-whatsapp-action:hover {
        background: #168652 !important;
        color: var(--white) !important;
        transform: translateY(-2px);
        box-shadow: 0 16px 30px rgba(31,159,99,.25);
    }

/* Arama gold + beyaz */
.btn-call-action {
    background: linear-gradient(135deg, var(--gold), #d9a64f) !important;
    color: var(--white) !important;
}

    .btn-call-action:hover {
        background: linear-gradient(135deg, #b98231, var(--gold)) !important;
        color: var(--white) !important;
        transform: translateY(-2px);
        box-shadow: 0 16px 30px rgba(200,148,66,.25);
    }

    .btn-whatsapp-action svg,
    .btn-call-action svg {
        width: 19px;
        height: 19px;
        fill: currentColor;
        flex-shrink: 0;
    }

/* Kartların buton alanı daha temiz dursun */
.service-card-body {
    justify-content: space-between;
}

.service-card-actions {
    margin-top: 24px;
}

/* Mobil görünüm */
@media (max-width: 600px) {
    .modern-card-actions,
    .product-detail-actions-new {
        gap: 11px;
    }

    .service-contact-actions,
    .product-contact-actions {
        grid-template-columns: 1fr 1fr;
        gap: 9px;
    }

    .btn-whatsapp-action,
    .btn-call-action {
        font-size: 12px;
        padding: 0 10px !important;
    }

        .btn-whatsapp-action svg,
        .btn-call-action svg {
            width: 18px;
            height: 18px;
        }

    .btn-detail-modern {
        justify-content: center;
    }

        .btn-detail-modern svg {
            position: absolute;
            right: 18px;
        }
}

@media (max-width: 420px) {
    .service-contact-actions,
    .product-contact-actions {
        grid-template-columns: 1fr;
    }

    .btn-whatsapp-action,
    .btn-call-action {
        min-height: 46px;
    }
}
/* INDEX MODERN BUTON SİSTEMİ */
.btn-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.hero-actions-modern {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.hero-contact-actions,
.cta-actions-modern,
.contact-action-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.btn-hero-detail,
.btn-modern-outline {
    background: rgba(255,255,255,.12) !important;
    color: var(--white) !important;
    border: 1px solid rgba(255,255,255,.26) !important;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    gap: 10px;
    min-height: 52px;
    padding: 0 20px !important;
    box-shadow: 0 12px 30px rgba(0,0,0,.16);
}

.btn-hero-detail {
    min-width: 265px;
    justify-content: space-between;
}

    .btn-hero-detail:hover,
    .btn-modern-outline:hover {
        background: rgba(200,148,66,.22) !important;
        border-color: rgba(200,148,66,.62) !important;
        color: var(--white) !important;
        transform: translateY(-2px);
    }

.btn-modern-outline {
    background: linear-gradient(135deg, #fffaf2, #f7efe3) !important;
    color: #1b1a17 !important;
    border: 1px solid rgba(200,148,66,.48) !important;
    backdrop-filter: none;
    box-shadow: 0 12px 26px rgba(200,148,66,.12);
}

    .btn-modern-outline:hover {
        background: linear-gradient(135deg, #fff4df, #f7efe3) !important;
        color: #1b1a17 !important;
        box-shadow: 0 16px 32px rgba(200,148,66,.18);
    }

.btn-inline-modern {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    min-width: 220px;
}

.btn-whatsapp-action,
.btn-call-action {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    border-radius: 16px;
    padding: 0 18px !important;
    color: var(--white) !important;
    border: 0 !important;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(0,0,0,.13);
}

.btn-whatsapp-action {
    background: #1f9f63 !important;
}

    .btn-whatsapp-action:hover {
        background: #168652 !important;
        color: var(--white) !important;
        transform: translateY(-2px);
        box-shadow: 0 18px 34px rgba(31,159,99,.27);
    }

.btn-call-action {
    background: linear-gradient(135deg, var(--gold), #d9a64f) !important;
    color: var(--white) !important;
}

    .btn-call-action:hover {
        background: linear-gradient(135deg, #b98231, var(--gold)) !important;
        color: var(--white) !important;
        transform: translateY(-2px);
        box-shadow: 0 18px 34px rgba(200,148,66,.27);
    }

/* CTA butonları */
.cta-actions-modern {
    min-width: 420px;
}

    .cta-actions-modern .btn {
        width: 100%;
    }

/* İletişim ön izleme */
.contact-actions-modern {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 430px;
    gap: 10px;
}

.contact-main-action {
    width: 100%;
    justify-content: space-between;
}

/* Service area kart içi buton */
.service-area-card .btn-whatsapp-action {
    width: fit-content;
}

/* Hero yazı bloğu sola alınmışsa butonlar da uyumlu kalsın */
.hero-content .btn {
    font-weight: 900;
}

/* Eski siyah buton etkilerini indexte kır */
.about-preview .btn-dark,
.gallery-section .btn-dark,
.contact-preview .btn-dark {
    background: linear-gradient(135deg, #fffaf2, #f7efe3) !important;
    color: #1b1a17 !important;
    border: 1px solid rgba(200,148,66,.48) !important;
}

/* Mobil */
@media (max-width: 900px) {
    .cta-actions-modern,
    .contact-actions-modern {
        min-width: 100%;
        width: 100%;
    }

    .cta-actions-modern,
    .contact-action-pair,
    .hero-contact-actions {
        grid-template-columns: 1fr 1fr;
    }

    .btn-hero-detail {
        min-width: 100%;
        width: 100%;
    }

    .hero-actions-modern {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .hero-contact-actions,
    .cta-actions-modern,
    .contact-action-pair {
        grid-template-columns: 1fr;
    }

    .btn-whatsapp-action,
    .btn-call-action,
    .btn-hero-detail,
    .btn-modern-outline {
        width: 100%;
        min-height: 50px;
        font-size: 13px;
    }

    .btn-inline-modern {
        min-width: 100%;
        width: 100%;
    }

    .service-area-card .btn-whatsapp-action {
        width: 100%;
    }
}
/* Header Bize Ulaşın modern CTA */
.nav-cta-modern {
    min-height: 46px;
    padding: 0 20px !important;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), #d9a64f) !important;
    color: var(--white) !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 900;
    box-shadow: 0 12px 26px rgba(200,148,66,.24);
    border: 1px solid rgba(255,255,255,.10);
}

    .nav-cta-modern svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
        flex-shrink: 0;
    }

    .nav-cta-modern:hover {
        background: linear-gradient(135deg, #b98231, var(--gold)) !important;
        color: var(--white) !important;
        transform: translateY(-2px);
        box-shadow: 0 16px 32px rgba(200,148,66,.32);
    }
/* Mobil hero WhatsApp + Direkt Ara yan yana */
@media (max-width: 600px) {
    .hero-contact-actions {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 10px !important;
        width: 100%;
    }

        .hero-contact-actions .btn-whatsapp-action,
        .hero-contact-actions .btn-call-action {
            width: 100% !important;
            min-height: 50px;
            padding: 0 10px !important;
            font-size: 12px;
            border-radius: 16px;
        }

        .hero-contact-actions .btn-icon,
        .hero-contact-actions svg {
            width: 17px;
            height: 17px;
        }
}
/* İletişim sayfası modern tasarım */
.contact-hero-modern {
    position: relative;
}

.contact-page-modern {
    background: radial-gradient(circle at top left, rgba(200,148,66,.12), transparent 32%), linear-gradient(135deg, var(--cream-soft), var(--cream));
}

.contact-intro-box {
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 24px;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow);
    margin-bottom: 28px;
}

    .contact-intro-box h2 {
        font-family: Georgia, 'Times New Roman', serif;
        font-size: clamp(30px, 4vw, 48px);
        line-height: 1.08;
        margin: 14px 0;
    }

    .contact-intro-box p {
        color: var(--muted);
    }

.contact-intro-actions {
    display: grid;
    gap: 10px;
}

.contact-grid-modern {
    align-items: stretch;
}

.contact-info-modern,
.contact-form-modern {
    position: relative;
    overflow: hidden;
}

    .contact-info-modern::before,
    .contact-form-modern::before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        height: 5px;
        background: linear-gradient(90deg, var(--gold), rgba(200,148,66,.2), transparent);
    }

.contact-info-list-modern {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.contact-info-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 14px;
    align-items: flex-start;
    background: var(--cream-soft);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: var(--gold);
    box-shadow: 0 12px 24px rgba(200,148,66,.18);
}

    .contact-info-icon svg {
        width: 22px;
        height: 22px;
        fill: currentColor;
    }

    .contact-info-icon.whatsapp {
        background: #1f9f63;
    }

    .contact-info-icon.call {
        background: linear-gradient(135deg, var(--gold), #d9a64f);
    }

    .contact-info-icon.facebook {
        background: #1877f2;
    }

    .contact-info-icon.address {
        background: #1b1a17;
        font-size: 20px;
    }

.contact-info-item strong {
    display: block;
    color: var(--black);
    font-weight: 900;
    margin-bottom: 4px;
}

.contact-info-item a {
    display: block;
    color: var(--gold);
    font-weight: 900;
    margin-top: 2px;
}

.contact-info-item p {
    color: var(--muted);
}

.contact-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 24px;
}

.contact-form-modern form {
    margin-top: 24px;
}

.contact-form-modern input,
.contact-form-modern select,
.contact-form-modern textarea {
    background: var(--white);
    border: 1px solid rgba(200,148,66,.32);
}

.form-submit-modern {
    width: 100%;
    margin-top: 4px;
}

/* İletişim sayfası mobil */
@media (max-width: 900px) {
    .contact-intro-box {
        grid-template-columns: 1fr;
    }

    .contact-card-actions {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .contact-intro-box,
    .contact-info-modern,
    .contact-form-modern {
        padding: 26px;
    }

    .contact-info-item {
        grid-template-columns: 42px 1fr;
        padding: 14px;
    }

    .contact-info-icon {
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .contact-card-actions {
        grid-template-columns: 1fr;
    }
}
/* Sayfa açılış ve scroll animasyonları */
body {
    opacity: 0;
}

    body.page-loaded {
        opacity: 1;
        transition: opacity .35s ease;
    }

.reveal-item {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

    .reveal-item.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

/* Hero daha özel gelsin */
.hero-content.reveal-item {
    transform: translateY(28px) translateX(-90px);
}

    .hero-content.reveal-item.is-visible {
        transform: translateY(0) translateX(-90px);
    }

@media (max-width: 1200px) {
    .hero-content.reveal-item {
        transform: translateY(28px) translateX(-40px);
    }

        .hero-content.reveal-item.is-visible {
            transform: translateY(0) translateX(-40px);
        }
}

@media (max-width: 900px) {
    .hero-content.reveal-item,
    .hero-content.reveal-item.is-visible {
        transform: translateY(0) translateX(0);
    }
}

/* Kart hover hareketleri daha premium dursun */
.quick-card,
.service-card,
.process-card,
.contact-card,
.product-gallery,
.product-info,
.faq-grid details {
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

    .quick-card:hover,
    .process-card:hover,
    .contact-card:hover,
    .faq-grid details:hover {
        transform: translateY(-4px);
        box-shadow: 0 22px 55px rgba(0,0,0,.12);
        border-color: rgba(200,148,66,.45);
    }

/* Hareket istemeyen cihazlarda kapat */
@media (prefers-reduced-motion: reduce) {
    body,
    body.page-loaded,
    .reveal-item,
    .reveal-item.is-visible {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}
/* Index hero üst buton modern düzeltme */
.hero-service-link {
    min-height: 52px;
    min-width: 265px;
    padding: 0 10px 0 22px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: .01em;
    background: linear-gradient(135deg, rgba(255,255,255,.14), rgba(255,255,255,.05));
    border: 1px solid rgba(255,255,255,.22);
    box-shadow: 0 16px 36px rgba(0,0,0,.18);
    backdrop-filter: blur(12px);
    transition: .25s ease;
}

    .hero-service-link:hover {
        transform: translateY(-2px);
        border-color: rgba(224,184,110,.65);
        background: linear-gradient(135deg, rgba(200,148,66,.26), rgba(255,255,255,.08));
        box-shadow: 0 20px 42px rgba(0,0,0,.24);
    }

.hero-service-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--gold), var(--gold-soft));
    color: var(--white);
    box-shadow: 0 10px 24px rgba(200,148,66,.28);
    transition: .25s ease;
}

    .hero-service-icon svg {
        width: 20px;
        height: 20px;
        fill: currentColor;
    }

.hero-service-link:hover .hero-service-icon {
    transform: translateX(3px);
}

/* Eski hero detail buton etkisini kır */
.btn-hero-detail {
    display: none !important;
}

/* Mobilde üst buton daha temiz dursun */
@media (max-width: 600px) {
    .hero-service-link {
        width: 100%;
        min-width: 0;
        min-height: 50px;
        padding-left: 18px;
        border-radius: 17px;
        font-size: 13px;
    }

    .hero-service-icon {
        width: 36px;
        height: 36px;
        border-radius: 13px;
    }
}
/* Hizmet kartı Detayları İncele modern link tasarımı */
.service-detail-link {
    width: 100%;
    min-height: 44px;
    padding: 0 14px 0 16px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(200,148,66,.08);
    border: 1px solid rgba(200,148,66,.24);
    color: #1b1a17;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .01em;
    transition: .22s ease;
}

    .service-detail-link:hover {
        background: rgba(200,148,66,.15);
        border-color: rgba(200,148,66,.48);
        transform: translateY(-1px);
    }

.service-detail-arrow {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: var(--white);
    color: var(--gold);
    border: 1px solid rgba(200,148,66,.26);
    transition: .22s ease;
    flex-shrink: 0;
}

    .service-detail-arrow svg {
        width: 18px;
        height: 18px;
        fill: currentColor;
    }

.service-detail-link:hover .service-detail-arrow {
    background: var(--gold);
    color: var(--white);
    transform: translateX(3px);
}

/* Eski detay butonu CSS'i kalırsa ez */
.btn-detail-modern {
    display: none !important;
}