@charset "utf-8";

/* === MOBİL HEADER === */
@media (max-width: 768px) {
    header.main-header {
        padding: 10px 15px;
    }

    .logo-holder {
        text-align: center;
        float: none;
    }

    .nav-holder {
        display: none !important;
    }

    .nav-button-wrap {
        display: block !important;
        position: absolute;
        right: 50px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 99999;
    }

    body {
        overflow-x: hidden;
    }
}

/* SUBMENU */
.submenu {
    position: absolute;
    background: #fff;
    min-width: 230px;
    display: none;
    padding: 12px 0;
    z-index: 9999;
}

nav ul li:hover > .submenu {
    display: block;
}

.submenu li {
    position: relative;
}

.submenu li a {
    color: #000;
    padding: 10px 20px;
    display: block;
    font-size: 13px;
    white-space: nowrap;
}

.submenu li a:hover {
    background: #c59d5f;
    color: #000;
}

.sub-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    background: #fff;
    min-width: 220px;
    display: none;
}

.submenu li:hover > .sub-submenu {
    display: block;
}

/* SEC2 MODERN CARD */
#sec2 {
    padding: 100px 0;
    background: #f6f6f6;
}

#sec2 .content-wrap {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    animation: secFade 1s ease forwards;
}

#sec2 .bold-title {
    font-size: 32px;
    margin-bottom: 20px;
}

#sec2 p {
    font-size: 15px;
    line-height: 28px;
    color: #444;
}

#sec2 .btn {
    background: #000;
    color: #fff;
    padding: 12px 34px;
    border-radius: 30px;
    display: inline-block;
    transition: .3s;
}

#sec2 .btn:hover {
    background: #c59d5f;
    color: #000;
}

#sec2 .box-item {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,.2);
    transition: .4s;
}

#sec2 .box-item:hover {
    transform: scale(1.03);
}

#sec2 .box-item img {
    transition: .4s;
}

#sec2 .box-item:hover img {
    transform: scale(1.1);
}

@keyframes secFade {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HİZMETLER */
.hizmet-intro {
    text-align: center;
    margin-bottom: 50px;
}

.hizmet-intro h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.hizmet-intro p {
    max-width: 760px;
    margin: auto;
    color: #666;
    line-height: 26px;
    font-size: 15px;
}

.hizmet-kutu {
    position: relative;
}

.hizmet-popup {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 5;
}

.hizmet-kutu:hover .hizmet-popup {
    opacity: 1;
    pointer-events: auto;
}

.hizmet-popup a {
    color: #fff;
    background: rgba(255,255,255,0.1);
    padding: 8px 22px;
    border-radius: 30px;
    font-size: 13px;
    transition: 0.3s;
}

.hizmet-popup a:hover {
    background: #c59d5f;
    color: #000;
}

.grid-item {
    text-align: center;
}

/* İSTATİSTİK */
.hizmet-istatistik {
    padding: 80px 0;
    background: #111;
    color: #fff;
}

.istatistik-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    text-align: center;
}

.istatistik-box {
    animation: fadeUp 0.9s ease forwards;
    opacity: 0;
}

.istatistik-box:nth-child(1) { animation-delay: 0.1s; }
.istatistik-box:nth-child(2) { animation-delay: 0.25s; }
.istatistik-box:nth-child(3) { animation-delay: 0.4s; }
.istatistik-box:nth-child(4) { animation-delay: 0.55s; }

.istatistik-box h3 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #c59d5f;
    font-weight: 700;
}

.istatistik-box p {
    font-size: 15px;
    line-height: 28px;
    color: #ddd;
    letter-spacing: 1px;
}

/* SÜREÇ */
.hizmet-surec {
    padding: 90px 0;
    background: #f8f8f8;
    text-align: center;
}

.hizmet-surec h2 {
    font-weight: 700;
}

.surec-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
    margin-top: 50px;
}

.surec-box {
    animation: fadeUp 0.9s ease forwards;
    opacity: 0;
}

.surec-box:nth-child(1) { animation-delay: 0.1s; }
.surec-box:nth-child(2) { animation-delay: 0.25s; }
.surec-box:nth-child(3) { animation-delay: 0.4s; }
.surec-box:nth-child(4) { animation-delay: 0.55s; }

