/* ===== CSS Variables ===== */
:root {
    --color-primary: #C4A484;
    --color-primary-dark: #A68B6A;
    --color-primary-light: #E8DDD3;
    --color-accent: #25D366;
    --color-background: #FBF9F7;
    --color-surface: #FFFFFF;
    --color-text: #2D2D2D;
    --color-text-light: #6B6B6B;
    --color-text-muted: #9B9B9B;
    --color-border: #E8E8E8;
    --color-success: #25D366;
    --color-error: #E74C3C;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-background);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 80px;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===== Scissors Intro Animation ===== */
.scissors-intro {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    overflow: hidden;
}

.scissors-intro.hidden {
    pointer-events: none;
    visibility: hidden;
}

/* Ust ve Alt Perdeler - Sayfa ortadan yarilacak */
.curtain-top, .curtain-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d2d2d 100%);
    z-index: 1;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.curtain-top {
    top: 0;
    background: linear-gradient(180deg, #1a1a1a 0%, #252525 100%);
}

.curtain-bottom {
    bottom: 0;
    background: linear-gradient(0deg, #1a1a1a 0%, #252525 100%);
}

/* Kesim sirasinda perdeler ayrilacak */
.scissors-intro.cutting .curtain-top {
    transform: translateY(-100%);
}

.scissors-intro.cutting .curtain-bottom {
    transform: translateY(100%);
}

/* Kesim cizgisi - yatay, ortada */
.cut-line-horizontal {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--color-primary) 20%, 
        #fff 50%, 
        var(--color-primary) 80%, 
        transparent 100%
    );
    transform: translateY(-50%) scaleX(0);
    transform-origin: left center;
    z-index: 5;
    box-shadow: 0 0 20px var(--color-primary), 0 0 40px rgba(196, 164, 132, 0.5);
}

.scissors-intro.cutting .cut-line-horizontal {
    animation: cutLineExpand 0.6s ease-out forwards;
}

@keyframes cutLineExpand {
    0% { transform: translateY(-50%) scaleX(0); opacity: 1; }
    80% { transform: translateY(-50%) scaleX(1); opacity: 1; }
    100% { transform: translateY(-50%) scaleX(1); opacity: 0; }
}

/* Makas - yukaridan asagiya hareket */
.scissors-cutter {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%) rotate(90deg);
    z-index: 10;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

.scissors-real {
    width: 100px;
    height: 100px;
}

/* Makas bicak animasyonlari - kesme hareketi */
.blade-top {
    animation: bladeTopCut 0.6s ease-in-out infinite;
    transform-origin: 75px 50px;
}

.blade-bottom {
    animation: bladeBottomCut 0.6s ease-in-out infinite;
    transform-origin: 75px 50px;
}

@keyframes bladeTopCut {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-12deg); }
}

@keyframes bladeBottomCut {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(12deg); }
}

/* Makas asagi inerken animasyon */
.scissors-intro.animating .scissors-cutter {
    animation: scissorsMoveDown 2s ease-in-out forwards;
}

@keyframes scissorsMoveDown {
    0% { 
        top: -120px; 
        opacity: 1;
    }
    45% { 
        top: calc(50% - 50px); 
        opacity: 1;
    }
    50% { 
        top: calc(50% - 50px); 
        opacity: 1;
    }
    100% { 
        top: calc(100% + 120px); 
        opacity: 0;
    }
}

/* Kesim basladiginda makas hizlanir */
.scissors-intro.cutting .blade-top {
    animation: bladeTopCutFast 0.2s ease-in-out infinite;
}

.scissors-intro.cutting .blade-bottom {
    animation: bladeBottomCutFast 0.2s ease-in-out infinite;
}

@keyframes bladeTopCutFast {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(-20deg); }
}

@keyframes bladeBottomCutFast {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(20deg); }
}

/* Logo container */
.intro-brand-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0;
    pointer-events: none;
}

.scissors-intro.cutting .intro-brand-container {
    animation: logoReveal 0.8s ease 0.3s forwards;
}

.intro-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.intro-brand {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--color-primary);
    text-shadow: 0 2px 20px rgba(196, 164, 132, 0.5);
    white-space: nowrap;
}

