/* iOS PWA Full Screen Support */
@supports (-webkit-touch-callout: none) {
    .header {
        padding-top: max(env(safe-area-inset-top), 0px) !important;
        background-color: #020112 !important;
        background: #020112 !important;
    }
}

/* Full Screen Body Support */
html, body {
    height: 100%;
    min-height: -webkit-fill-available;
}

/* iOS PWA Body Background */
@supports (-webkit-touch-callout: none) {
    body {
        background: #020112 !important;
    }
}

.autocomplete-list {
    position: absolute;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(18,24,33,0.98), rgba(12,16,22,0.98));
    border: 1px solid rgba(148,163,184,0.35);
    border-radius: 14px;
    margin-top: 6px;
    width: 100%;
    max-height: 280px;
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8), inset 0 1px 2px rgba(255,255,255,0.05);
    left: 0;
    top: calc(100% + 4px);
    color: #e6e9ef;
    transform-origin: top;
    transform: translateY(8px) scale(0.96);
    opacity: 0;
    transition: opacity 0.2s cubic-bezier(0.22, 0.8, 0.35, 1), transform 0.2s cubic-bezier(0.22, 0.8, 0.35, 1);
    backdrop-filter: blur(12px);
}
.autocomplete-list[style*="display: block"] {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    color: #e6e9ef;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: background 0.15s ease, transform 0.15s ease;
}
.autocomplete-item:last-child {
    border-bottom: none;
}
.autocomplete-item:hover {
    background: linear-gradient(90deg, rgba(59,130,246,0.25), rgba(59,130,246,0.08));
    transform: translateX(4px);
}
.autocomplete-item:active {
    background: linear-gradient(90deg, rgba(59,130,246,0.35), rgba(59,130,246,0.12));
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #e6e9ef;
    background: radial-gradient(1200px 800px at 10% 10%, rgba(0, 122, 255, 0.12), transparent 70%),
                radial-gradient(1000px 700px at 90% 10%, rgba(255, 56, 56, 0.12), transparent 70%),
                linear-gradient(135deg, #020112 0%, #101821 50%, #0b0e13 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: rgba(5, 10, 18, 0.8);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.35);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 2rem;
    font-weight: bold;
    color: #ff3b3b;
    text-decoration: none;
    text-shadow: 0 0 18px rgba(255, 59, 59, 0.3);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    white-space: nowrap;
}

.logo i { font-size: 1.5rem; line-height: 1; display:inline-block; }

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #b7c3d4;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow .3s ease;
}

.nav-links a:hover { color: #7ab6ff; text-shadow: 0 0 12px rgba(122,182,255,.4); }

.hero {
    padding: 120px 0 80px;
    color: white;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

.hero-left h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}
.rotating-text {
    display: inline-block;
    color: #7ab6ff;
    font-weight: 800;
    min-width: 250px;
    text-align: left;
    position: relative;
    animation: textFadeIn 0.6s ease-in-out;
}
@keyframes textFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes textFadeOut {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(10px);
    }
}
.rotating-text.fade-out {
    animation: textFadeOut 0.6s ease-in-out;
}
.hero-left p {
    font-size: 1.1rem;
    margin-bottom: 1.8rem;
    opacity: 0.9;
    color: #cbd5f5;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hero-secondary {
    background: transparent;
    border: 1px solid rgba(248,250,252,0.35);
    box-shadow: none;
}
.hero-secondary:hover {
    background: rgba(15,23,42,0.6);
    box-shadow: 0 10px 25px rgba(15,23,42,0.65);
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    margin-top: 0.25rem;
}
.hero-stat {
    min-width: 110px;
}
.hero-stat-number {
    display: block;
    font-size: 1.4rem;
    font-weight: 800;
    color: #e5e7eb;
}
.hero-stat-label {
    display: block;
    font-size: 0.85rem;
    color: #9ca3af;
}

