*{margin:0;padding:0;box-sizing:border-box;}
body{
     font-family: 'Nunito', sans-serif !important;
    background:#111;
    color:white;
    overflow-x:hidden;
}

.navbar {
    width: 100%;
    position: fixed;
    top: 0;
    padding: 20px 60px;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo-text {
    font-size: 26px;
    font-weight: 700;
    color: #ffb300;
    text-shadow: 0 0 10px #ffb300;
    margin: 0;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: .3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #ffb300;
}


/* HERO */
.hero{
    margin-top:130px;
    padding:60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}
.hero img{
    width:45%;
    border-radius:20px;
}
.hero-text{
    width:50%;
}
.hero-text h1{
    font-size:48px;
    color:#ffb300;
    margin-bottom:20px;
}
.hero-text p{
    font-size:18px;
    opacity:.8;
}

/* 3 FOTO */
.small-photos{
    display:flex;
    justify-content:center;
    gap:20px;
    padding:40px 60px;
}
.small-photos img{
    width:30%;
    height:170px;
    object-fit:cover;
    border-radius:15px;
}

/* GALERİ BUTON */
.gallery-btn {
    text-align: center;
    margin-bottom: 60px;
}


.gallery-btn a {
    position: relative;
    background: #ffb300;
    padding: 15px 30px;
    border-radius: 12px;
    font-size: 20px;
    text-decoration: none;
    color: black;
    font-weight: 700;
    display: inline-block;
    overflow: hidden; 
}

/* Işık çizgisi */
.gallery-btn a::after {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.8) 50%,
        transparent 100%
    );
    transform: skewX(-25deg);
    opacity: 0;
}


.gallery-btn a:hover::after {
    opacity: 1;
    animation: shine 0.9s infinite linear;
}

/* soldan sağa hareket */
@keyframes shine {
    0%   { left: -60%; }
    100% { left: 110%; }
}


/* HİZMETLER */
.services{
    padding:80px 0;
    text-align:center;
}
.services h2{
    font-size:45px;
    color:#ffb300;
    margin-bottom:40px;
}

.service-wrapper{
    width:92%;
    margin:auto;
    position:relative;
    overflow:visible;
}

.service-track{
    display:flex;
    gap:40px;
    transition:0.5s;
}

.service-card{
    min-width:33.33%;
    padding-bottom:30px;
    text-align:center;
}

.service-item{
    position:relative;
    width:100%;
    height:350px;
    border-radius:15px;
    overflow:hidden;
    cursor:pointer;
}
.service-item img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s ease;
}

.service-info{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
    padding:30px;
    opacity:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    transition:.4s ease;
}

.service-info h3{
    color:#ffb300;
    font-size:24px;
    margin-bottom:10px;
}

.service-info p{
    font-size:15px;
}

/* Hover efekti */
.service-item:hover img{
    transform:scale(1.1);
    filter:brightness(40%);
}
.service-item:hover .service-info{
    opacity:1;
}

/* Foto altı başlık */
.service-title{
    margin-top:12px;
    font-size:20px;
    font-weight:600;
    color:#ffb300;
}

/* Ok butonları */

.srv-arrow.n1 {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    background: #111;
    box-shadow: 0 0 15px rgba(255, 179, 0, 0.8);
    cursor: pointer;
    font-size: 26px;
    color: #ffb300;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .25s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
}


.srv-arrow.n1.left::before { content: "‹"; }
.srv-arrow.n1.right::before { content: "›"; }

/* Hover efekti */
.srv-arrow.n1:hover {
    transform: translateY(-50%) scale(1.17);
    box-shadow: 0 0 22px rgba(255, 179, 0, 1);
}

#srv-track {
    display: flex;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
}
#srv-track::-webkit-scrollbar {
    display: none; 
}

/* Renk parlaması */
.srv-arrow.n1::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 18px rgba(255,179,0,0.4);
    opacity: 0.6;
    pointer-events: none;
}

/* Konum */
.srv-arrow.n1.left { left: -65px; }
.srv-arrow.n1.right { right: -65px; }



.intro-section{
    width:100%;
    padding:100px 0;
    background:#111;
    display:flex;
    justify-content:center;
}