.surec-box span {
    font-size: 28px;
    color: #c59d5f;
    font-weight: bold;
}

.surec-box h4 {
    margin: 15px 0 10px;
}

.surec-box p {
    font-size: 15px;
    line-height: 28px;
    color: #444;
}

/* NEDEN BİZ */
.neden-biz {
    padding: 90px 0;
    background: #fff;
    text-align: center;
}

.neden-biz h2 {
    font-weight: 700;
}

.neden-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
    margin-top: 40px;
}

.neden-box {
    border: 1px solid #eee;
    padding: 18px;
    font-size: 15px;
    line-height: 28px;
    color: #444;
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.neden-box:nth-child(1) { animation-delay: 0.1s; }
.neden-box:nth-child(2) { animation-delay: 0.2s; }
.neden-box:nth-child(3) { animation-delay: 0.3s; }
.neden-box:nth-child(4) { animation-delay: 0.4s; }
.neden-box:nth-child(5) { animation-delay: 0.5s; }
.neden-box:nth-child(6) { animation-delay: 0.6s; }

/* CTA */
.hizmet-cta {
    padding: 90px 0;
    background: linear-gradient(135deg,#111,#333);
    color: #fff;
    text-align: center;
}

.hizmet-cta h2 {
    font-weight: 700;
    animation: zoomIn 0.8s ease forwards;
    opacity: 0;
}

.hizmet-cta p {
    max-width: 700px;
    margin: 15px auto 30px;
    font-size: 15px;
    line-height: 28px;
    animation: zoomIn 0.8s ease forwards;
    opacity: 0;
}

.cta-btn {
    display: inline-block;
    padding: 14px 40px;
    background: #c59d5f;
    color: #000;
    border-radius: 40px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 1px;
    transition: 0.3s ease;
    animation: zoomIn 0.8s ease forwards;
    opacity: 0;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    background: #fff;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* PREMIUM ABOUT */
.premium-about {
    padding: 120px 0;
    background: #f9f9f9;
}

.premium-about-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.premium-about-content {
    width: 50%;
    animation: fadeLeft 1.1s ease;
}

.about-badge {
    display: inline-block;
    padding: 6px 18px;
    background: #c59d5f;
    color: #fff;
    font-size: 12px;
    letter-spacing: 2px;
    border-radius: 30px;
    margin-bottom: 15px;
}

.premium-title {
    font-size: 42px;
    font-weight: 800;
    color: #111;
    margin-bottom: 10px;
}

.premium-subtitle {
    font-size: 18px;
    color: #888;
    margin-bottom: 25px;
}

.premium-text {
    font-size: 15px;
    line-height: 30px;
    color: #555;
    margin-bottom: 35px;
}

.premium-buttons {
    display: flex;
    gap: 15px;
}

.premium-btn {
    background: #111;
    color: #fff;
    padding: 14px 30px;
    border-radius: 40px;
    font-size: 13px;
    letter-spacing: 1px;
    transition: 0.4s;
}

.premium-btn:hover {
    background: #c59d5f;
    transform: translateY(-3px);
}

.premium-btn.outline {
    background: transparent;
    border: 1px solid #111;
    color: #111;
}

.premium-btn.outline:hover {
    background: #111;
    color: #fff;
}

.premium-about-image {
    width: 50%;
    animation: fadeRight 1.1s ease;
}

.image-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.25);
}

.image-box img {
    width: 100%;
    transition: 0.6s ease;
}

.image-box:hover img {
    transform: scale(1.1);
}

.premium-zoom {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: #c59d5f;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: 0.4s;
}

.premium-zoom:hover {
    background: #000;
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ABOUT STORY */
.about-story {
    padding: 90px 0;
    background: #fff;
}

.about-story-inner {
    max-width: 900px;
    margin: auto;
    text-align: center;
    animation: fadeUp 1s ease;
}

.about-story h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.about-story p {
    font-size: 16px;
    line-height: 30px;
    color: #555;
    margin-bottom: 20px;
}

/* ABOUT VISION */
.about-vision {
    padding: 90px 0;
    background: #f7f7f7;
}

.vision-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.vision-box {
    flex: 1;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 60px rgba(0,0,0,0.08);
    transition: 0.4s;
    text-align: center;
}

.vision-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

.vision-box h3 {
    margin: 20px 0 10px;
    font-size: 22px;
    font-weight: 800;
}

.vision-box p {
    padding: 0 25px 30px;
    font-size: 15px;
    line-height: 26px;
    color: #555;
    font-weight: 700;
}

.vision-box:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 90px rgba(0,0,0,0.18);
}

.vision-box:hover img {
    transform: scale(1.08);
    filter: brightness(0.85);
}

/* ABOUT WHY US */
.about-whyus {
    padding: 90px 0;
    background: #111;
    color: #fff;
    text-align: center;
}

.center-title {
    margin-bottom: 50px;
    font-size: 36px;
}

.whyus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.why-box {
    background: #1b1b1b;
    padding: 25px;
    border-radius: 16px;
    transition: 0.3s;
}

.why-box:hover {
    background: #c59d5f;
    color: #000;
    transform: translateY(-6px);
}

/* MODERN GALLERY HOVER */
section#sec2.modern-gallery .modern-card .box-item {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

section#sec2.modern-gallery .modern-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

section#sec2.modern-gallery .modern-card:hover img {
    transform: scale(1.08);
}