.hero-right {
    display: flex;
    justify-content: center;
}
.hero-card {
    width: 100%;
    max-width: 360px;
    background: rgba(15,23,42,0.95);
    border-radius: 18px;
    border: 1px solid rgba(148,163,184,0.35);
    box-shadow: 0 18px 50px rgba(0,0,0,0.6);
    padding: 1.1rem 1.1rem 1.0rem;
}
.hero-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.18rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(56,189,248,0.12);
    color: #7dd3fc;
    border: 1px solid rgba(56,189,248,0.4);
}
.hero-card-title {
    font-size: 0.9rem;
    color: #e5e7eb;
    font-weight: 600;
}
.hero-card-list {
    list-style: none;
    margin: 0;
    padding: 0.4rem 0 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.hero-card-list li {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    background: rgba(15,23,42,0.85);
    border-radius: 10px;
    padding: 0.35rem 0.5rem;
}
.hero-card-time {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 600;
    color: #e5e7eb;
}
.hero-card-text {
    color: #cbd5f5;
}
.hero-card-status {
    font-size: 0.72rem;
    padding: 0.16rem 0.45rem;
    border-radius: 999px;
    font-weight: 600;
}
.hero-card-status-pending {
    background: rgba(251,191,36,0.16);
    color: #fbbf24;
}
.hero-card-status-confirmed {
    background: rgba(52,211,153,0.16);
    color: #34d399;
}
.hero-card-footer {
    margin-top: 0.8rem;
    font-size: 0.78rem;
    color: #9ca3af;
    border-top: 1px solid rgba(148,163,184,0.35);
    padding-top: 0.55rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff3b3b 0%, #c81d1d 50%, #ff3b3b 100%);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 14px;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 15px 40px rgba(255, 59, 59, 0.35), inset 0 0 0 1px rgba(255,255,255,0.12);
    transition: transform 0.2s ease, box-shadow .2s ease, filter .2s ease;
    border: none;
    cursor: pointer;
}
.cta-button:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 20px 60px rgba(255, 59, 59, 0.45); filter: brightness(1.05); }

.services { padding: 80px 0; background: #0f131a; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 3rem; color: #e8eef7; text-shadow: 0 0 18px rgba(122,182,255,0.2); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1.5rem; margin-top: 2.4rem; }
.service-card { background: linear-gradient(180deg, rgba(18,24,33,0.9), rgba(12,16,22,0.9)); padding: 1.5rem; border-radius: 14px; box-shadow: 0 10px 30px rgba(0,0,0,0.35); text-align: center; transition: transform .25s, box-shadow .25s; border: 1px solid rgba(255,255,255,0.06); cursor:pointer; }
.service-card:hover { transform: translateY(-8px); box-shadow: 0 16px 50px rgba(0,0,0,0.45); }
.service-icon { font-size: 3rem; color: #7ab6ff; margin-bottom: 1rem; text-shadow: 0 0 16px rgba(122,182,255,0.35); }
.service-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: #e6e9ef; }
.service-desc {
    color: #a9b7c9;
    line-height: 1.5;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transition: max-height 0.25s ease, opacity 0.25s ease, margin-top 0.25s ease;
    font-size: 0.9rem;
}
.service-card.expanded .service-desc {
    max-height: 160px;
    opacity: 1;
    margin-top: 0.5rem;
}

@media (min-width: 769px) and (max-width: 1023px) {
    /* Tablet: 2 sütun salon grid */
    .salon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    /* Masaüstü: tüm özellik kutuları tek satırda yan yana */
    .services-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }
}

/* Admin Showcase Section */
.admin-showcase {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0e15 0%, #15202b 100%);
    position: relative;
    overflow: hidden;
}
.admin-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(59,130,246,0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(168,85,247,0.08) 0%, transparent 50%);
    pointer-events: none;
}
.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #94a3b8;
    margin-top: -2rem;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}