.intro-container{
    width:90%;
    display:flex;
    align-items:center;
    gap:40px;
}

/* Sol küçük foto */
.intro-left{
    display:flex;
    flex-direction:column;
    gap:20px;
}
.small-img{
    width:220px;
    height:300px;
    object-fit:cover;
    border-radius:12px;
}

/* Orta büyük foto */
.main-img{
    width:350px;
    height:450px;
    object-fit:cover;
    border-radius:15px;
    border:3px solid rgba(255,255,255,0.3);
    box-shadow:0 10px 25px rgba(0,0,0,0.45),
                0 3px 8px rgba(0,0,0,0.25);
    transition:.3s;
}
.main-img:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,0.55),
                0 5px 15px rgba(0,0,0,0.4);
}

/* Sağ açıklama */
.intro-right{
    background:#1b1b1b;
    padding:35px 40px;
    border-radius:12px;
    width:45%;
    color:white;
    box-shadow:0 0 20px rgba(0,0,0,0.3);
}
.intro-right h2{
    font-size:38px;
    color:#ff8c00;
    margin-bottom:20px;
}
.intro-right p{
    font-size:16px;
    color:#d0d0d0;
    line-height:1.6;
}

/* Buton */
.intro-btn{
    display:inline-block;
    margin-top:10px;
    padding:12px 25px;
    border:2px solid #ff8c00;
    border-radius:8px;
    text-decoration:none;
    color:#ff8c00;
    font-weight:600;
    transition:0.3s ease;
}
.intro-btn:hover{
    background:#ff8c00;
    color:white;
}

.intro-more{
    margin-top:20px;
    display:none;
    animation: fadeIn .4s ease;
    color:#444;
    line-height:1.6;
}

@keyframes fadeIn{
    from { opacity:0; transform:translateY(10px); }
    to   { opacity:1; transform:translateY(0); }
}

.footer {
    background: #0e0e0e;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-container {
    width: 85%;
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-col {
    flex: 1;
    color: #ddd;
}

.footer-col h3 {
    color: #ffb300;
    margin-bottom: 12px;
    font-size: 20px;
}

.footer-logo {
    font-size: 28px;
    color: #ffb300;
    text-shadow: 0 0 12px #ffb300;
}

.footer-col a {
    display: block;
    margin: 6px 0;
    color: #bbb;
    text-decoration: none;
}

.footer-col a:hover {
    color: #ffb300;
}


.footer-social {
    margin-top: 15px;
    display: flex;
    gap: 12px;
    align-items: center;
}

.fs-icon {
    width: 32px;
    height: 32px;
    transition: 0.2s;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

.fs-icon:hover {
    transform: scale(1.1);
}

/* Alt yazı */
.footer-bottom {
    margin-top: 25px;
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 15px;
    color: #777;
    font-size: 14px;
}

/* Mobil uyum */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}




.iletisim-page{
    margin-top:180px !important;
}

/* MOBİL */
@media(max-width:768px){
    .footer-container{
        flex-direction:column;
        gap:30px;
        text-align:center;
    }
    .footer-left p{
        margin:auto;
    }
}

.footer-links p,
.footer-info p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 8px;
}

