/* ==========================================================================
   ESSE VIP - TAMAMEN MOBİL UYUMLU ANA CSS (REVİZE)
   ========================================================================== */

/* 1. GENEL TEMELLER */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

section {
    scroll-margin-top: 90px;
}

/* 2. HEADER – TEMİZ VE LOGOYA SAYGILI */
header {
    background-color: #0a0a0a;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    flex-wrap: nowrap;
}

/* LOGO – TERTEMİZ */
.logo-img {
    max-height: 70px;
    width: auto;
    display: block;
    background: transparent;
    mix-blend-mode: normal;
    filter: none;
}

/* MASAÜSTÜ MENÜ */
.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #c4a468;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffffff;
}

/* HAMBURGER MENÜ (MASADÜSTÜNDE GİZLİ) */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-menu .bar {
    width: 26px;
    height: 2px;
    background-color: #d4af37;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    transform-origin: left center;
}

.hamburger-menu.is-active .bar:nth-child(1) {
    transform: rotate(45deg) translateY(-2px);
}
.hamburger-menu.is-active .bar:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}
.hamburger-menu.is-active .bar:nth-child(3) {
    transform: rotate(-45deg) translateY(2px);
}

/* 3. HERO VİDEO ALANI */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #0a0a0a;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.4) 0%, rgba(10,10,10,0.9) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 6px;
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.2rem;
    color: #d4af37;
    margin-bottom: 35px;
    letter-spacing: 2px;
}

.btn-main {
    display: inline-block;
    padding: 14px 40px;
    color: #d4af37;
    background-color: transparent;
    border: 1px solid #d4af37;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.btn-main:hover {
    background-color: #d4af37;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

/* 4. HAKKIMIZDA */
#hakkimizda {
    text-align: center;
    background-color: #111111;
    position: relative;
}

.section-subtitle {
    color: #d4af37;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 12px;
}

#hakkimizda h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 30px;
    display: inline-block;
    position: relative;
}

#hakkimizda h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background-color: #d4af37;
}

#hakkimizda p {
    color: #cccccc;
    font-size: 15px;
    max-width: 750px;
    margin: 0 auto 20px;
}

/* 5. YORUMLAR (MARQUEE) */
#yorumlar {
    background-color: #0d0d0d;
    padding: 80px 0;
    overflow: hidden;
}

.section-title-area {
    text-align: center;
    margin-bottom: 50px;
}

.section-title-area h2 {
    font-size: 32px;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 2px;
}

.marquee-wrapper {
    display: flex;
    width: 100%;
}

.marquee-content {
    display: flex;
    animation: kaydirma 25s linear infinite;
}

.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

.review-card {
    flex-shrink: 0;
    width: 350px;
    background: #161616;
    border: 1px solid #222222;
    border-radius: 8px;
    padding: 20px;
    margin-right: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.user-info {
    display: flex;
    align-items: center;
}

.user-avatar {
    width: 40px;
    height: 40px;
    background-color: #d4af37;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 12px;
}

.user-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.review-date {
    font-size: 11px;
    color: #888888;
}

.google-logo {
    width: 18px;
    height: 18px;
}

.stars {
    color: #fbbc05;
    font-size: 16px;
    margin-bottom: 10px;
}

.review-card p {
    font-size: 13px;
    color: #cccccc;
    line-height: 1.5;
}

@keyframes kaydirma {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 6. ÖNCESİ/SONRASI GALERİ */
#galeri {
    background-color: #111111;
    padding: 80px 0;
    overflow: hidden;
}

.gallery-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 10px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: rgba(212, 175, 55, 0.3) transparent;
}

.gallery-slider::-webkit-scrollbar {
    height: 6px;
}
.gallery-slider::-webkit-scrollbar-track {
    background: transparent;
}
.gallery-slider::-webkit-scrollbar-thumb {
    background-color: rgba(212, 175, 55, 0.3);
    border-radius: 10px;
}

.gallery-card {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 350px;
    background: #161616;
    border: 1px solid #222222;
    padding: 20px;
    text-align: center;
    scroll-snap-align: center;
    transition: transform 0.4s ease, opacity 0.6s ease-out;
    opacity: 1;
}

.gallery-card.has-animation {
    opacity: 0;
    transform: translateY(30px);
}

.gallery-card.has-animation.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.gallery-card:hover {
    transform: translateY(-5px);
}

.image-comparison {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
}

.img-box {
    position: relative;
    flex: 1;
    overflow: hidden;
    height: 280px;
    background: #222222;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.img-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 2px;
    z-index: 10;
}

.img-badge.before {
    background-color: rgba(0, 0, 0, 0.75);
    color: #ffffff;
}

.img-badge.after {
    background-color: rgba(212, 175, 55, 0.95);
    color: #000000;
}

.gallery-card h3 {
    font-size: 18px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.gallery-card p {
    font-size: 13px;
    color: #aaaaaa;
}

/* 7. HİZMETLER */
#hizmetler {
    background-color: #0d0d0d;
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #161616;
    border: 1px solid #222222;
    padding: 50px 35px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-icon {
    margin-bottom: 25px;
    display: inline-block;
}

.gold-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: #d4af37;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.service-card p {
    font-size: 13.5px;
    color: #aaaaaa;
    line-height: 1.6;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.card-border-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #d4af37, transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover .card-border-glow {
    transform: scaleX(1);
}