section#sec2.modern-gallery .modern-card .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.65);
    opacity: 0;
    transition: opacity .4s ease;
    z-index: 1;
}

section#sec2.modern-gallery .modern-card:hover .overlay {
    opacity: 1;
}

section#sec2.modern-gallery .modern-card .card-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    text-align: center;
    color: #fff;
    z-index: 2;
    opacity: 0;
    transition: all .45s ease;
}

section#sec2.modern-gallery .modern-card:hover .card-content {
    opacity: 1;
    transform: translate(-50%, -50%);
}

section#sec2.modern-gallery .modern-card .card-submenu {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

section#sec2.modern-gallery .modern-card .card-submenu a {
    background: rgba(255,255,255,0.12);
    color: #fff;
    padding: 9px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .3px;
    display: inline-block;
    backdrop-filter: blur(6px);
    transition: all .25s ease;
}

section#sec2.modern-gallery .modern-card .card-submenu a:hover {
    background: #caa35a;
    color: #000;
    transform: scale(1.05);
}

section#sec2.modern-gallery .grid-item {
    background: #fff;
}

section#sec2.modern-gallery .all-btn-wrap {
    margin-top: 60px;
    text-align: center;
}

section#sec2.modern-gallery .all-btn {
    display: inline-block;
    padding: 14px 42px;
    border-radius: 999px;
    background: linear-gradient(135deg, #111111, #c59d5f);
    color: #ffffff;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 12px 30px rgba(0,0,0,0.22);
    text-decoration: none;
    transition: all 0.35s ease;
}

section#sec2.modern-gallery .all-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 45px rgba(0,0,0,0.3);
    background: linear-gradient(135deg, #c59d5f, #f3dfb0);
}

section#sec2.modern-gallery .all-btn:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 8px 20px rgba(0,0,0,0.22);
}

/* ORTA BREAKPOINT (ÖNCE EKSİK OLAN BLOK) */
@media (max-width: 992px) {
    .col-md-7,
    .col-md-5,
    .col-md-8,
    .col-md-4 {
        width: 100%;
    }

    .about-wrap,
    .blog-text {
        padding: 25px;
    }

    .premium-about-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .premium-about-content,
    .premium-about-image {
        width: 100%;
        text-align: center;
    }

    .premium-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    h1 { font-size: 34px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }

    .istatistik-grid,
    .surec-grid,
    .neden-grid {
        grid-template-columns: 1fr;
    }
}