.intro-sub {
    font-size: 16px;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-top: 8px;
}

@keyframes logoReveal {
    0% { 
        opacity: 0; 
        transform: translate(-50%, -50%) scale(0.8);
    }
    100% { 
        opacity: 1; 
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Kivilcim efektleri - kesim sirasinda */
.scissors-intro::before,
.scissors-intro::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    z-index: 6;
}

.scissors-intro.cutting::before {
    left: 30%;
    animation: spark1 0.4s ease-out 0.1s forwards;
}

.scissors-intro.cutting::after {
    left: 70%;
    animation: spark2 0.4s ease-out 0.2s forwards;
}

@keyframes spark1 {
    0% { opacity: 1; transform: translateY(-50%) scale(1); }
    100% { opacity: 0; transform: translateY(-80px) scale(0); }
}

@keyframes spark2 {
    0% { opacity: 1; transform: translateY(-50%) scale(1); }
    100% { opacity: 0; transform: translateY(60px) scale(0); }
}

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

/* ===== Mobile Navigation ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
}

.nav-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary-dark);
}

.brand-sub {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.menu-toggle {
    width: 40px;
    height: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Fullscreen Menu ===== */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-surface);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.fullscreen-menu.active {
    opacity: 1;
    visibility: visible;
}

.menu-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: center;
}

.menu-link {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--color-text);
    transition: var(--transition);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
}

.fullscreen-menu.active .menu-link {
    opacity: 1;
    transform: translateY(0);
}

.fullscreen-menu.active .menu-link:nth-child(1) { transition-delay: 0.1s; }
.fullscreen-menu.active .menu-link:nth-child(2) { transition-delay: 0.15s; }
.fullscreen-menu.active .menu-link:nth-child(3) { transition-delay: 0.2s; }
.fullscreen-menu.active .menu-link:nth-child(4) { transition-delay: 0.25s; }
.fullscreen-menu.active .menu-link:nth-child(5) { transition-delay: 0.3s; }

.menu-link:hover {
    color: var(--color-primary);
}

.menu-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: var(--transition);
    transform: translateX(-50%);
}

.menu-link:hover::after {
    width: 60%;
}

/* ===== Main Content ===== */
.main-content {
    padding-top: 60px;
}

/* Separate pages (without single-page navigation) */
.main-content.page-content {
    padding-bottom: 80px;
    min-height: 100vh;
}

.main-content.page-content .page {
    display: block;
}

.page {
    display: none;
    animation: pageReveal 0.6s ease;
}

.page.active {
    display: block;
}

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

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: calc(100vh - 140px);
    min-height: 500px;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 1.5s ease;
}

.hero-image.reveal-image {
    animation: imageReveal 1.2s ease forwards;
}

@keyframes imageReveal {
    0% { transform: scale(1.2); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.hero:hover .hero-image {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.4) 50%,
        rgba(0,0,0,0.7) 100%
    );
}

/* Sparkle Effects - Star Shine */
.sparkle {
    position: absolute;
    width: 20px;
    height: 20px;
    opacity: 0;
    animation: sparkleShine 3s ease-in-out infinite;
    pointer-events: none;
}

.sparkle::before,
.sparkle::after {
    content: '';
    position: absolute;
    background: linear-gradient(90deg, transparent, white, transparent);
}