.footer-links a {
    color: #ffb300;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* === SABİT BUTONLAR === */
.floating-buttons{
    position: fixed;
    right: 25px;
    bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

/* Buton */
.float-btn{
    height: 55px;
    background: red;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    width: 55px; /* BAŞTA KUCUK DURSUN */
    overflow: hidden;
    text-decoration: none;
    transition: 0.3s ease;
    color: white;
    white-space: nowrap;
}


.float-btn:hover{
    width: 170px;
}

/* Logo */
.float-icon{
    width: 28px;
    height: 28px;
    flex-shrink: 0; 
}

/* Yazı */
.float-btn span{
    margin-left: 12px;
    opacity: 0;
    transition: opacity .25s ease;
}


.float-btn:hover span{
    opacity: 1;
}

/* WhatsApp */
.whatsapp{
    background: #25D366;
}

/* Instagram */
.instagram{
    background: linear-gradient(45deg,#feda75,#fa7e1e,#d62976,#962fbf,#4f5bd5);
}

.navbar a.active{
    color:#ffb300 !important;
    text-shadow:0 0 8px #ffb300;
}



.logo-text {
    position: relative;
    font-size: 28px;
    font-weight: 700;
    color: #ffb300;
}

.logo-text::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 140%;
    height: 140%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, #ffb30033, transparent 70%);
    z-index: -1;
    animation: halo 4s ease-in-out infinite;
}

@keyframes halo {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
}

body {
    font-family: 'Inter', sans-serif !important;
}

.iletisim-baslik {
    color: #ffb300;
    font-size: 38px;
    margin-bottom: 10px;
    font-weight: 600;
}

.iletisim-aciklama {
    opacity: .8;
    font-size: 17px;
    margin-bottom: 40px;
}

.contact-box {
    width: 100%;
    background: #1b1b1b;
    padding: 18px 25px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
    text-decoration: none;
    color: white;
    border: 1px solid #252525;
    transition: .25s ease;
}

.contact-box:hover {
    border-color: #ffb300;
    box-shadow: 0 0 18px rgba(255,179,0,0.35);
    transform: translateY(-4px);
}

.icon-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.contact-box .text h3 {
    margin: 0;
    font-size: 20px;
    color: #ffb300;
    font-weight: 600;
}

.contact-box .text p {
    margin: 3px 0 0 0;
    opacity: .75;
    font-size: 15px;
}



.iletisim-header {
    text-align: center;
    margin-top: 120px;
    margin-bottom: 60px;
}

.iletisim-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffb300;
    display: inline-block;
    position: relative;
    padding-bottom: 10px;
}

.iletisim-header h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ffb300, #ff7a00);
    border-radius: 10px;
    animation: glowline 2s infinite alternate;
}

@keyframes glowline {
    0% { box-shadow: 0 0 10px #ffb300; }
    100% { box-shadow: 0 0 25px #ff7a00; }
}

.iletisim-header p {
    margin-top: 15px;
    font-size: 18px;
    opacity: .85;
    color: #ffffff;
}


.galeri-title {
    color: #ffb300;
    font-size: 40px;
    margin-bottom: 30px;
    text-align: center;
}


.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}



.gallery-item {
    width: 30%;
    aspect-ratio: 1 / 1; 
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}


.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;  
    border-radius: 12px;
    transition: 0.35s ease;
}



.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.15);
}


.gallery-header {
    text-align: center;
    margin-bottom: 40px;
    animation: fadeIn 1s ease;
}


.galeri-title {
    font-size: 48px;
    color: #ffb300;
    font-weight: 700;
    position: relative;
    display: inline-block;
    animation: titleGlow 2.5s infinite ease-in-out;
    text-shadow: 0 0 10px rgba(255, 180, 0, 0.5),
                 0 0 20px rgba(255, 180, 0, 0.3);
}

/* Açıklama Fade-in */
.galeri-desc {
    font-size: 18px;
    color: #d6d6d6;
    margin-top: 10px;
    opacity: 0;
    animation: fadeInUp 1.3s ease forwards;
    animation-delay: 0.3s;
}



@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleGlow {
    0% {
        text-shadow: 0 0 8px rgba(255, 180, 0, 0.4),
                     0 0 15px rgba(255, 180, 0, 0.2);
    }
    50% {
        text-shadow: 0 0 18px rgba(255, 200, 0, 0.7),
                     0 0 28px rgba(255, 180, 0, 0.5);
    }
    100% {
        text-shadow: 0 0 8px rgba(255, 180, 0, 0.4),
                     0 0 15px rgba(255, 180, 0, 0.2);
    }
}

.page-title {
    color: #ffb300;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-desc {
    color: #bbbbbb;
    font-size: 18px;
    margin-bottom: 40px;
}

.location-box {
    margin-bottom: 60px;
    background: #111;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #333;
}

.location-box h2 {
    color: #ffb300;
    font-size: 26px;
    margin-bottom: 15px;
}


.scroll-effect {
    opacity: 0;
    transform: translateY(40px);
    transition: 0.8s ease-in-out;
}