.showcase-feature {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}
.showcase-left .showcase-feature {
    text-align: right;
    flex-direction: row-reverse;
}
.showcase-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(99,102,241,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #60a5fa;
    box-shadow: 0 8px 24px rgba(59,130,246,0.25);
    border: 1px solid rgba(59,130,246,0.3);
}
.showcase-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    color: #e6e9ef;
    font-weight: 700;
}
.showcase-content p {
    margin: 0;
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
}
.showcase-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}
.phone-frame {
    width: 340px;
    height: 680px;
    background: #1e293b;
    border-radius: 45px;
    padding: 12px;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5),
                inset 0 0 0 2px rgba(148,163,184,0.2);
    position: relative;
    transform: rotateY(0deg);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.phone-frame:hover {
    transform: rotateY(5deg) scale(1.02);
    box-shadow: 0 30px 90px rgba(0,0,0,0.6),
                inset 0 0 0 2px rgba(148,163,184,0.3);
}
.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #475569 0%, #334155 100%);
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}
.phone-slider {
    width: 100%;
    height: 100%;
    position: relative;
}
.phone-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.98) translateY(5px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
    will-change: opacity, transform;
}
.phone-slide.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
    z-index: 2;
}
.phone-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.phone-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #64748b;
}
.phone-placeholder i {
    font-size: 4rem;
}
.phone-placeholder p {
    font-size: 1.2rem;
    margin: 0;
}
.phone-slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
    background: rgba(15,23,42,0.8);
    padding: 8px 16px;
    border-radius: 999px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148,163,184,0.2);
}
.phone-slider-prev,
.phone-slider-next {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(59,130,246,0.2);
    border: 1px solid rgba(59,130,246,0.3);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.9rem;
}
.phone-slider-prev:hover,
.phone-slider-next:hover {
    background: rgba(59,130,246,0.4);
    transform: scale(1.15);
    box-shadow: 0 4px 12px rgba(59,130,246,0.3);
}
.phone-slider-prev:active,
.phone-slider-next:active {
    transform: scale(0.95);
}
.phone-slider-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}
.phone-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(148,163,184,0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.phone-dot:hover {
    background: rgba(148,163,184,0.7);
    transform: scale(1.3);
}
.phone-dot.active {
    width: 24px;
    border-radius: 4px;
    background: linear-gradient(135deg, #60a5fa, #3b82f6);
    box-shadow: 0 2px 8px rgba(59,130,246,0.4);
}

/* Özellik modalı */
.feature-modal-content {
    max-width: 460px;
}
.feature-modal-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.75rem;
}
.feature-modal-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(59,130,246,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60a5fa;
}
.feature-modal-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #e5e7eb;
}
.feature-modal-content p {
    margin-top: 0.25rem;
    color: #cbd5f5;
    font-size: 0.95rem;
}
.feature-modal-content.feature-animate {
    animation: featurePop 0.28s cubic-bezier(.2,.8,.2,1) forwards;
}
@keyframes featurePop {
    0% { transform: scale(0.7); opacity: 0; }
    65% { transform: scale(1.04); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

/* Pricing (Paketler) */
.pricing {
    padding: 80px 0;
    background: #0f131a;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.pricing-card {
    background: linear-gradient(180deg, rgba(18,24,33,0.95), rgba(12,16,22,0.95));
    border-radius: 18px;
    padding: 2rem 1.8rem;
    border: 1px solid rgba(148,163,184,0.3);
    box-shadow: 0 14px 40px rgba(0,0,0,0.55);
    position: relative;
}
.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: #e5e7eb;
}
.pricing-card .price {
    font-size: 2.1rem;
    font-weight: 800;
    color: #38bdf8;
    margin-bottom: 1rem;
}
.pricing-card .price span {
    font-size: 0.95rem;
    font-weight: 500;
    color: #9ca3af;
    margin-left: 4px;
}
.pricing-card ul {
    list-style: none;
    margin: 0 0 1.4rem 0;
    padding: 0;
    font-size: 0.95rem;
    color: #cbd5f5;
}
.pricing-card ul li {
    margin-bottom: 0.4rem;
}
.pricing-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.3rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.92rem;
    text-decoration: none;
    background: rgba(59,130,246,0.15);
    color: #bfdbfe;
    border: 1px solid rgba(59,130,246,0.45);
    transition: all 0.2s ease;
}
.pricing-cta:hover {
    background: rgba(59,130,246,0.25);
    box-shadow: 0 10px 30px rgba(37,99,235,0.45);
}
.pricing-cta.primary {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: #f9fafb;
}
.pricing-card.featured {
    border-color: rgba(96,165,250,0.8);
    box-shadow: 0 20px 60px rgba(37,99,235,0.6);
    transform: translateY(-4px);
}
.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1.6rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: rgba(56,189,248,0.18);
    color: #e0f2fe;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    border: 1px solid rgba(56,189,248,0.6);
}

