/*
Theme Name: Yikat Premium Theme
Theme URI: https://yikatapp.com
Author: Antigravity Google Deepmind Team
Author URI: https://deepmind.google
Description: Yikat Premium Landing Page and Service Request Wizard Theme. Highly responsive, premium physics micro-interactions, 100% PageSpeed score.
Version: 1.0.0
Text Domain: yikat-premium
*/

/* Premium Global Variables */
:root {
    --primary: #20B2AA;
    --primary-dark: #1E9B8A;
    --secondary: #2C3E50;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --dark-bg: #0f172a;
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
    --shadow-deep: 0 30px 100px rgba(0, 0, 0, 0.12);
}

html { scroll-behavior: smooth; }
* { margin: 0; padding: 0; box-sizing: border-box; }
html { overflow-x: hidden; width: 100%; max-width: 100vw; }
body { font-family: 'Poppins', sans-serif; line-height: 1.6; color: var(--text-main); background: var(--white); overflow-x: hidden; width: 100%; max-width: 100vw; position: relative; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; width: 100%; box-sizing: border-box; }

/* --- NAVIGATION --- */
.top-nav-bar {
    position: fixed; top: 1.5rem; left: 2rem; right: 2rem; z-index: 10000001;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255, 255, 255, 0.7); backdrop-filter: blur(25px);
    border-radius: 40px; padding: 0 1.5rem; border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03); height: 80px;
}
.nav-logo { display: flex; align-items: center; z-index: 1001; }
.nav-logo img { 
    width: 85px; height: 85px; border-radius: 50%; object-fit: cover; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.nav-logo img.rolling {
    animation: logoSpin 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes logoSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.nav-menu { display: flex; gap: 1rem; flex: 1; justify-content: center; align-items: center; }
.nav-button { color: var(--secondary); text-decoration: none; font-size: 0.95rem; font-weight: 700; padding: 0.6rem 1.2rem; border-radius: 30px; transition: 0.3s; }
.nav-button:hover { background: rgba(32, 178, 170, 0.1); color: var(--primary); }

.active-section-indicator {
    display: none;
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--secondary);
    background: white;
    background-size: 200% auto;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(32, 178, 170, 0.15);
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    white-space: nowrap;
    pointer-events: none;
    z-index: 5;
    
    /* Clip path transition for writing effect */
    clip-path: inset(0 100% 0 0);
    transition: opacity 0.2s ease, clip-path 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}
.active-section-indicator.visible {
    opacity: 1;
    clip-path: inset(0 0 0 0) !important;
}
.active-section-indicator.erase {
    opacity: 0;
    clip-path: inset(0 0 0 100%) !important;
}

/* Wiped & Polished Animations (Triggered by rolling logo) */
.active-section-indicator.wiped-right {
    background-image: linear-gradient(120deg, white 30%, rgba(32, 178, 170, 0.3) 40%, rgba(32, 178, 170, 0.6) 50%, rgba(32, 178, 170, 0.3) 60%, white 70%);
    animation: shineSweepRight 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}
.active-section-indicator.wiped-left {
    background-image: linear-gradient(120deg, white 30%, rgba(32, 178, 170, 0.3) 40%, rgba(32, 178, 170, 0.6) 50%, rgba(32, 178, 170, 0.3) 60%, white 70%);
    animation: shineSweepLeft 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes shineSweepRight {
    0% { background-position: 100% 0; transform: translateX(-50%) scale(1) rotate(0deg); }
    50% { background-position: 0 0; transform: translateX(-50%) scale(1.12) rotate(3deg); filter: brightness(1.15); box-shadow: 0 8px 25px rgba(32, 178, 170, 0.15); }
    100% { background-position: -100% 0; transform: translateX(-50%) scale(1) rotate(0deg); }
}

@keyframes shineSweepLeft {
    0% { background-position: -100% 0; transform: translateX(-50%) scale(1) rotate(0deg); }
    50% { background-position: 0 0; transform: translateX(-50%) scale(1.12) rotate(-3deg); filter: brightness(1.15); box-shadow: 0 8px 25px rgba(32, 178, 170, 0.15); }
    100% { background-position: 100% 0; transform: translateX(-50%) scale(1) rotate(0deg); }
}

.instagram-button {
    display: flex; align-items: center; justify-content: center;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%; color: white; text-decoration: none; transition: 0.4s;
    box-shadow: 0 10px 20px rgba(32, 178, 170, 0.2); font-size: 1.45rem;
    position: relative; overflow: visible;
}
.instagram-button:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(32, 178, 170, 0.4); }

.instagram-button.vibrant {
    animation: buttonVibrant 1.5s ease-in-out infinite;
    transform: scale(1.05);
}

@keyframes buttonVibrant {
    0%, 100% { box-shadow: 0 10px 20px rgba(32, 178, 170, 0.2); filter: brightness(1); }
    50% { box-shadow: 0 0 30px rgba(32, 178, 170, 0.6); filter: brightness(1.2); transform: scale(1.08); }
}

/* --- LANG SWITCHER --- */
.lang-switcher {
    display: flex;
    gap: 8px;
    align-items: center;
}
.lang-btn {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
    background: #f1f5f9;
    color: #64748b;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}
.lang-btn:hover {
    background: #e2e8f0;
    color: #334155;
}
.lang-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    box-shadow: 0 4px 10px rgba(32, 178, 170, 0.2);
}

/* --- BLOG YAZI TIPOGRAFISI ---
   Yazi govdesindeki tablo, liste ve basliklar icin stil. Bunlar olmadan
   tablolar cizgisiz, liste maddeleri de metinle ayni hizada kaliyordu. */
.yikat-post-content { font-size: 1.05rem; line-height: 1.75; color: #334155; }
.yikat-post-content > *:first-child { margin-top: 0; }
.yikat-post-content p { margin: 0 0 18px; }
.yikat-post-content strong { color: #0f172a; font-weight: 600; }
.yikat-post-content a { color: #2563eb; text-decoration: underline; text-underline-offset: 2px; }
.yikat-post-content a:hover { color: #1d4ed8; }

.yikat-post-content h2 {
    font-size: 1.55rem;
    line-height: 1.3;
    color: #0f172a;
    margin: 40px 0 14px;
    padding-top: 6px;
    border-top: 1px solid #eef2f7;
}
.yikat-post-content h3 {
    font-size: 1.18rem;
    line-height: 1.4;
    color: #0f172a;
    margin: 26px 0 10px;
}

/* Liste maddeleri metin hizasindan iceride dursun */
.yikat-post-content ul,
.yikat-post-content ol {
    margin: 0 0 20px;
    padding-left: 28px;
}
.yikat-post-content ul { list-style: disc outside; }
.yikat-post-content ol { list-style: decimal outside; }
.yikat-post-content li {
    margin-bottom: 10px;
    padding-left: 4px;
    line-height: 1.7;
}
.yikat-post-content li::marker { color: #94a3b8; }
.yikat-post-content li > ul,
.yikat-post-content li > ol { margin: 10px 0 0; }

/* Tablolar: genis olanlar kendi icinde yatay kayar */
.yikat-table-wrap {
    overflow-x: auto;
    margin: 24px 0;
    -webkit-overflow-scrolling: touch;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    background: #fff;
}
.yikat-table-wrap table {
    width: 100%;
    min-width: 440px;
    border-collapse: collapse;
    font-size: 0.95rem;
    margin: 0;
    color: #334155;
}
.yikat-table-wrap thead th {
    background: #f1f5f9;
    color: #0f172a;
    font-weight: 600;
    text-align: left;
    padding: 12px 14px;
    border-bottom: 2px solid #e2e8f0;
    white-space: nowrap;
}
.yikat-table-wrap td {
    padding: 12px 14px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
}
.yikat-table-wrap tbody tr:nth-child(even) { background: #f8fafc; }
.yikat-table-wrap tbody tr:last-child td { border-bottom: none; }
.yikat-table-wrap td:first-child { font-weight: 600; color: #0f172a; }
.yikat-table-wrap thead th:empty { min-width: 90px; }
.yikat-table-wrap .yikat-price-cell { color: #2563eb; white-space: nowrap; font-weight: 600; }

.yikat-post-content img { max-width: 100%; height: auto; border-radius: 10px; }

@media (max-width: 600px) {
    .yikat-post-content { font-size: 1rem; }
    .yikat-post-content h2 { font-size: 1.35rem; }
    .yikat-post-content ul,
    .yikat-post-content ol { padding-left: 22px; }
}

/* --- LANG SELECT (masaustu acilir dil menusu) ---
   Uc ayri kutu yerine tek dugme kullanilir; ust menude yer acar ve
   blog sayfalarinda "Profilim" ile birlikte tasmayi onler. */
.lang-select {
    position: relative;
    display: inline-block;
}
.lang-select-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
}
.lang-select-toggle:hover {
    background: #e2e8f0;
    color: #334155;
}
.lang-select-caret {
    font-size: 0.7em;
    transition: transform 0.2s ease;
}
.lang-select:hover .lang-select-caret,
.lang-select.open .lang-select-caret {
    transform: rotate(180deg);
}
.lang-select-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 170px;
    margin-top: 6px;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    z-index: 1000;
}
.lang-select:hover .lang-select-menu,
.lang-select.open .lang-select-menu {
    display: block;
    animation: fadeIn 0.25s;
}
.lang-select-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 14px;
    text-decoration: none;
    color: var(--secondary);
    font-size: 0.88rem;
    transition: background 0.2s;
}
.lang-select-menu a strong {
    min-width: 24px;
    font-weight: 700;
}
.lang-select-menu a span {
    flex: 1;
    font-weight: 500;
}
.lang-select-menu a i {
    color: var(--primary);
    font-size: 0.8em;
}
.lang-select-menu a:hover {
    background-color: #f1f5f9;
}
.lang-select-menu a.active {
    color: var(--primary);
    font-weight: 700;
}

/* --- HERO SECTION --- */
.hero { 
    min-height: 100vh; 
    background: linear-gradient(135deg, #20b2aa 0%, #1a9a93 40%, #0f172a 100%); 
    display: flex; align-items: center; color: white; padding: 160px 0 80px; 
    position: relative; overflow: hidden;
}
.hero::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}
.hero-content { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center; width: 100%; z-index: 10; position: relative; }
.hero-title { font-size: 4.8rem; font-weight: 900; line-height: 1.05; margin-bottom: 2rem; letter-spacing: -0.05em; text-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.hero-description { font-size: 1.4rem; opacity: 0.85; margin-bottom: 3.5rem; max-width: 550px; line-height: 1.5; }

.hero-app-badges { display: flex; gap: 15px; margin-top: 3rem; flex-wrap: wrap; }
.store-badge {
    height: 72px; background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 18px;
    display: flex; align-items: center; padding: 0 20px; transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1); cursor: pointer; text-decoration: none;
}
.store-badge img { height: 42px; width: auto; }
.store-badge.google img { height: 52px; }
.store-badge:hover { 
    background: rgba(255, 255, 255, 0.2); transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2); border-color: rgba(255, 255, 255, 0.4);
}

.phone-mockup img { width: 100%; max-width: 340px; border-radius: 40px; border: 12px solid #1e293b; box-shadow: 0 60px 120px rgba(0,0,0,0.5); transform: rotateY(-15deg) rotateX(8deg); animation: phoneFloat 6s ease-in-out infinite; margin-top: 20px; }
@keyframes phoneFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* --- FEATURES & GALLERY --- */
.features { padding: 100px 0; background: var(--bg-light); scroll-margin-top: 90px; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 40px; }
.feature-card { background: var(--white); padding: 50px 40px; border-radius: 32px; box-shadow: var(--shadow-soft); text-align: center; }
.feature-icon { width: 70px; height: 70px; background: #f0fdfa; color: var(--primary); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 2rem; margin: 0 auto 30px; }

.screenshots { padding: 80px 0; background: var(--white); scroll-margin-top: 90px; }
.screenshot-gallery { position: relative; max-width: 1000px; margin: 0 auto; overflow: hidden; border-radius: 40px; box-shadow: 0 40px 100px rgba(0,0,0,0.1); }
.gallery-container { display: flex; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.screenshot-slide { min-width: 100%; flex-shrink: 0; padding: 60px 20px; display: flex; justify-content: center; background: #f8fafc; }
.screenshot-slide img { max-width: 320px; border-radius: 35px; border: 8px solid #1e293b; }
.gallery-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 64px; height: 64px; border-radius: 50%; background: var(--white); border: none; box-shadow: 0 10px 30px rgba(0,0,0,0.15); cursor: pointer; z-index: 100; font-size: 2rem; color: var(--primary); display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.gallery-btn.prev { left: 20px; }
.gallery-btn.next { right: 20px; }

/* --- CONTACT --- */
.contact { padding: 100px 0; background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%); scroll-margin-top: 90px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: stretch; }

.contact-info-card { 
    background: var(--white); padding: 60px; border-radius: 40px; 
    box-shadow: var(--shadow-deep); border: 1px solid rgba(255, 255, 255, 0.8);
}
.contact-item { display: flex; gap: 30px; margin-bottom: 45px; }
.contact-icon { 
    width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); 
    color: white; border-radius: 20px; display: flex; align-items: center; justify-content: center; 
    font-size: 1.6rem; box-shadow: 0 10px 20px rgba(32, 178, 170, 0.2); flex-shrink: 0;
}
.contact-details h4 { font-size: 1.3rem; font-weight: 800; color: var(--secondary); margin-bottom: 10px; }
.contact-details p { color: var(--text-muted); font-size: 1.1rem; }

.contact-form-card { 
    background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(20px); 
    padding: 60px; border-radius: 40px; box-shadow: var(--shadow-deep); 
    border: 1px solid rgba(255, 255, 255, 0.5); 
}
.form-group { position: relative; margin-bottom: 25px; }
.form-group i { position: absolute; left: 20px; top: 22px; color: var(--primary); font-size: 1.1rem; z-index: 10; }
.form-input { 
    width: 100%; padding: 1.3rem 1.5rem 1.3rem 3.5rem; background: #f8fafc; 
    border: 2px solid transparent; border-radius: 20px; font-weight: 600; 
    font-size: 1rem; color: var(--secondary); transition: 0.3s; 
}
.form-input:focus { background: white; border-color: var(--primary); outline: none; box-shadow: 0 10px 25px rgba(32, 178, 170, 0.1); }
textarea.form-input { min-height: 160px; resize: none; padding-top: 1.3rem; }

.contact-submit-btn { 
    width: 100%; padding: 1.4rem; background: linear-gradient(135deg, var(--primary), var(--primary-dark)); 
    color: white; border: none; border-radius: 20px; font-weight: 800; font-size: 1.2rem; 
    cursor: pointer; transition: 0.4s; box-shadow: 0 15px 30px rgba(32, 178, 170, 0.3); 
    display: flex; align-items: center; justify-content: center; gap: 15px; 
}
.contact-submit-btn:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(32, 178, 170, 0.4); }


/* --- QUICK REQUEST WIZARD (RE-RESTORED PREMIUM) --- */
.wizard-overlay {
    display: none !important;
    position: fixed !important;
    top: 0 !important; left: 0 !important;
    width: 100vw !important; height: 100vh !important;
    background: rgba(15, 23, 42, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    z-index: 20000000 !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 20px !important;
    overflow-y: auto !important;
}
.wizard-overlay.active { display: flex !important; }

.wizard-card {
    display: flex !important;
    flex-direction: column !important;
    max-height: 85vh !important; /* Cap card height to 85% of viewport height */
    background: #ffffff !important;
    width: 100% !important;
    max-width: 430px !important;
    border-radius: 45px !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3) !important;
    position: relative !important;
    overflow: hidden !important;
    -webkit-backface-visibility: hidden !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
    isolation: isolate !important;
    animation: wizardPop 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.wizard-floating-close {
    position: absolute !important;
    top: 15px !important;
    right: 15px !important;
    width: 38px !important;
    height: 38px !important;
    background: #f8fafc !important;
    border: none !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05) !important;
    color: #64748b !important;
    font-size: 1rem !important;
    z-index: 100 !important;
    transition: 0.3s !important;
}

.wizard-floating-close:hover {
    transform: scale(1.1) rotate(90deg) !important;
    color: #ef4444 !important;
}

.wizard-progress-container {
    height: 6px !important;
    background: #f1f5f9 !important;
    width: 100% !important;
    overflow: hidden !important;
    -webkit-backface-visibility: hidden !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
    isolation: isolate !important;
    border-radius: 45px 45px 0 0 !important;
}

.wizard-progress-bar {
    height: 100% !important;
    width: 20% !important;
    background: linear-gradient(90deg, var(--primary), #4fd1c5) !important;
    box-shadow: 0 0 15px rgba(32, 178, 170, 0.4) !important;
    transition: width 0.6s cubic-bezier(0.65, 0, 0.35, 1) !important;
}

.wizard-body { 
    padding: 45px 30px 25px 30px; 
    overflow-y: auto !important; 
    flex-grow: 1 !important; 
    background: white; 
    position: relative;
    -webkit-overflow-scrolling: touch !important; /* Premium buttery smooth touch scroll on mobile Safari */
}
.wizard-step { display: none; width: 100%; }
.wizard-step.active { display: block; animation: stepFade 0.3s ease-out; }

.step-title { font-size: 1.3rem; font-weight: 800; color: var(--secondary); margin-bottom: 20px; text-align: center; }

.wizard-footer { 
    padding: 20px 30px; background: #f8fafc; border-top: 1px solid #f1f5f9; 
    display: flex; justify-content: space-between; align-items: center; 
    flex-shrink: 0 !important; /* Keep footer fixed at bottom of card */
}

/* --- SERVICE GRID & OPTIONS - COMPACT LIST VIEW --- */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 12px;
}
.service-option {
    background: #ffffff;
    border: 2px solid #f1f5f9;
    border-radius: 22px;
    padding: 10px 14px;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: row; /* Horizontal alignment */
    align-items: center;
    gap: 12px;
}
.service-option:hover {
    border-color: var(--secondary);
    background: #f0fdfa;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(32, 178, 170, 0.08);
}
.service-option.selected {
    border-color: var(--secondary);
    background: #f0fdfa;
    box-shadow: 0 0 0 3px rgba(32, 178, 170, 0.08);
}
.option-icon {
    width: 36px;
    height: 36px;
    background: #f8fafc;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--secondary);
    transition: 0.3s;
    flex-shrink: 0;
}
.service-option:hover .option-icon, .service-option.selected .option-icon {
    background: var(--secondary);
    color: white;
}
.service-option span { 
    font-size: 0.85rem; 
    font-weight: 700; 
    color: #475569; 
    line-height: 1.2;
}

/* Span last odd item to make it center-balanced */
.service-option:last-child:nth-child(odd) {
    grid-column: span 2;
}

/* Form Controls in Wizard - ULTIMATE PREMIUM */
.premium-select, .premium-input, .premium-textarea { 
    width: 100%; 
    padding: 0.8rem 1.1rem; 
    border: 2px solid #f1f5f9; 
    border-radius: 18px; 
    font-size: 1.05rem !important;
    font-weight: 700 !important; 
    font-family: 'Poppins', sans-serif; 
    background: #f8fafc; 
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); 
    margin-bottom: 0px !important; 
    appearance: none; 
    cursor: pointer; 
    color: var(--secondary);
}
.premium-select { 
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2320B2AA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat; 
    background-position: right 14px center; 
    background-size: 18px;
}
.premium-input:focus, .premium-select:focus, .premium-textarea:focus { 
    border-color: var(--primary); background: white; outline: none; 
    box-shadow: 0 8px 20px rgba(32, 178, 170, 0.08); transform: translateY(-1px);
}
.premium-textarea { min-height: 100px; resize: none; padding-top: 0.8rem; }

/* Location & Detail Step Styling */
.form-group-custom { 
    display: flex; 
    flex-direction: column; 
    gap: 6px; 
    margin-bottom: 14px; 
}
.form-group-custom label { 
    font-size: 0.92rem; 
    font-weight: 800; 
    color: #475569; 
    display: flex; 
    align-items: center; 
    gap: 8px; 
}
.form-group-custom label i { color: var(--primary); font-size: 1rem; }

/* Location Step Styling */
.location-container { display: flex; flex-direction: column; gap: 15px; align-items: center; }
.location-auto-btn { 
    width: 100%; padding: 1.1rem; background: linear-gradient(135deg, #3b82f6, #2563eb); 
    color: white; border: none; border-radius: 18px; font-weight: 800; cursor: pointer; 
    display: flex; align-items: center; justify-content: center; gap: 10px; 
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2); transition: 0.3s; 
}
.location-auto-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3); }

.location-selectors { width: 100%; display: flex; flex-direction: column; gap: 5px; }
/* Google Auth Styling */
.google-auth-container { margin-bottom: 25px; text-align: center; }
.btn-google-auth { 
    width: 100%; padding: 0.9rem; background: white; border: 2px solid #e2e8f0; 
    border-radius: 15px; display: flex; align-items: center; justify-content: center; 
    gap: 12px; font-weight: 700; color: #475569; cursor: pointer; transition: 0.3s; 
    font-size: 1rem;
}
.btn-google-auth img { width: 24px; height: 24px; }
.btn-google-auth:hover { background: #f8fafc; border-color: #cbd5e1; transform: translateY(-2px); }

.auth-divider { 
    margin: 20px 0; position: relative; border-bottom: 1px solid #f1f5f9; height: 1px; 
}
.auth-divider span { 
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); 
    background: white; padding: 0 15px; font-size: 0.8rem; color: #94a3b8; 
    font-weight: 600; text-transform: uppercase; white-space: nowrap;
}

.privacy-wrapper { display: flex; gap: 12px; align-items: flex-start; margin-top: 20px; text-align: left; }
.privacy-wrapper input { width: 20px; height: 20px; margin-top: 2px; cursor: pointer; }
.privacy-wrapper label { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; }
.btn-prev { padding: 0.8rem 1.5rem; border-radius: 20px !important; border: 2px solid #e2e8f0; background: white; font-weight: 700; cursor: pointer; transition: 0.3s; }
.btn-next { padding: 0.8rem 2.5rem; border-radius: 20px !important; border: none; background: var(--primary); color: white; font-weight: 800; cursor: pointer; box-shadow: 0 10px 20px rgba(32, 178, 170, 0.2); transition: 0.3s; }
.btn-next:disabled { opacity: 0.5; cursor: not-allowed; }
.btn-next:hover:not(:disabled) { background: var(--primary-dark); transform: translateY(-3px); }

.detected-address-info { font-size: 0.85rem; color: var(--primary); font-weight: 700; text-align: center; margin-top: 5px; }

.wizard-footer { 
    padding: 20px 35px; 
    background: #f8fafc; 
    border-top: 1px solid #f1f5f9; 
    display: flex; 
    justify-content: space-between; 
    border-radius: 0 0 45px 45px !important; /* Matches card roundness, stops color bleed */
}

/* Success Page Styling */
.success-content { text-align: center; padding: 10px 0; }
.success-icon-wrapper { 
    font-size: 5rem; color: var(--primary); margin-bottom: 10px; position: relative;
    animation: successScale 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); 
}
.live-pulse {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 100px; height: 100px; background: rgba(32, 178, 170, 0.2);
    border-radius: 50%; z-index: -1; animation: pulseRing 2s infinite;
}
@keyframes pulseRing { 0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; } 100% { transform: translate(-50%, -50%) scale(2); opacity: 0; } }

.live-timer-container { 
    background: #0f172a; color: white; border-radius: 25px; padding: 25px; 
    margin-bottom: 30px; display: flex; align-items: center; justify-content: space-around;
}
.timer-box { display: flex; flex-direction: column; align-items: center; }
.timer-box span { font-size: 2.2rem; font-weight: 800; font-family: monospace; color: var(--primary); }
.timer-box small { text-transform: uppercase; letter-spacing: 2px; font-size: 0.7rem; opacity: 0.7; }

.live-badge { 
    background: rgba(239, 68, 68, 0.1); color: #ef4444; padding: 8px 15px; 
    border-radius: 30px; font-weight: 800; font-size: 0.8rem; display: flex; 
    align-items: center; gap: 8px; border: 1px solid rgba(239, 68, 68, 0.2);
}
.live-badge .dot { width: 8px; height: 8px; background: #ef4444; border-radius: 50%; animation: dotBlink 1s infinite; }
@keyframes dotBlink { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

.success-title { font-size: 1.8rem; font-weight: 800; color: var(--secondary); margin-bottom: 30px; }

.success-info-grid { display: flex; flex-direction: column; gap: 20px; margin-bottom: 35px; text-align: left; }
.success-info-item { display: flex; gap: 15px; align-items: flex-start; padding: 15px; background: #f8fafc; border-radius: 20px; }
.success-info-item i { font-size: 1.2rem; color: var(--primary); margin-top: 3px; }
.success-info-item p { font-size: 0.95rem; line-height: 1.5; color: var(--secondary); }

.success-badges {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin: 25px 0 30px;
}
.success-badges a {
    display: inline-flex;
    height: 44px;
    align-items: center;
}
.success-badges img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.success-badges img:hover {
    transform: scale(1.05);
}

.btn-home { 
    width: 100%; padding: 1.2rem; background: #ef4444; color: white; 
    border: none; border-radius: 20px; font-weight: 800; font-size: 1.1rem; 
    cursor: pointer; transition: 0.3s; box-shadow: 0 10px 20px rgba(239, 68, 68, 0.2); 
}
.btn-home:hover { transform: translateY(-5px); background: #dc2626; box-shadow: 0 15px 30px rgba(239, 68, 68, 0.3); }

/* --- FOOTER --- */
.footer { 
    background: var(--dark-bg); color: var(--white); padding: 80px 0 40px; 
    border-top: 1px solid #1e293b; position: relative; z-index: 10; 
}
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1.1fr 1fr; gap: 45px; margin-bottom: 60px; align-items: start; }
/* Footer ic link kolonu: 4 kolona sigmayan orta genislikte 2x2 olsun */
@media (max-width: 1100px) and (min-width: 769px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
.footer-services li { margin-bottom: 10px; }
.footer-popular { margin-bottom: 10px; }
.footer-popular .seo-dir-title .seo-toggle-icon { display: none; }
.footer-logo-row { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.footer-logo { width: 50px; height: 50px; border-radius: 50%; }
.footer-social { display: flex; align-items: center; }
.footer-social a { 
    width: 36px; height: 36px; background: rgba(255,255,255,0.05); 
    color: white; border-radius: 50%; display: flex; align-items: center; 
    justify-content: center; text-decoration: none; transition: 0.3s; 
    border: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem;
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }

.footer-slogan { color: #94a3b8; max-width: 300px; line-height: 1.6; font-size: 0.9rem; margin-bottom: 0; }

.footer-nav h4, .footer-legal h4 { color: white; margin-bottom: 25px; font-size: 1.1rem; font-weight: 800; }
.footer-apps { margin-top: 25px; display: flex; gap: 10px; align-items: center; }
.footer-store-link { display: flex; align-items: center; height: 40px; }
.footer-store-link img { height: 40px; width: auto; transition: 0.3s; border-radius: 6px; }
.footer-store-link.google-badge img { height: 58px; margin-left: -8px; } /* Google logosu daha küçük göründüğü için büyütüyoruz */
.footer-store-link:hover img { transform: translateY(-3px); }
.footer-nav ul, .footer-legal ul { list-style: none; }
.footer-nav li, .footer-legal li { margin-bottom: 12px; }
.footer-nav a, .footer-link-btn { 
    color: #94a3b8; text-decoration: none; font-weight: 600; background: none; border: none; 
    cursor: pointer; padding: 0; transition: 0.3s; font-family: 'Poppins', sans-serif;
    font-size: 0.95rem; display: block; position: relative; z-index: 50; pointer-events: auto;
}
.footer-nav a:hover, .footer-link-btn:hover { color: var(--white); transform: translateX(5px); }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 40px; text-align: center; color: #475569; }

/* FAB (Floating Action Button) */
.fab-container { position: fixed; bottom: 35px; right: 35px; z-index: 9999999; pointer-events: auto; }
.fab-button { 
    width: 180px; height: 60px; 
    background: linear-gradient(135deg, #ff5e36 0%, #ff822e 100%); 
    color: white; border-radius: 30px; display: flex; align-items: center; justify-content: center; 
    gap: 12px; font-weight: 800; cursor: pointer; position: relative; overflow: hidden;
    box-shadow: 0 10px 25px rgba(255, 94, 54, 0.35); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: fabPulse 2s infinite;
}
.fab-button i { font-size: 1.15rem; transition: transform 0.3s ease; }
.fab-button span { letter-spacing: 0.02em; }

.fab-button::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
}

.fab-button:hover { 
    transform: translateY(-5px) scale(1.02); 
    box-shadow: 0 15px 35px rgba(255, 94, 54, 0.5); 
}
.fab-button:hover::after {
    animation: shineSwipe 0.8s ease-in-out forwards;
}
.fab-button:hover i {
    animation: magicTilt 0.6s ease-in-out infinite alternate;
}
.fab-button:active { transform: scale(0.95); }

@keyframes fabPulse {
    0% { box-shadow: 0 10px 25px rgba(255, 94, 54, 0.3), 0 0 0 0 rgba(255, 94, 54, 0.5); }
    70% { box-shadow: 0 15px 35px rgba(255, 94, 54, 0.4), 0 0 0 12px rgba(255, 94, 54, 0); }
    100% { box-shadow: 0 10px 25px rgba(255, 94, 54, 0.3), 0 0 0 0 rgba(255, 94, 54, 0); }
}

@keyframes shineSwipe {
    0% { left: -100%; }
    100% { left: 125%; }
}

@keyframes magicTilt {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(15deg) scale(1.2); }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-logo-row { justify-content: center; }
    .footer-brand { display: flex; flex-direction: column; align-items: center; }
    .footer-slogan { margin: 0 auto; }
    .footer-nav ul, .footer-legal ul { 
        display: flex; flex-direction: column; align-items: center; 
    }
    .footer-link-btn { text-align: center; transform: none !important; }
    .footer-apps { justify-content: center; }
}

@media (max-width: 968px) {
    .hero { padding: 140px 0 60px; text-align: center; }
    .hero-content { grid-template-columns: 1fr; gap: 3rem; }
    .hero-title { font-size: 2.8rem; }
    .hero-app-badges { justify-content: center; margin-bottom: 60px; }
    .hero-description { margin-left: auto; margin-right: auto; }
    
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-info-card, .contact-form-card { padding: 30px; }
    
    .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-social, .footer-apps { justify-content: center; }
    .footer-slogan { margin-left: auto; margin-right: auto; }
    
    .nav-menu { display: none; }
    .top-nav-bar { left: 1rem; right: 1rem; height: 65px; padding: 0.5rem 1rem; }
    
    .fab-container { display: none !important; }
}
/* --- MODAL SYSTEM (PRIVACY & TERMS) --- */
.modal-overlay { 
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; 
    background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(10px); 
    z-index: 20000000; display: none; align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.active { display: flex; }

.modal-card { 
    background: var(--white); width: 100%; max-width: 540px; max-height: 85vh; 
    border-radius: 45px; box-shadow: 0 40px 100px rgba(0,0,0,0.4); 
    display: flex; flex-direction: column; overflow: hidden; 
    animation: modalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes modalIn { from { opacity: 0; transform: scale(0.9) translateY(20px); } to { opacity: 1; transform: scale(1) translateY(0); } }

.modal-header { 
    padding: 20px 30px; background: #f8fafc; border-bottom: 1px solid #f1f5f9; 
    display: flex; justify-content: space-between; align-items: center; flex-shrink: 0;
}
.modal-header h3 { font-size: 1.1rem; font-weight: 800; color: var(--secondary); margin: 0; }
.modal-close { background: #e2e8f0; border: none; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: 0.3s; }
.modal-close:hover { background: #cbd5e1; transform: rotate(90deg); }

.modal-body { padding: 30px; overflow-y: auto; flex-grow: 1; font-size: 0.95rem; line-height: 1.7; color: #475569; }
.modal-body h4 { color: var(--secondary); margin: 25px 0 10px; font-weight: 800; border-bottom: 2px solid var(--primary); display: inline-block; }
.modal-body p { margin-bottom: 15px; }

/* MODAL GIZLEME - KESIN COZUM */
.modal-overlay { 
    display: none !important; 
    position: fixed !important; 
    top: 0 !important; 
    left: 0 !important; 
    width: 100% !important; 
    height: 100% !important; 
    background: rgba(15, 23, 42, 0.8) !important; 
    backdrop-filter: blur(10px) !important; 
    z-index: 20000000 !important; 
    align-items: center; 
    justify-content: center; 
}
.modal-overlay.active { 
    display: flex !important; 
}

/* --- NEW PREMIUM WIZARD COMPONENTS --- */
.toggle-container {
    display: flex;
    background: #f1f5f9;
    padding: 6px;
    border-radius: 20px;
    margin: 15px 0;
    gap: 6px;
}
.toggle-option {
    flex: 1;
    padding: 12px;
    text-align: center;
    border-radius: 15px;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    color: #64748b;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.toggle-option.active {
    background: white;
    color: var(--secondary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.toggle-option i { font-size: 1rem; }

.selection-grid-mini {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 10px;
}
.mini-card {
    background: #f8fafc;
    border: 2px solid #f1f5f9;
    padding: 12px 8px;
    border-radius: 15px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    color: #475569;
}
.mini-card:hover { border-color: var(--primary); background: white; }
.mini-card.active {
    background: #f0fdfa;
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(32, 178, 170, 0.1);
}

.input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.service-details-extra {
    animation: slideUp 0.4s ease-out;
}

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

.success-info-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
    text-align: left;
}
.success-info-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 15px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
}
.success-info-item i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 2px;
}
.success-info-item p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #475569;
    margin: 0;
}

/* Wizard Overlay Fixes for Mobile */
@media (max-width: 600px) {
    .service-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .active-section-indicator {
        display: block !important;
    }
    
    /* Gallery Mobile Optimizations */
    .screenshot-gallery {
        border-radius: 24px !important;
    }
    .screenshot-slide {
        padding: 40px 10px !important;
    }
    .screenshot-slide img {
        max-width: 250px !important;
        width: 100% !important;
        height: auto !important;
        border-radius: 25px !important;
        border: 6px solid #1e293b !important;
        box-sizing: border-box !important;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
    }
    .gallery-btn {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.3rem !important;
    }
    .gallery-btn.prev {
        left: 10px !important;
    }
    .gallery-btn.next {
        right: 10px !important;
    }
}

/* --- Live Offers Premium Styling --- */
.offers-container-premium {
    margin: 24px 0 16px 0;
    width: 100%;
    text-align: left;
}

.offers-header-premium {
    font-size: 1.05rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 800;
    text-align: left;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Profile Dropdown CSS */
.profile-dropdown {
    position: relative;
    display: inline-block;
}

/* Base button styles for Desktop */
.nav-action-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

#loginBtn.nav-action-btn {
    color: #ffffff;
    background: #0f172a;
}

#loginBtn.nav-action-btn:hover {
    background: #1e293b;
    transform: translateY(-1px);
}

.profile-dropdown-btn.nav-action-btn {
    color: #334155;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.profile-dropdown-btn.nav-action-btn:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.dropdown-icon {
    font-size: 0.75rem;
    margin-left: 2px;
}

.profile-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0; /* Changed from 5px to 0 to prevent gap */
    padding-top: 5px; /* Added padding to create an invisible bridge */
    background-color: transparent; /* Keep background transparent for the top padding */
    min-width: 180px;
    z-index: 1000;
    transform-origin: top right;
}

/* We need an inner container for the white background so the padding bridge is invisible */
.profile-dropdown-inner {
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    border-radius: 12px;
    border: 1px solid #f1f5f9;
    overflow: hidden;
    animation: dropdownFade 0.2s ease-out forwards;
}

@keyframes dropdownFade {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.profile-dropdown:hover .profile-dropdown-content {
    display: block;
}

.profile-dropdown-inner a {
    color: #334155;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.2s;
}

.profile-dropdown-inner a:hover {
    background-color: #f8fafc;
    color: #0f172a;
}

.dropdown-divider {
    height: 1px;
    background-color: #f1f5f9;
    margin: 4px 0;
}

.profile-dropdown-inner a.logout-link {
    color: #ef4444;
}
.profile-dropdown-inner a.logout-link:hover {
    background-color: #fef2f2;
}

.offers-header-premium span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.offers-header-premium span i {
    color: var(--primary);
}

.offer-count-badge-premium {
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 99px;
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(32, 178, 170, 0.2);
}

.offers-list-premium {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 220px;
    overflow-y: auto;
    padding-right: 6px;
}

.offers-list-premium::-webkit-scrollbar {
    width: 6px;
}
.offers-list-premium::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 99px;
}
.offers-list-premium::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 99px;
}

.offers-empty-state {
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 600;
    text-align: center;
    padding: 24px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px dashed #e2e8f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.offers-empty-state i {
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.6;
}

.offer-card-premium {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    animation: offerPopIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1) forwards;
}

.offer-card-premium:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(32, 178, 170, 0.08);
}

.offer-info-premium {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.offer-washer-name {
    color: var(--secondary);
    font-size: 0.95rem;
    font-weight: 800;
}

.offer-note {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

.offer-price-container {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.offer-price {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--primary);
}

@keyframes offerPopIn {
    from { opacity: 0; transform: scale(0.92) translateY(8px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

/* --- Quick Add Basket UI Elements --- */
.quick-add-box {
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 16px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}
.input-row-mini {
    display: flex;
    gap: 10px;
    align-items: flex-end;
    width: 100%;
}
.input-row-mini > div {
    flex: 1;
    margin-bottom: 0 !important;
}
.input-row-mini .premium-btn-mini {
    flex-shrink: 0;
}
.premium-btn-mini {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.premium-btn-mini:hover {
    background: #199c94;
    transform: translateY(-1px);
}
.added-items-container {
    margin-top: 15px;
    margin-bottom: 15px;
    text-align: left;
}
.list-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 8px;
    display: block;
}
.added-items-list {
    background: #ffffff;
    border: 1.5px dashed #cbd5e1;
    border-radius: 20px;
    padding: 12px;
    min-height: 50px;
    max-height: 150px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.added-item-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f1f5f9;
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
    animation: itemPopIn 0.3s ease;
}
.added-item-row .delete-btn {
    background: none;
    border: none;
    color: #ef4444;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 2px 6px;
    border-radius: 6px;
    transition: 0.2s;
}
.added-item-row .delete-btn:hover {
    background: #fee2e2;
}

@keyframes itemPopIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* Mobile-Specific Overrides */
@media (min-width: 769px) {
    .mobile-auth-container { display: none !important; }
}
@media (max-width: 768px) {
    .hero-content {
        padding-top: 120px;
    }
    
    .desktop-auth-container { display: none !important; }
    .mobile-auth-container { display: flex; flex-direction: column; width: 100%; align-items: stretch; gap: 10px; margin-top: 10px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,0.1); }
    
    /* LOGO HALKASI.
       Once: yalnizca height veriliyordu, temel kuraldaki width: 85px yerinde kalinca
       kutu 85x40 elipse donuyor ve object-fit: cover logonun altini ustunu kirpiyordu.
       Sonra: kutu kare yapildi ama bu sefer logo halkanin icinde kuculdu, cunku
       app_logo.png'nin GERCEK cizim alani 500x500 tuvalin yalnizca 326x298'i (%65 x %60),
       gerisi seffaf pay. object-fit: contain o seffaf payi da kutuya sigdiriyor.
       Cozum: halkayi <a> cizsin, gorsel halkadan buyuk verilip icinde kirpilsin.
       82 / 56 = 1.46 orani, 82 * 0.652 = 53.5px cizim genisligi, 56px halkada ~%96 doluluk.
       Buyutulecekse dikkat: %100'e yaklasinca sunger ucu halkaya tegetlesir. */
    .nav-logo {
        width: 56px; height: 56px; flex: none; justify-content: center;
        border-radius: 50%; overflow: hidden;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
    .nav-logo img {
        width: 82px; height: 82px; max-width: none; flex: none;
        border-radius: 0; box-shadow: none; object-fit: contain;
    }

    .wizard-overlay {
        padding: 10px !important;
        align-items: center !important;
        overflow: hidden !important;
    }
    .wizard-card {
        max-width: 100% !important;
        max-height: 85vh !important; /* Capped modal card height */
        border-radius: 35px !important;
    }
}

/* --- SEO Personalization Tag & Collapsible Directory --- */
.seo-city-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(32, 178, 170, 0.1);
    border: 1px solid rgba(32, 178, 170, 0.3);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 800;
    margin-bottom: 20px;
}
.seo-city-tag i {
    animation: markerBounce 1.5s infinite ease-in-out;
}
@keyframes markerBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.footer-seo-directory {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    width: 100%;
}
.seo-dir-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #f8fafc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
    user-select: none;
}
.seo-dir-title:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(32, 178, 170, 0.3);
}
.seo-toggle-icon {
    font-size: 0.85rem;
    color: #64748b;
    transition: transform 0.3s ease;
}
.seo-dir-title.active .seo-toggle-icon {
    transform: rotate(180deg);
    color: var(--primary);
}
.seo-city-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin-top: 18px;
    padding: 10px 8px;
    animation: slideDownFade 0.3s ease-out forwards;
}
.seo-city-link {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: #94a3b8;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.seo-city-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.25);
}

@keyframes slideDownFade {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Local SEO Active Washers Section --- */
.local-washers-section {
    padding: 80px 0;
    background: #ffffff;
}
.washers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.washer-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.washer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.washer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    border-color: rgba(32, 178, 170, 0.2);
}
.washer-card:hover::before {
    opacity: 1;
}
.washer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.washer-badge {
    background: #ecfdf5;
    color: #059669;
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.washer-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #fbbf24;
    font-weight: 700;
    font-size: 0.95rem;
}
.washer-rating span {
    color: #64748b;
    font-weight: 400;
    font-size: 0.8rem;
}
.washer-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.3;
}
.washer-location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    font-size: 0.85rem;
    margin-bottom: 20px;
}
.washer-services {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 25px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}
.service-tag {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    transition: all 0.2s ease;
}
.washer-card:hover .service-tag {
    background: rgba(32, 178, 170, 0.05);
    color: var(--primary-dark);
}
.offer-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(32, 178, 170, 0.15);
}
.offer-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(32, 178, 170, 0.25);
}
.offer-btn i {
    transition: transform 0.2s ease;
}
.offer-btn:hover i {
    transform: translateX(4px);
}

.washer-fallback-card {
    max-width: 600px;
    margin: 40px auto 0;
    background: #f8fafc;
    border: 2px dashed #cbd5e1;
    border-radius: 24px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.3s ease;
}
.washer-fallback-card:hover {
    border-color: var(--primary);
    background: rgba(32, 178, 170, 0.02);
}
.fallback-icon {
    font-size: 3.5rem;
    color: #94a3b8;
    margin-bottom: 20px;
    animation: pulseIcon 2s infinite ease-in-out;
}
@keyframes pulseIcon {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}
.fallback-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 25px;
}
.fallback-buttons a {
    padding: 14px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}
.fallback-buttons .apple {
    background: #0f172a;
    color: #ffffff;
}
.fallback-buttons .apple:hover {
    background: #1e293b;
    transform: translateY(-2px);
}
.fallback-buttons .android {
    background: var(--primary);
    color: #ffffff;
}
.fallback-buttons .android:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* --- Floating Mobile Call To Action Button (Sticky Bottom Right) --- */
.floating-cta-btn {
    display: none;
}

@media (max-width: 768px) {
    .hide-on-mobile {
        display: none !important;
    }
    
    .nav-action-btn {
        padding: 0 !important;
        border-radius: 50% !important;
        width: 40px !important;
        height: 40px !important;
        justify-content: center !important;
        background-color: #0f172a !important; /* Ensure dark background looks good */
        color: white !important;
        box-shadow: 0 2px 10px rgba(15, 23, 42, 0.3) !important;
        border: none !important;
    }

    .nav-action-btn i {
        margin: 0 !important;
        font-size: 1.2rem !important; /* Match instagram icon size */
    }

    .profile-dropdown-btn.nav-action-btn {
        background-color: #f8fafc !important; /* Lighter color for profile */
        color: #334155 !important;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05) !important;
    }

    .dropdown-icon {
        display: none !important;
    }
    
    .nav-right {
        gap: 10px !important;
    }

    .app-showcase-content h2 {
        font-size: 2rem;
    }
    .floating-cta-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        right: 20px;
        bottom: 20px;
        background: linear-gradient(135deg, #ff5e36 0%, #ff822e 100%);
        color: white !important;
        border-radius: 40px;
        padding: 16px 28px;
        font-size: 1.15rem;
        font-weight: 800;
        font-family: 'Poppins', sans-serif;
        box-shadow: 0 10px 25px rgba(255, 94, 54, 0.4);
        cursor: pointer;
        z-index: 10000002;
        gap: 8px;
        white-space: nowrap;
        animation: mobilePulse 2s infinite;
        transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        opacity: 0;
        pointer-events: none;
        transform: translateY(20px);
    }
    .floating-cta-btn.visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    .floating-cta-btn:active {
        transform: scale(0.95);
        box-shadow: 0 2px 8px rgba(255, 94, 54, 0.2);
    }
    .floating-cta-btn i {
        font-size: 1.1rem;
    }
    
/* Hide active-section-indicator to prevent overlay conflicts */
    .active-section-indicator {
        display: none !important;
    }
}

.mobile-menu-btn {
    display: none;
}

/* Hide annoying seo-city-tag everywhere */
.seo-city-tag {
    display: none !important;
}

/* --- New UI Components for Platform Conversion --- */

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}
.nav-dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    min-width: 200px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.1);
    z-index: 1;
    border-radius: 12px;
    top: 100%;
    left: 0;
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.nav-dropdown-content a {
    color: var(--secondary);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    transition: background 0.2s;
}
.nav-dropdown-content a i {
    margin-right: 8px;
    color: var(--primary);
    width: 20px;
    text-align: center;
}
.nav-dropdown-content a:hover {
    background-color: #f1f5f9;
}
.nav-dropdown:hover .nav-dropdown-content {
    display: block;
    animation: fadeIn 0.3s;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Checklist */
.hero-checklist {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 2rem;
}
.hero-checklist span {
    font-size: 1.1rem;
    font-weight: 600;
    background: rgba(255,255,255,0.1);
    padding: 8px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero-checklist span i {
    color: #4ade80;
}

/* Hero Submit Button */
.hero-submit-btn {
    background: linear-gradient(135deg, #ff5e36 0%, #ff822e 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 10px 20px rgba(255, 94, 54, 0.3);
    white-space: nowrap;
}
.hero-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(255, 94, 54, 0.4);
}

/* Trust Elements */
.hero-trust-elements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 60px;
    position: relative;
    z-index: 20;
    padding: 0 20px;
}
.trust-badge {
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s;
}
.trust-badge:hover {
    transform: translateY(-5px);
}
.trust-icon {
    width: 50px;
    height: 50px;
    background: #f0fdfa;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.trust-text strong {
    display: block;
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 800;
}
.trust-text span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

@media (max-width: 968px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 2rem; width: 100%; max-width: 100%; box-sizing: border-box; overflow-x: hidden; }
    /* Mobil tipografi olcekleri (30 Tem 2026): H1 32 -> 24, aciklama 22.4 -> 18.
       Dar ekranda uzun hizmet basliklari 32px'te ekranin yarisini yiyordu. */
    .hero-title { font-size: 1.5rem; line-height: 1.25; overflow-wrap: break-word; word-break: break-word; hyphens: auto; box-sizing: border-box; width: 100%; margin-left: 0; margin-right: 0; padding: 0; }
    .hero-description { font-size: 1.125rem; box-sizing: border-box; width: 100%; padding: 0; margin-left: auto; margin-right: auto; }
    .hero-checklist { justify-content: center; }
    .hero-submit-container { justify-content: center !important; }
    .hero-inline-form { flex-direction: column; padding: 15px; }
    .hero-image { overflow: hidden; max-width: 100vw; display: flex; justify-content: center; }
    .inline-form-group { width: 100%; }
    /* Removed hero-submit-btn width: 100% to stop giant button */
    .hero-trust-elements { margin-top: 30px; grid-template-columns: 1fr 1fr; }
    
    /* Mobile Menu Toggle Logic */
    .mobile-menu-btn { display: block; font-size: 1.5rem; cursor: pointer; color: var(--secondary); margin-left: auto; margin-right: 15px; }
    .nav-menu { 
        display: none; 
        position: absolute; top: 100%; left: 0; right: 0; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px);
        flex-direction: column; padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); border-radius: 20px; text-align: center; gap: 15px;
    }
    .nav-menu.active { display: flex; }
    .nav-dropdown-content { position: static; box-shadow: none; display: none; background: transparent; padding: 10px 0; }
    .nav-dropdown:hover .nav-dropdown-content, .nav-dropdown:active .nav-dropdown-content { display: flex; flex-direction: column; }
}
@media (max-width: 480px) {
    .hero-trust-elements { grid-template-columns: 1fr; }
    /* Dar ekranda logo + "Hizmet Ver" + hamburger ayni satira sigmali.
       Halka ve gorsel ayni 82/56 oranini korumali (48 * 82 / 56 = 70). */
    .nav-logo { width: 48px; height: 48px; }
    .nav-logo img { width: 70px; height: 70px; }
}

/* --- Large Service Cards --- */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.large-service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    text-align: left;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.large-service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-deep);
    border-color: rgba(32, 178, 170, 0.3);
}
.large-service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--primary), #38bdf8);
    opacity: 0;
    transition: opacity 0.3s;
}
.large-service-card:hover::before {
    opacity: 1;
}
.service-card-icon {
    width: 64px;
    height: 64px;
    background: #f0fdfa;
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
    transition: transform 0.3s;
}
.large-service-card:hover .service-card-icon {
    transform: scale(1.1) rotate(5deg);
}
.service-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
}
.service-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}
.service-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
    transition: gap 0.3s;
}
.large-service-card:hover .service-card-cta {
    gap: 12px;
}

@keyframes mobilePulse {
    0% { box-shadow: 0 4px 15px rgba(255, 94, 54, 0.4), 0 0 0 0 rgba(255, 94, 54, 0.5); }
    70% { box-shadow: 0 6px 25px rgba(255, 94, 54, 0.6), 0 0 0 15px rgba(255, 94, 54, 0); }
    100% { box-shadow: 0 4px 15px rgba(255, 94, 54, 0.4), 0 0 0 0 rgba(255, 94, 54, 0); }
}