/* 8. İLETİŞİM & FOOTER */
#iletisim {
    background-color: #0a0a0a;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 80px 0 0 0;
    color: #ffffff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-brand .logo {
    margin-bottom: 15px;
}

/* Footer logo */
.footer-logo-img {
    max-height: 70px;
    width: auto;
    display: block;
    margin: 0 0 20px 0;
    background: transparent;
    mix-blend-mode: normal;
    filter: none;
}

.brand-motto {
    font-size: 13.5px;
    color: #aaaaaa;
    max-width: 280px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #d4af37;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.7;
}

#iletisim h3 {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 20px;
}

.footer-hours ul {
    list-style: none;
}

.footer-hours ul li {
    font-size: 13.5px;
    color: #cccccc;
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    padding-bottom: 6px;
}

.appointment-notice {
    font-size: 11.5px;
    color: #888888;
    font-style: italic;
    margin-top: 15px;
}

.address-text,
.phone-text {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 10px;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 20px;
    padding: 14px 20px;
    background-color: transparent;
    border: 1px solid #25d366;
    color: #25d366;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.1);
}

.btn-whatsapp:hover {
    background-color: #25d366;
    color: #000000;
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

/* Yasal Bilgiler Sütunu */
.footer-links h3 {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: #cccccc;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-bottom {
    background-color: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    padding: 25px 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: #666666;
    letter-spacing: 0.5px;
}

/* 9. FLOATING CONTACT PANEL */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1005;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.contact-trigger {
    background-color: #111111;
    border: 1px solid #d4af37;
    color: #d4af37;
    padding: 14px 26px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), inset 0 0 10px rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-trigger:hover {
    background-color: #d4af37;
    color: #000000;
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.contact-trigger .trigger-icon {
    font-size: 14px;
    transition: transform 0.4s ease;
}

.contact-options {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    pointer-events: none;
}

.floating-contact.is-open .contact-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.floating-contact.is-open .contact-trigger .trigger-icon {
    transform: rotate(135deg);
}

.contact-child {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-child svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.contact-child.whatsapp {
    background-color: #141414;
    border: 1px solid #25d366;
    color: #25d366;
}

.contact-child.whatsapp:hover {
    background-color: #25d366;
    color: #000000;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.4);
    transform: translateX(-4px);
}

.contact-child.phone {
    background-color: #141414;
    border: 1px solid #ffffff;
    color: #ffffff;
}

.contact-child.phone:hover {
    background-color: #ffffff;
    color: #000000;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    transform: translateX(-4px);
}

/* 10. MODAL STİLLERİ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: #1a1a1a;
    border: 1px solid #d4af37;
    max-width: 650px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    border-radius: 4px;
    position: relative;
    color: #ccc;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    color: #d4af37;
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #ffffff;
}

.modal-body h2 {
    color: #d4af37;
    font-size: 26px;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.modal-body h3 {
    color: #d4af37;
    font-size: 18px;
    font-weight: 500;
    margin: 25px 0 12px;
}

.modal-body p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.modal-body ul {
    margin-bottom: 15px;
    padding-left: 20px;
}

.modal-body ul li {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
}

/* ==========================================================================
   11. RESPONSIVE TASARIM (MOBİL VE TABLET UYUMLU)
   ========================================================================== */

/* Büyük tablet / küçük laptop */
@media (max-width: 1200px) {
    .nav-links { gap: 18px; }
    .nav-links a { font-size: 12px; letter-spacing: 1px; }
    .footer-grid { gap: 30px; }
}

/* Tablet */
@media (max-width: 992px) {
    .container { padding: 50px 20px; }
    .gallery-card { flex: 0 0 85%; min-width: 280px; }
    .footer-grid { grid-template-columns: 1fr 1fr; text-align: center; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .footer-links { text-align: center; }
}

/* Mobil */
/* Mobil */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 70px;
        justify-content: space-between;
    }
    .logo-img {
        max-height: 55px;
    }
    /* Logo solda kalır */
    .logo {
        order: 1;
    }
    /* Hamburger butonu sağda görünür */
    .hamburger-menu {
        display: flex;
        order: 2;
        margin-left: auto;
        z-index: 1002;
    }
    /* Navigasyon menüsü (arka plan) - butonun altında açılır */
    nav {
        position: static;
        order: 3;
    }
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        max-width: 300px;
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 35px;
        transition: right 0.4s ease;
        z-index: 1001;
        box-shadow: -5px 0 25px rgba(0,0,0,0.5);
    }
    .nav-links.is-open {
        right: 0;
    }
    .nav-links a {
        font-size: 16px;
        color: #d4af37;
    }
    .hero-content h1 {
        font-size: 2.2rem;
        letter-spacing: 4px;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    .contact-trigger {
        padding: 12px 20px;
        font-size: 11px;
    }
    .modal-box {
        padding: 25px;
    }
    /* Galeri kartları mobilde daha geniş */
    .gallery-card {
        flex: 0 0 85%;
        min-width: 280px;
    }
}
/* Küçük mobil */
@media (max-width: 480px) {
    .hero-content h1 { font-size: 1.8rem; }
    .btn-main { padding: 12px 28px; font-size: 12px; }
    .review-card { width: 280px; }
    .gallery-card { flex: 0 0 320px; }
}