/* Salonlar bölümü */
.salons {
    padding: 80px 0;
    background: linear-gradient(135deg, #020112 0%, #060b11 40%, #020112 100%);
}
.salon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
.salon-card {
    background: rgba(15,23,42,0.9);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(148,163,184,0.35);
    box-shadow: 0 14px 40px rgba(0,0,0,0.55);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.salon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.65);
}
.salon-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
}
.salon-avatar {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(96,165,250,0.7);
    background: radial-gradient(circle at 30% 20%, #4f46e5, #0f172a);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(96,165,250,0.3);
}
.salon-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.salon-avatar-fallback {
    color: #e5e7eb;
    font-size: 4rem;
}
.salon-meta {
    width: 100%;
}
.salon-meta h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.4rem;
    color: #e5e7eb;
    font-weight: 700;
}
.salon-tag {
    font-size: 0.85rem;
    color: #a5b4fc;
    padding: 0.3rem 0.8rem;
    background: rgba(165,180,252,0.1);
    border-radius: 999px;
    display: inline-block;
}
.salon-body {
    text-align: center;
}
.salon-body p {
    margin: 0;
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
}
.salon-footer {
    margin-top: 0.2rem;
}
.salon-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    text-decoration: none;
    color: #bfdbfe;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid rgba(59,130,246,0.6);
    background: rgba(15,23,42,0.7);
    transition: all 0.2s ease;
}
.salon-cta i {
    font-size: 0.95rem;
}
.salon-cta:hover {
    background: rgba(37,99,235,0.9);
    color: #f9fafb;
    box-shadow: 0 12px 35px rgba(37,99,235,0.6);
}