/* MOBİL GENEL */
@media (max-width: 768px) {
    .nav-holder {
        display: none;
    }

    .nav-button-wrap {
        display: block;
    }

    header.main-header {
        padding: 10px 15px;
    }

    .logo-holder img {
        height: 65px !important;
    }

    .gallery-items.three-coulms {
        grid-template-columns: 1fr;
    }

    .modern-card,
    .gallery-item {
        margin-bottom: 25px;
    }

    .section-head h2 {
        font-size: 26px;
    }

    .section-head p {
        font-size: 14px;
    }

    .all-btn {
        padding: 12px 28px;
        font-size: 12px;
    }

    .blog-sidebar {
        position: relative !important;
        top: 0 !important;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: flex !important;
    }

    #sec2 .content-wrap {
        padding: 30px;
    }

    .hizmet-popup {
        gap: 8px;
    }

    .hizmet-popup a {
        font-size: 12px;
        padding: 6px 16px;
    }

    section#sec2.modern-gallery .modern-card .box-item {
        min-height: 260px !important;
    }

    section#sec2.modern-gallery .modern-card .card-content {
        top: auto !important;
        bottom: 14px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 90% !important;
        max-height: 170px !important;
        overflow-y: auto !important;
        padding: 12px 10px !important;
        background: rgba(0,0,0,0.6) !important;
        border-radius: 16px !important;
        opacity: 1 !important;
    }

    section#sec2.modern-gallery .modern-card .card-submenu {
        flex-direction: column !important;
        gap: 8px !important;
        margin-top: 8px !important;
    }

    section#sec2.modern-gallery .modern-card .card-submenu a {
        width: 100% !important;
        text-align: center !important;
        font-size: 12px !important;
        padding: 7px 12px !important;
    }

    section#sec2.modern-gallery .modern-card .overlay {
        opacity: 1;
    }

    section#sec2.modern-gallery .modern-card .card-content {
        opacity: 1;
    }

    section#sec2.modern-gallery .modern-card .card-content::-webkit-scrollbar {
        width: 4px;
    }

    section#sec2.modern-gallery .modern-card .card-content::-webkit-scrollbar-thumb {
        background: rgba(255,255,255,0.4);
        border-radius: 10px;
    }
}

@media (max-width: 480px) {
    .logo-holder img {
        height: 55px !important;
    }

    .section-head h2 {
        font-size: 22px;
    }

    .section-head p {
        font-size: 13px;
        line-height: 22px;
    }

    .card-content h3 {
        font-size: 16px;
    }

    .card-submenu a {
        font-size: 12px;
        padding: 6px 14px;
    }

    .all-btn {
        padding: 10px 22px;
        font-size: 11px;
    }
}

img {
    max-width: 100%;
    display: block;
}

/* LOGO RESPONSIVE */
header.main-header .logo-holder img {
    height: 65px !important;
    width: auto !important;
    max-width: 100% !important;
    transition: all 0.3s ease;
}

@media (max-width: 1200px) {
    header.main-header .logo-holder img {
        height: 15px !important;
    }
}

@media (max-width: 992px) {
    header.main-header .logo-holder img {
        height: 28px !important;
    }
}

@media (max-width: 768px) {
    header.main-header .logo-holder {
        text-align: center !important;
        float: none !important;
    }

    header.main-header .logo-holder img {
        height: 33px !important;
        margin: 0 auto !important;
    }
}

@media (max-width: 480px) {
    header.main-header .logo-holder img {
        height: 28px !important;
    }
}

@media (max-width: 360px) {
    header.main-header .logo-holder img {
        height: 17px !important;
    }
}

/* MENÜ NOKTALARINI VE TAŞMAYI TEMİZLEME */
.nav-holder nav ul,
.nav-holder nav li {
    list-style: none !important;
    list-style-type: none !important;
}

.nav-holder nav > ul > li::before,
.nav-holder nav > ul > li::after,
.nav-holder nav li::marker {
    content: none !important;
    display: none !important;
    width: 0 !important;
}