.sparkle::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.sparkle::after {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.sparkle-1 { 
    top: 15%; 
    left: 12%; 
    animation-delay: 0s;
    width: 24px;
    height: 24px;
}

.sparkle-2 { 
    top: 25%; 
    right: 15%; 
    animation-delay: 0.8s;
    width: 18px;
    height: 18px;
}

.sparkle-3 { 
    top: 45%; 
    left: 25%; 
    animation-delay: 1.5s;
    width: 16px;
    height: 16px;
}

.sparkle-4 { 
    top: 60%; 
    right: 25%; 
    animation-delay: 2.2s;
    width: 20px;
    height: 20px;
}

.sparkle-5 { 
    top: 35%; 
    left: 70%; 
    animation-delay: 0.4s;
    width: 14px;
    height: 14px;
}

@keyframes sparkleShine {
    0%, 100% { 
        opacity: 0; 
        transform: scale(0) rotate(0deg);
        filter: blur(0px);
    }
    50% { 
        opacity: 1; 
        transform: scale(1) rotate(45deg);
        filter: blur(0px) drop-shadow(0 0 6px rgba(255,255,255,0.9));
    }
}

.hero-content {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    padding: 0 24px;
    color: white;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 40px;
    line-height: 1.1;
    margin-bottom: 16px;
}

.title-line {
    display: block;
}

.title-line.accent {
    color: var(--color-primary-light);
}

/* Title Animation */
.animate-title {
    opacity: 0;
    transform: translateY(30px);
    animation: titleReveal 0.8s ease forwards;
}

.animate-title.delay-1 { animation-delay: 0.2s; }

.animate-fade {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.animate-fade.delay-2 { animation-delay: 0.4s; }
.animate-fade.delay-3 { animation-delay: 0.6s; }

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

.hero-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 24px;
    max-width: 280px;
}

/* ===== Scroll Reveal ===== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Buttons ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--color-primary);
    color: white;
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: var(--transition-spring);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-primary:disabled {
    background: var(--color-text-muted);
    cursor: not-allowed;
    transform: none;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--color-surface);
    color: var(--color-text);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-whatsapp {
    background: var(--color-accent);
}

.btn-whatsapp:hover {
    background: #20BD5A;
}

/* ===== Features Section ===== */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 24px 16px;
}

.feature-card {
    background: var(--color-surface);
    padding: 20px 12px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-spring);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    border-radius: 50%;
    color: var(--color-primary-dark);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
    background: var(--color-primary);
    color: white;
}

.feature-card h3 {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

.feature-card p {
    font-size: 10px;
    color: var(--color-text-muted);
}

/* ===== Page Header ===== */
.page-header {
    padding: 24px 20px;
    text-align: center;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 8px;
}

.page-subtitle {
    font-size: 14px;
    color: var(--color-text-light);
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0 16px 24px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-spring);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.service-image-container {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    flex-shrink: 0;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform 0.6s ease;
}

.service-card:hover .service-image {
    transform: scale(1.15);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(196, 164, 132, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.view-more {
    color: white;
    font-size: 12px;
    font-weight: 500;
    padding: 8px 16px;
    border: 1px solid white;
    border-radius: var(--radius-full);
    transform: translateY(20px);
    transition: var(--transition-spring);
}

.service-card:hover .view-more {
    transform: translateY(0);
}

.service-info {
    padding: 14px 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 0;
}

.service-info h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
}

.service-info p {
    font-size: 12px;
    color: var(--color-text-light);
    margin-bottom: 0;
    line-height: 1.45;
}

.service-price {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary-dark);
}

/* ===== Gallery - Masonry ===== */
.gallery-filter {
    display: flex;
    gap: 8px;
    padding: 0 16px 16px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

.gallery-filter::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    padding: 10px 24px;
    font-size: 13px;
    border-radius: var(--radius-full);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    white-space: nowrap;
    transition: var(--transition-spring);
}

.filter-btn:hover {
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 0 16px 28px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3 / 4;
    min-width: 0;
    transition: var(--transition-spring);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-sm);
}

.gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    color: white;
}

.gallery-title {
    font-weight: 500;
    font-size: 14px;
}

.gallery-zoom {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0) rotate(-90deg);
    transition: var(--transition-spring);
}

.gallery-item:hover .gallery-zoom {
    transform: scale(1) rotate(0deg);
}

/* Filter animation */
.gallery-item.filtering-out {
    animation: filterOut 0.4s ease forwards;
}

.gallery-item.filtering-in {
    animation: filterIn 0.5s ease forwards;
}

@keyframes filterOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.8); }
}

@keyframes filterIn {
    from { opacity: 0; transform: scale(0.8) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* ===== Staff Selection ===== */
.staff-select-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.staff-card {
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-spring);
}

.staff-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.staff-card.selected {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
}

.staff-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    color: white;
}

.staff-name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
}

.staff-specialty {
    font-size: 11px;
    color: var(--color-text-muted);
}

/* ===== Appointment ===== */
.appointment-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px 24px;
    gap: 0;
    flex-wrap: wrap;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--color-border);
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    transition: var(--transition-spring);
}