.appointment-section { padding: 80px 0; background: linear-gradient(135deg, #0c1117 0%, #121b27 100%); color: white; }
.appointment-form { max-width: 600px; margin: 0 auto; background: rgba(255,255,255,0.06); padding: 3rem; border-radius: 20px; backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.08); }
.form-group { margin-bottom: 1.5rem; position: relative; }
.form-group label { display: block; margin-bottom: .5rem; font-weight: 500; }
.form-group input:not([type="checkbox"]):not([type="radio"]), .form-group select, .form-group textarea { width: 100%; padding: 12px; border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; font-size: 1rem; background: rgba(12,16,22,0.7); color: #e8eef7; box-shadow: inset 0 1px 2px rgba(0,0,0,0.25); }
.form-group input::placeholder, .form-group textarea::placeholder { color: #8aa0b7; }
.form-group textarea { height: 100px; resize: vertical; }
.submit-btn { width: 100%; background: linear-gradient(135deg, #007aff, #005fcc); color: white; padding: 16px; border: none; border-radius: 12px; font-size: 1.1rem; font-weight: 800; cursor: pointer; transition: transform .2s, box-shadow .2s, filter .2s; box-shadow: 0 14px 35px rgba(0,122,255,0.35), inset 0 0 0 1px rgba(255,255,255,0.12); }
.submit-btn:hover { transform: translateY(-2px) scale(1.01); box-shadow: 0 22px 60px rgba(0,122,255,0.45); filter: brightness(1.05); }

/* Mini Wizard */
.mini-wizard { max-width: 720px; margin: 0 auto; background: linear-gradient(180deg, rgba(18,25,36,0.85), rgba(10,14,20,0.9)); padding: 2rem; border-radius: 16px; backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 12px 40px rgba(0,0,0,0.4); }
.mini-wizard.is-active {
    box-shadow: 0 18px 50px rgba(56,189,248,0.55);
    border-color: rgba(56,189,248,0.6);
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.mini-close-btn {
    position: absolute;
    top: 0.75rem;
    right: 0.9rem;
    background: transparent;
    border: none;
    color: #9ca3af;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
}
.mini-close-btn:hover {
    color: #e5e7eb;
}

/* Kuaförünüzü Arayın input tasarımı */
#mini-step-1 .form-group:first-child {
    position: relative;
}
#mini_barber_name {
    border-radius: 999px;
    padding: 14px 18px 14px 44px;
    background: linear-gradient(135deg, rgba(18,24,33,0.95), rgba(12,16,22,0.98));
    border: 1.5px solid rgba(148,163,184,0.4);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4), inset 0 1px 3px rgba(255,255,255,0.08);
    color: #e6e9ef;
    font-size: 1rem;
    transition: all 0.25s cubic-bezier(0.22, 0.8, 0.35, 1);
    width: 100%;
}
#mini_barber_name:focus {
    outline: none;
    border-color: rgba(59,130,246,0.7);
    background: linear-gradient(135deg, rgba(20,28,40,0.98), rgba(15,20,28,1));
    box-shadow: 0 12px 32px rgba(59,130,246,0.3), inset 0 1px 3px rgba(255,255,255,0.1), 0 0 0 3px rgba(59,130,246,0.15);
    transform: translateY(-1px);
}
#mini_barber_name::placeholder {
    color: #94a3b8;
    font-weight: 500;
}
#mini-step-1 .form-group:first-child::before {
    content: "\f002";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 16px;
    top: calc(1.5rem + 0.5rem + 14px + 0.75rem);
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    pointer-events: none;
    z-index: 1;
}
#mini-step-1 .form-group:first-child:focus-within::before {
    color: #60a5fa;
}
.wizard-steps { display:flex; justify-content: space-between; gap: .5rem; margin-bottom: 1.5rem; }
.wizard-step { flex:1; text-align:center; padding:.8rem; border-radius: 12px; background: rgba(255,255,255,0.06); color:#9fb1c6; font-weight:800; letter-spacing:.3px; text-transform: uppercase; font-size:.85rem; }
.wizard-step.active { background: linear-gradient(135deg, #007aff, #005fcc); color: #fff; box-shadow: 0 12px 30px rgba(0,122,255,0.35), inset 0 0 0 1px rgba(255,255,255,0.12); }
.mini-step .wizard-nav { display:flex; justify-content: space-between; gap:.75rem; margin-top: 1rem; }
.wizard-btn { background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.06)); color:#e6e9ef; border: 1px solid rgba(255,255,255,0.12); padding:.85rem 1.1rem; border-radius:12px; cursor:pointer; font-weight:800; transition: transform .15s, box-shadow .15s, filter .15s; backdrop-filter: blur(4px); }
.wizard-btn:hover { transform: translateY(-1px); box-shadow: 0 10px 25px rgba(0,0,0,0.25); filter: brightness(1.05); }
.wizard-btn.prev { background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.05)); color:#9fb1c6; }
.wizard-btn.next { background: linear-gradient(135deg, #007aff, #005fcc); border-color: rgba(255,255,255,0.14); box-shadow: 0 10px 30px rgba(0,122,255,0.35); }
.wizard-btn.finish { background: linear-gradient(135deg, #ff3b3b, #c81d1d); color:#fff; border-color: rgba(255,255,255,0.14); box-shadow: 0 12px 35px rgba(255,59,59,0.35); }
.form-row { display:flex; gap: 1rem; }
.form-row .form-group { flex:1; }

/* Mini overlay (Kuaförünüzü Arayın bottom sheet) */
.mini-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15,23,42,0.75);
    display: none;
    align-items: flex-end;
    justify-content: center;
    z-index: 2500;
    backdrop-filter: blur(4px);
}
.mini-overlay.is-open {
    display: flex;
}
.mini-sheet {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    border-radius: 22px 22px 0 0;
    box-shadow: 0 -18px 50px rgba(0,0,0,0.75);
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s cubic-bezier(0.22, 0.8, 0.35, 1), opacity 0.2s ease-out;
}
.mini-overlay.is-open .mini-sheet {
    transform: translateY(0);
    opacity: 1;
}

/* Working hours: better visible checkbox */
input.wh-closed { width: auto; height: 1.1rem; accent-color: #ff3b3b; cursor: pointer; }

/* Day picker */
.day-picker { display:flex; flex-wrap: wrap; gap:.5rem; }
.day-chip { padding:.6rem .9rem; border-radius:10px; cursor:pointer; user-select:none; border:1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.06); color:#e6e9ef; font-weight:700; letter-spacing:.2px; }
.day-chip:hover { filter: brightness(1.05); box-shadow: 0 8px 20px rgba(0,0,0,0.25); }
.day-chip.active { background: linear-gradient(135deg, #007aff, #005fcc); border-color: rgba(255,255,255,0.18); box-shadow: 0 12px 28px rgba(0,122,255,0.3); }

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c1117 0%, #121b27 100%);
    color: #ffffff;
}
.contact-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #cbd5e0;
    margin-top: -2rem;
    margin-bottom: 3rem;
}
.contact-info-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}
.contact-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #ffffff;
    font-size: 0.95rem;
}
.contact-info-item i {
    color: #7ab6ff;
    font-size: 1.1rem;
}
.contact-info-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}
.contact-info-item a:hover {
    color: #7ab6ff;
}
.contact-form {
    max-width: 800px;
    margin: 0 auto;
}
.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
.contact-form-group {
    position: relative;
}
.contact-form-full {
    grid-column: 1 / -1;
}
.contact-form-group input,
.contact-form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}
.contact-form-group input::placeholder,
.contact-form-group textarea::placeholder {
    color: rgba(255,255,255,0.5);
}
.contact-form-group input:focus,
.contact-form-group textarea:focus {
    outline: none;
    background: rgba(255,255,255,0.15);
    border-color: #60a5fa;
    box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}