/* ANA MENÜYÜ TEK SATIRA HİZALA */
.nav-holder nav > ul {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 5px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* MENÜ ELEMANLARI */
.nav-holder nav > ul > li {
    float: none !important;
    display: block !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.nav-holder nav > ul > li > a {
    display: inline-block !important;
    padding: 0 25px !important;
    line-height: 70px !important;
    height: 70px !important;
    text-decoration: none !important;
    border: none !important;
}

/* HEADER FLEX */
header.main-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.logo-holder {
    float: none !important;
    flex-shrink: 0 !important;
    margin-right: auto !important;
}

.nav-holder {
    float: none !important;
    position: static !important;
    margin-right: 100px !important;
    margin-left: 0px !important;
    display: flex !important;
    justify-content: center !important;
    width: auto !important;
    top: 0 !important;
    right: auto !important;
}

/* DROPDOWN KONUM */
.nav-holder nav li {
    position: relative !important;
}

.nav-holder nav li ul,
.nav-holder nav li .submenu {
    margin-left: 0 !important;
    top: 100% !important;
    right: 20 !important;
    transform: none !important;
    box-sizing: border-box !important;
    background:#fff !important;
    content: none !important;
    border: none !important;
}

.nav-holder nav > ul > li:last-child ul {
    left: 15px !important;
    right: 0 !important;
}

/* ALT ÇİZGİLERİ KALDIR */
.nav-holder nav li a,
.nav-holder nav li a:before,
.nav-holder nav li a:after,
.nav-holder nav li ul li a,
.nav-holder nav li ul li a:before,
.nav-holder nav li ul li a:after {
    text-decoration: none !important;
    border: none !important;
    box-shadow: none !important;
    background-image: none !important;
}

/* Küçük ekranlarda logoyu biraz küçült */
@media (max-width: 768px) {
    .logo-holder {
        text-align: left !important;
    }

    .logo-holder img {
        height: 28px !important;
    }
}

@media (max-width: 480px) {
    .logo-holder img {
        height: 24px !important;
    }
}

/* DESKTOP ALT MENÜ YAZI RENGİ */
.submenu li a,
.sub-submenu li a {
    color: #111 !important;
    font-weight: 500;
}

.submenu li a:hover,
.sub-submenu li a:hover {
    color: #c59d5f !important;
    background: #f7f7f7 !important;
}

/* HAMBURGER BUTON */
.nav-button-wrap {
    width: 42px;
    height: 42px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav-button span {
    background: #111;
}

@media (max-width: 992px) {
    .nav-button-wrap {
        display: flex;
    }

    .nav-holder {
        display: none !important;
    }
}

/* MOBİL MENÜ KUTUSU */
.menu-wrap {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 99999;
    box-shadow: -20px 0 50px rgba(0,0,0,0.25);
    transition: right 0.45s cubic-bezier(.4,0,.2,1);
    overflow-y: auto;
}

.menu-wrap.active {
    right: 0;
}

/* MENÜ ÜST BAR */
.menu-header {
    height: 70px;
    padding: 0 18px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
}

.menu-logo img {
    height: 32px;
}

.close-menu-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f2f2f2;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

.close-menu-btn:hover {
    background: #c59d5f;
    color: #fff;
}

/* MOBİL MENÜ LİSTESİ */
.mobile-menu {
    list-style: none;
    margin: 0;
    padding: 10px 0;
}

.mobile-menu > li {
    position: relative;
    border-bottom: 1px solid #f1f1f1;
}

.mobile-menu > li > a {
    display: block;
    padding: 18px 55px 18px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    letter-spacing: .3px;
}

.mobile-menu > li > a:hover {
    background: #fafafa;
    color: #c59d5f;
}

/* OK BUTONU */
.submenu-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: #c59d5f;
    cursor: pointer;
    transition: 0.3s;
}

.submenu-toggle.open {
    background: #c59d5f;
    color: #fff;
}

.submenu-toggle.open i {
    transform: rotate(180deg);
    transition: 0.3s;
}

/* ALT MENÜ – SLIDE */
.mobile-sub {
    display: none;
    background: #fafafa;
    padding: 6px 0;
    border-top: 1px solid #eee;
}

.mobile-sub li a {
    display: block;
    padding: 14px 30px;
    font-size: 13px;
    font-weight: 500;
    color: #444;
    text-decoration: none;
}

.mobile-sub li a:hover {
    background: #fff;
    color: #c59d5f;
}

/* Alt başlık gibi duranlar */
.mobile-sub li a[style*="font-weight:800"] {
    background: #f3f3f3;
    color: #c59d5f !important;
    font-size: 12px;
    letter-spacing: 1px;
}

/* ALT SOSYAL ALAN */
.mobile-bottom-area {
    padding: 20px;
    border-top: 1px solid #eee;
}

.mob-social-btns {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.mob-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 13px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    transition: 0.3s;
}

.mob-btn i {
    margin-right: 8px;
    font-size: 16px;
}

.mob-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #1ebc57);
}

.mob-btn.instagram {
    background: linear-gradient(45deg,#f09433,#dc2743,#bc1888);
}

.mob-btn:hover {
    opacity: 0.9;
}

/* BODY KİLİT */
body.menu-lock {
    overflow: hidden;
}

/* iOS beyaz boşluk fix */
html, body {
    background: #fff;
    overscroll-behavior-y: none;
}

/* Menü en tepeden başlasın */
.menu-wrap {
    top: 0 !important;
    padding-top: env(safe-area-inset-top);
}

.menu-inner {
    padding-top: 0 !important;
}

.menu-wrap {
    transform: translateX(100%);
    right: 0 !important;
    transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}

.menu-wrap.active {
    transform: translateX(0);
}

@media (max-width: 768px) {
    .menu-header {
        position: sticky;
        top: 0;
        z-index: 99998;
        background: #fff;
        padding: 12px 16px;
        border-bottom: 1px solid #eee;
    }

    .close-menu-btn {
        position: sticky;
        top: 0;
        z-index: 99999;
        background: #fff;
        border-radius: 50%;
        width: 42px;
        height: 42px;
        display: flex;
       align-items: center;
        justify-content: center;
        box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        margin-left: auto;
    }
}

/* ALT HİZMET SAYFASI */
.alt-hizmet-page{
    padding:70px 0;
    background:#fdfdfd;
}

.alt-hizmet-layout{
    max-width:1320px;
    margin:auto;
    display:grid;
    grid-template-columns:3fr 1fr;
    gap:50px;
    padding:0 20px;
}

@media(max-width:1024px){
    .alt-hizmet-layout{grid-template-columns:1fr;}
}

.text-content-card span{
    color:#c59d5f;
    font-size:12px;
    font-weight:700;
}

.text-content-card h1{
    font-size:32px;
    margin:12px 0;
}

.text-content-card p{
    color:#666;
}

.slider-container{
    position:relative;
    border-radius:20px;
    overflow:hidden;
    background:#000;
    box-shadow:0 25px 50px rgba(0,0,0,.15);
    margin-top:25px;
}

.slider-container img{
    width:100%;
    height:420px;
    object-fit:cover;
    display:block;
}

@media(max-width:768px){
    .slider-container img{height:260px;}
}

.custom-nav-btn{
    position:absolute;
    top:50%;
    width:44px;
    height:44px;
    background:rgba(0,0,0,.65);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:20;
    transform:translateY(-50%);
}

.prev-btn{left:15px;}
.next-btn{right:15px;}

.description-text{
    margin-top:25px;
    max-height:160px;
    overflow:hidden;
    position:relative;
    transition:.5s;
}

.description-text:not(.expanded)::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:70px;
    background:linear-gradient(transparent,#fdfdfd);
}

.description-text.expanded{
    max-height:4000px;
}

.btn-read-more{
    margin-top:18px;
    border:1px solid #111;
    background:none;
    padding:12px 28px;
    font-weight:700;
    cursor:pointer;
}

.btn-read-more:hover{
    background:#111;
    color:#fff;
}

.sidebar-card{
    background:#fff;
    padding:32px;
    border-radius:18px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

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

.service-link{
    display:flex;
    justify-content:space-between;
    padding:13px 14px;
    color:#444;
    border-radius:10px;
    transition:.3s;
    text-decoration:none;
}

.service-link:hover{
    background:#f7f7f7;
    color:#c59d5f;
}

.service-link.active{
    background:#111;
    color:#fff;
}

/* ============================
   SITE LOADER - LOGOLU
============================ */
#site-loader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s ease, visibility .6s ease;
}

#site-loader.hide {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    text-align: center;
}

.loader-inner img {
    width: 140px;
    margin-bottom: 25px;
    animation: logoPulse 1.6s infinite ease-in-out;
}

.loader-line {
    width: 160px;
    height: 3px;
    background: #e0e0e0;
    border-radius: 50px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-line::after {
    content: "";
    display: block;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, #c59d5f, #000);
    animation: loadingMove 1.4s infinite ease-in-out;
}

/* ANİMASYONLAR */
@keyframes loadingMove {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(200%); }
}

@keyframes logoPulse {
    0%   { transform: scale(1); opacity: .7; }
    50%  { transform: scale(1.08); opacity: 1; }
    100% { transform: scale(1); opacity: .7; }
}

/* MOBİL LOGO BOYUT */
@media (max-width: 768px) {
    .loader-inner img {
        width: 110px;
    }
}

.fs-gallery-wrap .bg {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    display: block !important;
    opacity: 1 !important;
    background-size: cover !important;
    background-position: center !important;
    z-index: 1 !important;
}