.step.active .step-number,
.step.completed .step-number {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.step span {
    font-size: 9px;
    color: var(--color-text-muted);
}

.step.active span {
    color: var(--color-primary);
    font-weight: 500;
}

.step-line {
    width: 20px;
    height: 2px;
    background: var(--color-border);
    margin: 0 4px;
    margin-bottom: 20px;
}

.appointment-form {
    padding: 0 20px 24px;
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: stepReveal 0.5s ease;
}

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

.appointment-form h3 {
    font-size: 18px;
    margin-bottom: 16px;
    text-align: center;
}

/* Service Selection */
.service-select-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.service-select-item input {
    display: none;
}

.service-select-box {
    display: flex;
    flex-direction: column;
    padding: 14px;
    background: var(--color-surface);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: var(--transition-spring);
    cursor: pointer;
}

.service-select-box:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.service-select-item input:checked + .service-select-box {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
    transform: scale(1.02);
}

.service-name {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 4px;
}

.service-duration {
    font-size: 11px;
    color: var(--color-text-muted);
}

.service-cost {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-primary-dark);
    margin-top: 8px;
}

.selected-total {
    display: flex;
    justify-content: space-between;
    padding: 14px;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    font-size: 13px;
    box-shadow: var(--shadow-sm);
}

/* Date Picker */
.date-picker {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 16px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.date-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.date-header span {
    font-weight: 600;
    font-size: 15px;
}

.date-nav {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--color-primary-light);
    color: var(--color-primary-dark);
    transition: var(--transition-spring);
}

.date-nav:hover {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.date-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 8px;
}

.day-name {
    font-size: 11px;
    font-weight: 500;
    color: var(--color-text-muted);
    text-align: center;
}