.scroll-effect.show {
    opacity: 1;
    transform: translateY(0);
}

h1, h2, h3, h4, h5, h6, p, a, button {
     font-family: 'Nunito', sans-serif !important;
}

.hero-text h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 60px;
    letter-spacing: 2px;
    color: #ffb300;
}


.page-container {
    padding-top: 80px; 
}


body {
    transition: transform 0.55s ease, opacity 0.55s ease;
}

body.slide-exit {
    transform: translateX(-100vw); 
    opacity: 0.4;                  
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

/* ===========================
   📱 TELEFON (max 768px)
=========================== */
@media (max-width: 768px) {

    /* Navbar */
    .navbar {
        flex-direction: column;
        padding: 15px 0;
        gap: 10px;
    }
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    /* Hero */
    .hero {
        flex-direction: column;
        padding: 20px;
        text-align: center;
    }
    .hero img {
        width: 100% !important;
    }
    .hero-text {
        width: 100% !important;
    }
    .hero-text h1 {
        font-size: 34px !important;
    }

    /* Küçük fotoğraflar */
    .small-photos {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    .small-photos img {
        width: 100%;
        height: auto;
    }

    /* Galeri buton */
    .gallery-btn {
        margin: 20px 0;
    }

    /* Hizmetler */
    .services {
        padding: 30px 0;
    }
    .service-wrapper {
        width: 100% !important;
        overflow: visible !important;
    }
    .service-track {
        flex-direction: column !important;
        transform: none !important;
        gap: 25px !important;
    }
    .service-card {
        min-width: 100% !important;
        width: 100% !important;
        padding: 0 15px;
    }
    .service-item {
        height: 260px !important;
    }
    .service-item img {
        height: 100% !important;
    }
    .srv-arrow {
        display: none !important;
    }

    /* Üçlü intro kısmı */
    .intro-container {
        flex-direction: column;
        text-align: center;
    }
    .intro-left {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
    }
    .small-img {
        width: 45% !important;
        height: 150px !important;
    }

    .intro-middle img {
        width: 100% !important;
        height: auto !important;
    }

    .intro-right {
        width: 100% !important;
        margin-top: 10px;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    /* Sabit Floating Butonlar */
    .floating-buttons {
        right: 15px !important;
        bottom: 25px !important;
        gap: 12px !important;
    }
    .float-btn {
        width: 50px !important;
        height: 50px !important;
    }
    .float-btn:hover {
        width: 150px !important;
    }
    .float-icon {
        width: 24px;
        height: 24px;
    }
}

/* ===========================
   📱 TABLET (769px - 1200px)
=========================== */
@media (min-width: 769px) and (max-width: 1200px) {

    /* Hero */
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    .hero img {
        width: 80% !important;
    }
    .hero-text {
        width: 80% !important;
    }

    /* Intro */
    .intro-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .intro-left {
        flex-direction: row;
        gap: 20px;
    }
    .small-img {
        width: 45% !important;
        height: 200px !important;
    }
    .intro-middle img {
        width: 70% !important;
        height: auto !important;
    }
    .intro-right {
        width: 80% !important;
    }

    /* Hizmetler */
    .service-wrapper {
        width: 100%;
        overflow: hidden;
    }
    .service-track {
        gap: 30px;
    }
    .service-card {
        min-width: 50% !important;
    }

    .srv-arrow {
        display: none !important;
    }
}

/* =============================
   GALERİ LIGHTBOX + OKLAR
============================= */
.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.gallery-lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 40px rgba(255, 200, 0, 0.45);
}

.gallery-lightbox .close-btn {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 42px;
    color: gold;
    cursor: pointer;
}

.gallery-lightbox .nav {
    position: absolute;
    top: 50%;
    font-size: 60px;
    color: gold;
    cursor: pointer;
    user-select: none;
    transform: translateY(-50%);
}

.gallery-lightbox .prev { left: 30px; }
.gallery-lightbox .next { right: 30px; }

@media (max-width: 768px) {
    .gallery-lightbox .nav {
        font-size: 40px;
    }
}