.contact-form-group textarea {
    resize: vertical;
    min-height: 150px;
}
.contact-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}
.contact-checkbox input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
    accent-color: #60a5fa;
}
.contact-checkbox a {
    color: #7ab6ff;
    text-decoration: none;
}
.contact-checkbox a:hover {
    text-decoration: underline;
}
.contact-submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #007aff, #005fcc);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 24px rgba(0,122,255,0.35);
}
.contact-submit-btn:hover {
    background: linear-gradient(135deg, #005fcc, #007aff);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,122,255,0.45);
}
.contact-submit-btn:active {
    transform: translateY(0);
}
.contact-submit-btn i {
    font-size: 1.1rem;
}

.footer { background: #0a0d12; color: #cfd8e3; text-align: center; padding: 2rem 0; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-contact { display:flex; align-items:center; justify-content:space-between; gap:1rem; text-align:left; }
.footer-contact .footer-left { flex:1; min-width:240px; }
.footer-contact .footer-right { flex:0 0 280px; min-width:220px; text-align:right; }
.footer-contact .brand { font-size:1rem; font-weight:800; color:#e8eef7; margin-bottom:.4rem; }
.footer-contact .desc { margin:0; font-size:.95rem; color:#a9b7c9; max-width:520px; }
.footer-contact .mail { display:flex; align-items:center; justify-content:flex-end; gap:.5rem; }
.footer-contact .mail i { color:#7ab6ff; }
.footer-contact .mail a { color:#7ab6ff; text-decoration:none; font-weight:800; }
.footer-contact .copy { margin:0; font-size:.92rem; color:#9fb1c6; }
.social-links { margin: 1rem 0; }
.social-links a { color: #b7c3d4; font-size: 1.5rem; margin: 0 1rem; text-decoration: none; transition: color .3s, text-shadow .3s; }
.social-links a:hover { color: #ff3b3b; text-shadow: 0 0 12px rgba(255,59,59,.4); }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-left h1 { font-size: 2.2rem; }
    .rotating-text { min-width: 180px; font-size: 2.2rem; }
    .hero-left p { font-size: 1rem; }
    .services-grid { grid-template-columns: repeat(3, 1fr); gap: 0.9rem; }
    .service-card { padding: 0.95rem 0.7rem; }
    .service-icon { font-size: 2.2rem; }
    .service-card h3 { font-size: 1.05rem; }
    .service-card p { font-size: 0.8rem; }
    #features .services-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 640px;
        margin-left: auto;
        margin-right: auto;
    }
    #features .service-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.4rem;
        min-height: 180px;
        height: 100%;
    }
    #features .service-card h3 {
        min-height: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .appointment-form { padding: 2rem; margin: 0 1rem; }
    .mini-wizard { padding: 1.25rem; margin: 0 1rem; }
    .form-row { flex-direction: column; }
    .save-info-prompt { flex-direction: column; align-items: flex-start; }
    .save-info-prompt-icon { margin-bottom: 6px; }
    .save-info-prompt-actions { width: 100%; justify-content: flex-start; }
    .footer-contact { flex-direction: column; align-items: center; text-align: center; }
    .footer-contact .footer-right { text-align: center; flex: 0 0 auto; }
    .footer-contact .mail { justify-content: center; }
    .footer-contact .footer-left, .footer-contact .footer-right { width: 100%; min-width: 0; }
    .logo { font-size: 1.6rem; margin-left: 12px; }
    .logo i { font-size: 1.25rem; }
    
    /* Admin Showcase - Mobile */
    .admin-showcase {
        padding: 60px 0;
    }
    .section-subtitle {
        font-size: 0.95rem;
        margin-top: -1.5rem;
        margin-bottom: 2.5rem;
        padding: 0 1rem;
    }
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 1rem;
    }
    .showcase-left {
        order: 2;
    }
    .showcase-phone {
        order: 1;
    }
    .showcase-right {
        order: 3;
    }
    .phone-frame {
        width: 280px;
        height: 560px;
        border-radius: 38px;
        padding: 10px;
    }
    .phone-screen {
        border-radius: 30px;
    }
    .phone-slider-nav {
        bottom: 12px;
        padding: 6px 12px;
    }
    .phone-slider-prev,
    .phone-slider-next {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    .phone-dot {
        width: 6px;
        height: 6px;
    }
    .phone-dot.active {
        width: 18px;
    }
    .showcase-features {
        gap: 2rem;
    }
    .showcase-feature {
        flex-direction: row !important;
        text-align: left !important;
        gap: 1rem;
    }
    .showcase-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 1.3rem;
    }
    .showcase-content h3 {
        font-size: 1.1rem;
    }
    .showcase-content p {
        font-size: 0.9rem;
    }
    
    /* Salon Grid - Mobile */
    .salon-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    .salon-card {
        padding: 1.5rem;
    }
    .salon-avatar {
        width: 180px;
        height: 180px;
    }
    .salon-meta h3 {
        font-size: 1.2rem;
    }
    
    /* Contact Section - Mobile */
    .contact-section {
        padding: 60px 0;
    }
    .contact-subtitle {
        font-size: 0.9rem;
        padding: 0 1rem;
        margin-top: -1.5rem;
        margin-bottom: 2rem;
    }
    .contact-info-bar {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    .contact-info-item {
        font-size: 0.9rem;
    }
    .contact-form {
        padding: 0 1rem;
    }
    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .contact-form-full {
        grid-column: 1;
    }
    .contact-form-group input,
    .contact-form-group textarea {
        padding: 0.85rem 1rem;
        font-size: 0.9rem;
    }
    .contact-checkbox {
        font-size: 0.85rem;
    }
    .contact-submit-btn {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* iOS PWA Install Banner */
.ios-install-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, #007aff, #005fcc);
    color: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 32px rgba(0, 122, 255, 0.4);
    z-index: 10000;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: slideUp 0.3s ease-out;
}

.ios-install-content {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.ios-install-content i {
    font-size: 1.2rem;
    color: #fff;
}

.ios-install-content span {
    flex: 1;
    font-weight: 600;
    font-size: 0.95rem;
}

.ios-install-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s;
}

.ios-install-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* iOS PWA Install Instructions Modal */
.ios-install-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.ios-install-modal-content {
    background: #1a1f2e;
    border-radius: 16px;
    padding: 24px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ios-install-modal h3 {
    color: #e6e9ef;
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.ios-install-modal p {
    color: #a9b7c9;
    margin-bottom: 20px;
    line-height: 1.5;
}

.ios-install-modal .step {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.ios-install-modal .step-number {
    background: #007aff;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.ios-install-modal .step-text {
    color: #e6e9ef;
    font-size: 0.9rem;
}

.ios-install-modal .close-btn {
    background: #ff3b3b;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 16px;
    transition: background-color 0.2s;
}

.ios-install-modal .close-btn:hover {
    background: #e03434;
}

.modal { display: none; position: fixed; z-index: 2000; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(2,5,9,0.6); backdrop-filter: blur(6px); }
.modal-content { background: linear-gradient(180deg, #0f131a, #0b0e13); color: #e6e9ef; border: 1px solid rgba(255,255,255,0.06); margin: 5% auto; padding: 2rem; border-radius: 16px; width: 90%; max-width: 500px; position: relative; animation: modalSlideIn .3s ease; box-shadow: 0 18px 40px rgba(0,0,0,0.45); }
@keyframes modalSlideIn { from { opacity:0; transform: translateY(-50px);} to { opacity:1; transform: translateY(0);} }
.close { position: absolute; right: 1rem; top: 1rem; font-size: 2rem; cursor: pointer; color: #9fb1c6; }
.close:hover { color: #e6e9ef; }
.success-message { text-align: center; color: #2ecc71; font-size: 1.2rem; margin-bottom: 1rem; text-shadow: 0 0 16px rgba(46, 204, 113, 0.25); }
.error-message { text-align: center; color: #ff3b3b; font-size: 1.2rem; margin-bottom: 1rem; text-shadow: 0 0 16px rgba(255,59,59,.25); }
.success-details {
    margin-top: 1rem;
    font-size: 0.95rem;
    color: #a9b7c9;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    padding: 1rem;
    text-align: left;
}
.save-info-prompt {
    margin-top: 0.6rem;
    padding: 0.5rem 0.6rem;
    background: rgba(15, 23, 42, 0.55);
    border: 1px solid rgba(99, 102, 241, 0.35);
    border-radius: 12px;
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}
.save-info-prompt-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(99, 102, 241, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #818cf8;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.save-info-prompt-text {
    flex: 1 1 220px;
}
.save-info-prompt-text h4 {
    margin: 0 0 3px 0;
    color: #f8fafc;
    font-size: 0.9rem;
}
.save-info-prompt-text p {
    margin: 0;
    color: #cbd5f5;
    font-size: 0.8rem;
}
.save-info-prompt-actions {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}
.save-info-confirm-btn,
.save-info-decline-btn {
    border-radius: 6px;
    padding: 6px 10px;
    font-size: 0.8rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.2s ease;
}
.save-info-confirm-btn {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #fff;
    box-shadow: 0 12px 28px rgba(16, 185, 129, 0.35);
}
.save-info-confirm-btn:hover { transform: translateY(-1px); filter: brightness(1.05); }
.save-info-decline-btn {
    background: rgba(148, 163, 184, 0.12);
    border: 1px solid rgba(148, 163, 184, 0.35);
    color: #cbd5f5;
}
.save-info-decline-btn:hover { transform: translateY(-1px); border-color: rgba(148, 163, 184, 0.6); }
.save-info-prompt-status {
    margin-top: 8px;
    font-size: 0.85rem;
    color: #34d399;
}
.save-info-prompt-status.status-error { color: #f87171; }
.loading { display:none; text-align:center; margin-top:1rem; }
.spinner { border:4px solid #f3f3f3; border-top:4px solid #667eea; border-radius:50%; width:40px; height:40px; animation: spin 1s linear infinite; margin:0 auto; }
@keyframes spin { 0%{transform:rotate(0);} 100%{transform:rotate(360deg);} }

/* Bloklu saatlerin görsel dengesi */
select#time option.is-disabled,
select#mini_time option.is-disabled { color:#9ca3af; }
select#time option:disabled,
select#mini_time option:disabled { color:#9ca3af; }


.stylist-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
    margin-top: 12px;
}
.stylist-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 18px;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}
.stylist-card:hover {
    border-color: #38bdf8;
    transform: translateY(-2px);
}
.stylist-card.active {
    border-color: #38bdf8;
    box-shadow: 0 10px 26px rgba(56, 189, 248, 0.25);
    background: rgba(14, 165, 233, 0.1);
}
.stylist-card img,
.stylist-card .stylist-photo-fallback {
    width: 95px;
    height: 95px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #a855f7);
}
.stylist-card .stylist-name {
    font-weight: 600;
    color: #e2e8f0;
}
.stylist-empty {
    margin-top: 12px;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.4);
    border: 1px dashed rgba(148, 163, 184, 0.35);
    color: #94a3b8;
    font-size: 0.9rem;
}