.dates-container {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.date-item {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border-radius: 50%;
    transition: var(--transition-spring);
    cursor: pointer;
}

.date-item:hover:not(.disabled):not(.selected) {
    background: var(--color-primary-light);
    transform: scale(1.1);
}

.date-item.selected {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.date-item.disabled {
    color: var(--color-text-muted);
    cursor: not-allowed;
    opacity: 0.4;
}

.date-item.today {
    border: 2px solid var(--color-primary);
}

.date-item.blocked {
    background: #ffebee;
    color: #c62828;
    text-decoration: line-through;
    opacity: 0.6;
}

/* Masaüstü: takvim hücreleri geniş gridde dev yuvarlak olmasın */
@media (min-width: 768px) {
    .appointment-form .date-picker {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .appointment-form .date-grid,
    .appointment-form .dates-container {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        gap: 6px;
    }

    .appointment-form .date-item {
        aspect-ratio: 1;
        max-width: 40px;
        max-height: 40px;
        width: 100%;
        margin: 0 auto;
        font-size: 12px;
        border-radius: 50%;
    }

    .appointment-form .day-name {
        font-size: 10px;
    }
}

/* Time Picker */
.time-picker {
    margin-bottom: 20px;
    animation: fadeInUp 0.4s ease;
}

.time-picker h4 {
    font-size: 14px;
    margin-bottom: 12px;
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.time-slot {
    padding: 12px 8px;
    font-size: 13px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: var(--transition-spring);
}

.time-slot:hover:not(.unavailable):not(.selected) {
    border-color: var(--color-primary);
    background: var(--color-primary-light);
    transform: translateY(-2px);
}

.time-slot.selected {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.time-slot.unavailable {
    background: var(--color-border);
    color: var(--color-text-muted);
    cursor: not-allowed;
    text-decoration: line-through;
}

.step-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.step-buttons .btn-secondary,
.step-buttons .btn-primary {
    flex: 1;
    justify-content: center;
}

/* Form Inputs */
.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-light);
}

.form-group textarea {
    resize: none;
    height: 100px;
}

.phone-input {
    display: flex;
    align-items: center;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    overflow: hidden;
    transition: var(--transition);
}

.phone-input:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-light);
}

.phone-prefix {
    padding: 14px 12px;
    background: var(--color-primary-light);
    font-weight: 500;
    font-size: 14px;
}

.phone-country-select {
    flex: 0 1 auto;
    min-width: 112px;
    max-width: 48%;
    padding: 12px 26px 12px 10px;
    margin: 0;
    border: none;
    border-right: 1px solid var(--color-border);
    border-radius: 0;
    background-color: var(--color-primary-light);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='none' stroke='%23666' stroke-width='1.5' stroke-linecap='round' d='M2.5 4.5L6 8l3.5-3.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    font-family: inherit;
    font-weight: 500;
    font-size: 13px;
    color: inherit;
    cursor: pointer;
    appearance: none;
}

.phone-country-select:focus {
    outline: none;
}

.phone-input input {
    border: none;
    border-radius: 0;
}

.phone-input input:focus {
    box-shadow: none;
}

/* Verification */
.verification-container {
    text-align: center;
}

.whatsapp-icon {
    margin-bottom: 16px;
    animation: bounce 1s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.verification-text {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

.otp-input-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.otp-input {
    width: 45px;
    height: 55px;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-md);
    background: var(--color-surface);
    transition: var(--transition-spring);
}

.otp-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px var(--color-primary-light);
    transform: scale(1.05);
}

.resend-btn {
    font-size: 13px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.resend-btn:disabled {
    color: var(--color-text-muted);
}

/* Success */
.success-container {
    text-align: center;
    padding: 20px 0;
}

.success-animation {
    margin-bottom: 20px;
}

.success-animation svg {
    animation: successPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes successPop {
    0% { transform: scale(0) rotate(-180deg); }
    60% { transform: scale(1.2) rotate(10deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.appointment-summary {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 20px 0;
    text-align: left;
    box-shadow: var(--shadow-sm);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    color: var(--color-text-light);
    font-size: 13px;
}

.summary-value {
    font-weight: 500;
    font-size: 13px;
}

.success-note {
    font-size: 13px;
    color: var(--color-text-light);
    margin-bottom: 24px;
}

/* ===== Contact ===== */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 16px 24px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px;
    background: var(--color-surface);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-spring);
    text-decoration: none;
    color: inherit;
}

.contact-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.contact-card--gsm {
    background: linear-gradient(145deg, #0ea5e9 0%, #0369a1 100%);
    color: #f8fafc;
}

/* İbrahim GÜL — sıcak altın / şampanya (marka tonları) */
.contact-card--tel {
    background: linear-gradient(145deg, #c9a227 0%, #8b6914 45%, #5c3d1e 100%);
    color: #fffbeb;
}

.contact-card--sabit {
    background: linear-gradient(145deg, #334155 0%, #0f172a 100%);
    color: #e2e8f0;
}

/* Adres — konum / harita hissi */
.contact-card--adres {
    background: linear-gradient(145deg, #6366f1 0%, #4338ca 55%, #312e81 100%);
    color: #eef2ff;
}

.contact-card--tel .contact-icon,
.contact-card--adres .contact-icon {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary-light);
    border-radius: 50%;
    color: var(--color-primary-dark);
    transition: var(--transition);
}

.contact-card--gsm .contact-icon,
.contact-card--sabit .contact-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.contact-card--sabit .contact-icon {
    color: #fde68a;
}

.contact-card--gsm .contact-label,
.contact-card--sabit .contact-label,
.contact-card--tel .contact-label,
.contact-card--adres .contact-label {
    opacity: 0.92;
}

.contact-card--gsm .contact-value,
.contact-card--sabit .contact-value,
.contact-card--tel .contact-value,
.contact-card--adres .contact-value {
    color: inherit;
    font-weight: 600;
}

.contact-card:hover .contact-icon {
    transform: rotate(10deg) scale(1.1);
}

.contact-label {
    font-size: 11px;
    opacity: 0.7;
}

.contact-value {
    font-size: 13px;
    font-weight: 500;
}

.map-container {
    padding: 0 16px 24px;
}

.map-address {
    text-align: center;
    margin-top: 12px;
    font-size: 13px;
    color: var(--color-text-light);
}

.map-placeholder {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-light);
    box-shadow: var(--shadow-sm);
}

.map-placeholder svg {
    margin-bottom: 12px;
    color: var(--color-primary);
}

.map-placeholder p {
    text-align: center;
    font-size: 13px;
    line-height: 1.6;
}

.working-hours {
    padding: 0 16px 24px;
}

.working-hours h3 {
    font-size: 16px;
    margin-bottom: 12px;
}

.hours-grid {
    background: var(--color-surface);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 14px 16px;
    font-size: 13px;
    border-bottom: 1px solid var(--color-border);
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item.closed {
    color: var(--color-error);
    opacity: 0.8;
}

.hour-item.closed span:last-child {
    font-weight: 600;
}

/* ===== Bottom Navigation ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    background: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 8px;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
    z-index: 100;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    color: var(--color-text-muted);
    transition: var(--transition-spring);
    border-radius: var(--radius-md);
}

.nav-item span {
    font-size: 10px;
}

.nav-item svg {
    transition: var(--transition-spring);
}

.nav-item.active {
    color: var(--color-primary);
}

.nav-item.active svg {
    transform: scale(1.1);
}

.nav-item:hover:not(.appointment-btn) {
    transform: translateY(-2px);
}

.appointment-btn {
    position: relative;
    margin-top: -20px;
}

.appointment-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 15px rgba(196, 164, 132, 0.4);
    transition: var(--transition-spring);
}

.appointment-btn:hover .appointment-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 25px rgba(196, 164, 132, 0.5);
}

.appointment-btn.active .appointment-icon {
    transform: scale(1.15);
}

/* ===== Modal ===== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-backdrop,
.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
}

.modal-content {
    position: relative;
    background: var(--color-surface);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-height: 85vh;
    width: 100%;
    overflow-y: auto;
    padding: 24px;
    transform: translateY(100%);
    transition: var(--transition-spring);
}

.modal.active .modal-content {
    transform: translateY(0);
}

/* Hizmet detay modalı — dar kart, dikey görsel (kartlarla uyumlu) */
#serviceModal .modal-content {
    width: min(92vw, 380px);
    max-width: 380px;
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    border-radius: var(--radius-lg);
    box-sizing: border-box;
}

#serviceModal .modal-service {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 0 0 20px;
}

#serviceModal .modal-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    flex-shrink: 0;
}

#serviceModal .modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

#serviceModal .modal-service h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    margin: 18px 20px 8px;
    line-height: 1.25;
}

#serviceModal .modal-desc {
    color: var(--color-text-light);
    font-size: 14px;
    margin: 0 20px 18px;
    line-height: 1.55;
}

#serviceModal .modal-price-list {
    margin: 0 20px 20px;
}

#serviceModal .modal-price-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 14px;
}

#serviceModal .modal-price-item .price {
    font-weight: 600;
    color: var(--color-primary-dark);
    flex-shrink: 0;
}

#serviceModal .modal-service .btn-primary.btn-full {
    margin: 0 20px;
    width: calc(100% - 40px);
    box-sizing: border-box;
}

/* KVKK Modal Container */
.modal-container {
    position: relative;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    max-height: 80vh;
    width: 90%;
    max-width: 500px;
    overflow-y: auto;
    padding: 24px;
    transform: scale(0.9);
    transition: var(--transition-spring);
    z-index: 10;
}

.modal.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-background);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    color: var(--color-text-muted);
    transition: var(--transition);
    z-index: 11;
}

.modal-close:hover {
    background: var(--color-primary);
    color: white;
}

.modal-body {
    padding-top: 10px;
}

.modal-body h3 {
    color: var(--color-text);
    margin-bottom: 16px;
}

.modal-body p {
    color: var(--color-text-light);
}

/* ===== Lightbox ===== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.95);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition);
}

.lightbox.active {
    visibility: visible;
    opacity: 1;
}

.lightbox img {
    width: auto;
    height: auto;
    max-width: min(94vw, 880px);
    max-height: min(78vh, 900px);
    object-fit: contain;
    border-radius: var(--radius-md);
    transform: scale(0.94);
    transition: var(--transition-spring);
}

.lightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
        max-width: 960px;
        padding: 0 20px 32px;
    }
    
    .gallery-masonry {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
        max-width: 900px;
        padding: 0 20px 32px;
    }

    .gallery-filter {
        max-width: 900px;
        padding: 0 20px 18px;
    }
    
    .contact-cards {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .staff-select-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.nav-brand-inner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.nav-brand-logo {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-primary);
}

.intro-logo-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--color-primary);
    margin-bottom: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}
