﻿
/* Hide scrollbar for Chrome, Safari and Opera */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
/* Hide scrollbar for IE, Edge and Firefox */
.no-scrollbar {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.hero-slide {
    transition: opacity 1s ease-in-out;
}

/* Smooth page transitions */
html {
    scroll-behavior: smooth;
}

/* Mobile menu animation */
#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-link.active {
    position: relative;
}

    .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient( 90deg, #FFB347, #C2410C );
    }
/* Active link styling */
.nav-link.active {
    position: relative;
}

/* Touch-friendly tap targets */
@media (max-width: 768px) {
    button, a {
        min-height: 44px;
        min-width: 44px;
    }
}

/* Improved focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #E78B1F;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Smooth hover transitions */
a, button {
    transition: all 0.2s ease-in-out;
}

/* Story scroll grab cursor */
#story-scroll {
    cursor: grab;
}

    #story-scroll:active {
        cursor: grabbing;
    }

/* Enhanced card animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Smooth gradient transitions */
.group:hover .bg-gradient-to-br {
    animation: gradientShift 0.5s ease-in-out;
}

@keyframes gradientShift {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Enhanced backdrop blur for cards */
.backdrop-blur-sm {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Subtle pulse animation for icons */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(231, 139, 31, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(231, 139, 31, 0);
    }
}

/* Improved text gradient */
.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* What Should I Do Page Styles */
.what-title-section {
    background: linear-gradient(135deg, #FFF4E4, #FBD4A3, #FFF1DD);
    transition: background 0.45s ease;
    padding: 24px 24px 28px 24px;
    text-align: center;
}

.what-title {
    font-size: 40px;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.what-intro {
    text-align: center;
    padding: 32px 32px 24px 32px;
    font-size: 18px;
    color: #334155;
}

.what-progress {
    max-width: 600px;
    margin: 0 auto 48px auto;
    padding: 0 32px;
    position: relative;
}

/* Base line */
.what-progress-line {
    position: absolute;
    top: 20px;
    left: 32px;
    right: 32px;
    height: 6px; /* 2px -> premium thickness */
    border-radius: 999px;
    background: linear-gradient(90deg, #e2e8f0, #cbd5e1);
    z-index: 1;
    overflow: hidden;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.06);
}

    /* Filled line (progress) - JS ile width artırarak kullan */
    .what-progress-line::after {
        content: "";
        position: absolute;
        inset: 0;
        width: var(--progress, 0%); /* örn: 0%, 33%, 66%, 100% */
        background: linear-gradient(90deg, #F5A623, #E78B1F, #B45309);
        border-radius: inherit;
        box-shadow: 0 6px 18px rgba(231,139,31,0.25);
        transition: width 450ms cubic-bezier(.2,.8,.2,1);
    }

.what-progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

/* Step base */
.what-progress-step {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid rgba(148,163,184,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    color: #64748b;
    position: relative;
    box-shadow: 0 10px 20px rgba(15,23,42,0.08), inset 0 1px 0 rgba(255,255,255,0.8);
    transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease, color 250ms ease, background 250ms ease;
}

    /* hover micro (premium) */
    .what-progress-step:hover {
        transform: translateY(-1px);
        box-shadow: 0 14px 28px rgba(15,23,42,0.10), inset 0 1px 0 rgba(255,255,255,0.9);
    }

    /* Active step: aynı tonlar, daha premium */
    .what-progress-step.active {
        color: white;
        border-color: rgba(231,139,31,0.85);
        background: linear-gradient(180deg, #F5A623, #E78B1F);
        box-shadow: 0 1px 4px rgba(231, 139, 31, 0.28), 0 0 0 4px rgba(231, 139, 31, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }

        /* Active glow dot */
        .what-progress-step.active::after {
            content: "";
            position: absolute;
            inset: -2px;
            border-radius: inherit;
            background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.55), transparent 55%);
            pointer-events: none;
        }

.what-question-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px 64px 32px;
    padding: 0 32px 64px 32px;
}

.what-question-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    /* margin-bottom: 32px; */
    text-align: center;
}

.what-options {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.what-option-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

    .what-option-card:hover {
        border-color: #E78B1F;
        box-shadow: 0 4px 12px rgba(231, 139, 31, 0.15);
        transform: translateY(-2px);
    }

.what-option-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.what-option-content {
    flex: 1;
}

.what-option-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.what-option-description {
    font-size: 16px;
    color: #475569;
    line-height: 1.5;
}

.what-category-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.what-category-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}

    .what-category-card:hover {
        border-color: #E78B1F;
        box-shadow: 0 2px 8px rgba(231, 139, 31, 0.15);
        transform: translateY(-2px);
    }

.what-category-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.what-category-content {
    flex: 1;
}

.what-category-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
}

.what-category-description {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}


/*premium back button style*/
.what-back-center {
    display: flex;
    justify-content: center;
    margin-top: 16px;
    margin-bottom: 16px;
}

/* Minimal-lüks kapsül */
.what-back-minimal {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 650;
    letter-spacing: .15px;
    color: #0f172a; /* daha premium koyu */
    background: transparent;
    border: 1px solid rgba(15,23,42,.12);
    cursor: pointer;
    user-select: none;
    box-shadow: 0 10px 26px rgba(15,23,42,.06);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, color .22s ease, background .22s ease;
}

    /* Çok ince “paper” hissi */
    .what-back-minimal::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: inherit;
        background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,.25));
        opacity: .6;
        z-index: -1;
    }

/* ok */
.what-back-arrow {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    color: #334155;
    background: rgba(15,23,42,.03);
    border: 1px solid rgba(15,23,42,.08);
    transition: transform .22s ease, color .22s ease, background .22s ease, border-color .22s ease;
}

    .what-back-arrow svg {
        width: 18px;
        height: 18px;
    }

/* Alt çizgi animasyonu */
.what-back-underline {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 6px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(231,139,31,0), rgba(231,139,31,.9), rgba(231,139,31,0));
    transform: scaleX(.15);
    transform-origin: center;
    opacity: 0;
    transition: transform .28s ease, opacity .28s ease;
}

/* Hover: elit, abartısız */
.what-back-minimal:hover {
    background: rgba(255,255,255,.7);
    border-color: rgba(231,139,31,.28);
    box-shadow: 0 14px 34px rgba(15,23,42,.08);
    transform: translateY(-1px);
}

    .what-back-minimal:hover .what-back-arrow {
        transform: translateX(-2px);
        color: #E78B1F;
        background: rgba(231,139,31,.08);
        border-color: rgba(231,139,31,.22);
    }

    .what-back-minimal:hover .what-back-underline {
        opacity: 1;
        transform: scaleX(1);
    }

/* Active */
.what-back-minimal:active {
    transform: translateY(0) scale(.985);
    box-shadow: 0 10px 26px rgba(15,23,42,.06);
}

/* Focus */
.what-back-minimal:focus-visible {
    outline: none;
    border-color: rgba(231,139,31,.40);
    box-shadow: 0 0 0 4px rgba(231,139,31,.16), 0 14px 34px rgba(15,23,42,.08);
}
/*-------------------------------*/

.what-happened-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.what-happened-card {
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    text-align: center;
}

    .what-happened-card:hover {
        border-color: #E78B1F;
        box-shadow: 0 2px 8px rgba(231, 139, 31, 0.15);
        transform: translateY(-2px);
    }

    .what-happened-card.selected {
        border-color: #E78B1F;
        background: #FDF2E9;
        box-shadow: 0 2px 8px rgba(231, 139, 31, 0.2);
    }

.what-happened-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.what-happened-title {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.3;
}

.what-results-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 32px 64px 32px;
}

.what-results-title {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 32px;
    text-align: center;
}

.what-related-cases {
    margin-bottom: 32px;
}

.what-related-title {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.what-related-text {
    font-size: 16px;
    color: #475569;
    margin-bottom: 20px;
    line-height: 1.6;
}

.what-case-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

    .what-case-card:hover {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transform: translateY(-2px);
    }

.what-case-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.what-case-description {
    font-size: 15px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 12px;
}

.what-case-meta {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.what-action-button {
    background: linear-gradient(to bottom, #F5A623, #E78B1F);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(231, 139, 31, 0.3);
    display: inline-block;
    text-decoration: none;
}

    .what-action-button:hover {
        background: linear-gradient(to bottom, #E78B1F, #D67A0E);
        box-shadow: 0 4px 12px rgba(231, 139, 31, 0.4);
        transform: translateY(-2px);
    }

    .what-action-button:active {
        transform: translateY(0);
    }

.what-safety-box {
    background: #FFF5F5;
    border: 2px solid #EF4444;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}

.what-safety-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.what-safety-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.what-safety-title {
    font-size: 20px;
    font-weight: 700;
    color: #EF4444;
}

.what-safety-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.what-safety-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: #0f172a;
    line-height: 1.6;
}

.what-safety-item-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.what-start-over {
    text-align: center;
}

.what-step {
    display: none;
}

    .what-step.active {
        display: block;
    }

@media (max-width: 768px) {
    .what-title {
        font-size: 36px;
    }

    .what-question-title {
        font-size: 24px;
    }

    .what-option-card {
        flex-direction: column;
        text-align: center;
    }

    .what-category-grid {
        grid-template-columns: 1fr;
    }

    .what-happened-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Safety Page Styles */
.safety-banner {
    background: linear-gradient(135deg, #FFF4E4, #FBD4A3, #FFF1DD);
    transition: background 0.45s ease;
    width: 100%;
    padding: 32px 24px 28px;
    text-align: center;
}

.safety-banner-title {
    font-size: 26px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.4px;
}

@media (min-width: 768px) {
    .safety-banner {
        padding: 40px 32px 32px;
    }

    .safety-banner-title {
        font-size: 32px;
    }
}

.safety-intro {
    max-width: 900px;
    margin: 40px auto 32px auto;
    padding: 0 32px;
    text-align: center;
}

.safety-intro-text {
    font-size: 18px;
    color: #334155;
    line-height: 1.8;
}

.safety-info-block {
    max-width: 1100px;
    margin: 0 auto 64px auto;
    padding: 40px 48px;
    background: #F8F6F2;
    border-radius: 24px;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.safety-info-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .safety-info-icon svg {
        width: 64px;
        height: 64px;
    }

.safety-info-content {
    flex: 1;
}

.safety-info-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.safety-info-text {
    font-size: 16px;
    color: #334155;
    line-height: 1.7;
}

.safety-rules-list {
    max-width: 1100px;
    margin: 0 auto 80px auto;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.safety-rule-card {
    background: #FFF0F0;
    border: 1px solid #FFCCCC;
    border-radius: 16px;
    padding: 20px 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.safety-rule-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .safety-rule-icon svg {
        width: 24px;
        height: 24px;
    }

.safety-rule-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.safety-rule-text {
    font-size: 16px;
    color: #0f172a;
    line-height: 1.6;
    margin: 0;
}

.safety-rule-image-container {
    margin-top: 8px;
    border-radius: 12px;
    overflow: hidden;
    max-width: 100%;
}

.safety-rule-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.safety-rule-image:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.safety-experts-block {
    max-width: 1100px;
    margin: 0 auto 80px auto;
    padding: 40px 48px;
    background: #F8F6F2;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.safety-experts-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.safety-experts-text {
    font-size: 16px;
    color: #334155;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .safety-banner {
        padding: 40px 24px 32px;
    }

    .safety-banner-title {
        font-size: 28px;
    }

    .safety-intro {
        margin: 32px auto 24px auto;
        padding: 0 16px;
    }

    .safety-intro-text {
        font-size: 16px;
    }

    .safety-info-block {
        flex-direction: column;
        padding: 32px 24px;
        margin-bottom: 48px;
    }

    .safety-info-icon {
        width: 48px;
        height: 48px;
        align-self: center;
    }

        .safety-info-icon svg {
            width: 48px;
            height: 48px;
        }

    .safety-rules-list {
        padding: 0 16px;
        gap: 16px;
    }

    .safety-rule-card {
        padding: 16px 20px;
        gap: 16px;
    }
}

/* Share Page Styles */
.share-hero {
    position: relative;
    width: 100%;
    min-height: 500px;
    background-image: url('https://images.unsplash.com/photo-1526392060635-9d6019884377?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 32px 80px 32px;
}

.share-hero-overlay {
    background: rgba(15, 23, 42, 0.75);
    border-radius: 24px;
    max-width: 900px;
    padding: 48px 56px;
    position: relative;
    z-index: 10;
}

.share-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: left;
}

.share-hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: white;
    line-height: 1.7;
    text-align: left;
}

.share-alert-card {
    max-width: 1200px;
    margin: -40px auto 64px auto;
    padding: 32px 40px;
    background: #F8F6F2;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    gap: 24px;
    align-items: center;
    position: relative;
    z-index: 20;
}

.share-alert-icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    font-weight: 900;
    color: #0f172a;
}

.share-alert-content {
    flex: 1;
}

.share-alert-title {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.share-alert-text {
    font-size: 16px;
    color: #334155;
    line-height: 1.6;
    margin: 0;
}

.share-form-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px 64px 32px;
}

.share-form-group {
    margin-bottom: 32px;
}

.share-form-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.share-form-input,
.share-form-textarea,
.share-form-select {
    width: 100%;
    padding: 14px 16px;
    background-color: #F8F8F8;
    border: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #0f172a;
    transition: all 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

    .share-form-input:focus,
    .share-form-textarea:focus,
    .share-form-select:focus {
        outline: none;
        background-color: #F5F5F5;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    }

    .share-form-input::placeholder,
    .share-form-textarea::placeholder {
        color: #64748b;
    }

.share-form-textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

.share-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23475569' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.share-form-hint {
    font-size: 14px;
    color: #475569;
    margin-top: 8px;
    line-height: 1.5;
}

.share-upload-section {
    margin-bottom: 40px;
}

.share-upload-label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.share-upload-box {
    width: 100%;
    min-height: 200px;
    background-color: #F8F6F2;
    border: 2px dashed #cbd5e1;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}

    .share-upload-box:hover,
    .share-upload-box.dragover {
        border-color: #E78B1F;
        background-color: #FDF2E9;
    }

.share-upload-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    color: #64748b;
}

.share-upload-text {
    font-size: 16px;
    color: #334155;
    margin-bottom: 8px;
}

.share-upload-link {
    font-size: 16px;
    color: #2563eb;
    text-decoration: underline;
    margin-bottom: 12px;
    cursor: pointer;
}

.share-upload-hint {
    font-size: 13px;
    color: #64748b;
    margin-top: 8px;
}

.share-upload-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.share-consent-section {
    margin-bottom: 40px;
}

.share-consent-title {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
}

.share-consent-instruction {
    font-size: 14px;
    color: #475569;
    margin-bottom: 20px;
}

.share-consent-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.share-consent-checkbox {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #E78B1F;
    flex-shrink: 0;
}

.share-consent-label {
    font-size: 15px;
    color: #334155;
    line-height: 1.5;
    cursor: pointer;
    flex: 1;
}

.share-submit-section {
    margin-top: 48px;
    margin-bottom: 64px;
}

.share-submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(to bottom, #F5A623, #E78B1F);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(231, 139, 31, 0.3);
}

    .share-submit-btn:hover {
        background: linear-gradient(to bottom, #E78B1F, #D67A0E);
        box-shadow: 0 4px 12px rgba(231, 139, 31, 0.4);
        transform: translateY(-1px);
    }

.share-featured-stories {
    padding: 0;
    background: transparent;
}

.stories-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 10;
}

.stories-title {
    font-size: 42px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 64px;
    color: #0f172a;
    letter-spacing: -1px;
}

.stories-carousel {
    position: relative;
}

.stories-scroll {
    display: flex;
    gap: 32px;
    overflow-x: auto;
    padding-bottom: 48px;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    .stories-scroll::-webkit-scrollbar {
        display: none;
    }

.story-card {
    min-width: 280px;
    aspect-ratio: 4/5;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.25);
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    scroll-snap-align: start;
}

    .story-card:hover {
        box-shadow: 0 26px 45px rgba(15, 23, 42, 0.3);
        transform: translateY(-6px);
    }

    .story-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 20;
}

    .carousel-btn:hover {
        background: #f1f5f9;
    }

    .carousel-btn.left {
        left: -20px;
    }

    .carousel-btn.right {
        right: -20px;
    }

@media (max-width: 768px) {
    .share-hero {
        min-height: 400px;
        padding: 100px 16px 60px 16px;
    }

    .share-hero-overlay {
        padding: 32px 24px;
    }

    .share-hero-title {
        font-size: 32px;
    }

    .share-hero-subtitle {
        font-size: 16px;
    }

    .share-alert-card {
        margin: -30px 16px 48px 16px;
        padding: 24px;
        flex-direction: column;
        text-align: center;
    }

    .share-form-section {
        padding: 0 16px 48px 16px;
    }

    .share-upload-box {
        min-height: 160px;
        padding: 30px 16px;
    }

    .stories-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .story-card {
        min-width: 240px;
    }
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.hero-slide {
    transition: opacity 1s ease-in-out;
}

html {
    scroll-behavior: smooth;
}

#mobile-menu {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



@media (max-width: 768px) {
    button, a {
        min-height: 44px;
        min-width: 44px;
    }
}

a:focus-visible, button:focus-visible {
    outline: 2px solid #E78B1F;
    outline-offset: 2px;
    border-radius: 4px;
}

a, button {
    transition: all 0.2s ease-in-out;
}

#story-scroll {
    cursor: grab;
}

    #story-scroll:active {
        cursor: grabbing;
    }

.backdrop-blur-sm {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}
/* Search input styling */
.search-input {
    background: #FBE9FF;
}

    .search-input::placeholder {
        color: #999;
    }

    .search-input:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(231, 139, 31, 0.1);
    }

/* Alpha filter pills */
.alpha-pill {
    transition: all 0.2s ease;
}

    .alpha-pill.active {
        /* background: #E78B1F !important; */
        background: #E78B1F;
        color: #fff;
    }

    .alpha-pill:not(.active) {
        background: white;
        border: 1px solid #e2e8f0;
        color: #64748b;
    }

        .alpha-pill:not(.active):hover {
            background: #f1f5f9;
            border-color: #cbd5e1;
        }

/* Add term button */
.add-term-btn {
    background: #FBE9FF;
    color: #6B46C1;
}

    .add-term-btn:hover {
        background: #F0D9FF;
    }

/* Timeline Scroll Component */
.timeline-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 600px;
    min-height: 400px;
    max-height: 600px;
}

.timeline-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #E78B1F;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(231, 139, 31, 0.4);
    transition: all 0.2s ease;
    z-index: 10;
}

    .timeline-btn:hover {
        background: #d17a1a;
        transform: scale(1.1);
        box-shadow: 0 6px 16px rgba(231, 139, 31, 0.5);
    }

    .timeline-btn:active {
        transform: scale(0.95);
    }

.timeline-track {
    flex: 1;
    width: 2px;
    background: #FBBF77;
    border-radius: 999px;
    position: relative;
    margin: 12px 0;
    min-height: 200px;
    height: 100%;
    cursor: pointer;
}

.timeline-handle {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 40px;
    background: #E78B1F;
    border-radius: 999px;
    cursor: grab;
    transition: top 0.1s ease;
    box-shadow: 0 2px 4px rgba(231, 139, 31, 0.3);
}

    .timeline-handle:active {
        cursor: grabbing;
    }

/* Hero overlay with rounded top corners */
.hero-overlay {
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

/* Terms container scroll styling */
#terms-container {
    max-height: 600px;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
    padding-right: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

    #terms-container::-webkit-scrollbar {
        display: none;
    }

.bx-shdw {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}

/* ========== PARLAMA (SHEEN) ANIMASYONU ========== */
.btn-animated {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

    .btn-animated::after {
        content: "";
        position: absolute;
        top: 0;
        left: -75%;
        width: 50%;
        height: 100%;
        background: linear-gradient( 120deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.1) 100% );
        transform: skewX(-20deg);
        z-index: 1;
    }

    .btn-animated:hover::after {
        animation: sheen 1.3s forwards;
    }

@keyframes sheen {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

/* ========== GLOW HOVER EFEKTİ ========== */
.btn-glow {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

    .btn-glow:hover:not(:disabled) {
        transform: translateY(-2px) scale(1.03);
    }

    .btn-glow:active:not(:disabled) {
        transform: translateY(0) scale(0.98);
    }
/* ========== ANIMATIONS ========== */
.btn-animated_ {
    position: relative;
    overflow: hidden;
}

    .btn-animated_::after {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.5s;
    }

    .btn-animated_:hover::after {
        left: 100%;
    }

/* Premium Ring Gradient YELLOW Hover */
.premium-ring-yellow {
    border: 2px solid transparent;
    border-radius: 1rem;
    background-image: linear-gradient(#FAF9F7, #FAF9F7), linear-gradient(90deg, rgba(245,158,11,0.65), rgba(255,255,255,0.55), rgba(245,158,11,0.45) );
    background-origin: padding-box, border-box;
    background-clip: padding-box, border-box;
    /* 🔥 depth effect */
    transform: translateY(0) scale(1);
    box-shadow: 0 8px 18px rgba(0,0,0,0.08);
    transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s cubic-bezier(.2,.8,.2,1), background-image .35s ease;
}

    .premium-ring-yellow:hover {
        /* 🔥 öne gelme */
        transform: translateY(-10px) scale(1.035);
        box-shadow: 0 28px 60px -20px rgba(0,0,0,0.30);
        background-image: linear-gradient(#FAFAF7, #FAFAF7), linear-gradient(90deg, rgba(245,158,11,0.85), rgba(255,255,255,0.60), rgba(245,158,11,0.55) );
    }

.safety-card:hover {
    transform: translateY(-10px) scale(1.035);
    box-shadow: 0 28px 60px -20px rgba(0,0,0,0.30);
}

.tan-int-card {
    border: 1px solid transparent;
    border-radius: 1rem;
    background: linear-gradient(white, white) padding-box, linear-gradient(135deg, transparent, transparent) border-box;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    will-change: transform;
}

    .tan-int-card:hover {
        transform: translateY(-10px) scale(1.035);
        box-shadow: 0 28px 60px -20px rgba(0, 0, 0, 0.30);
        background: linear-gradient(white, white) padding-box, linear-gradient(135deg, #fbbf24, #b45309) border-box;
    }

.tan-card-left {
    border: 1px solid transparent;
    border-radius: 1rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    will-change: transform;
}

    .tan-card-left:hover {
        /* SADECE SOLA KAY + HAFİF SCALE */
        transform: translateX(-12px) scale(1.035) !important;
        box-shadow: 0 28px 60px -20px rgba(0, 0, 0, 0.30);
        border-color: #b45309;
    }

.inten-card-right {
    border: 1px solid transparent;
    border-radius: 1rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    will-change: transform;
}

    .inten-card-right:hover {
        /* SADECE SOLA KAY + HAFİF SCALE */
        transform: translateX(12px) scale(1.035) !important;
        box-shadow: 0 28px 60px -20px rgba(0, 0, 0, 0.30);
        border-color: #b45309;
    }

.whats-cherish-div-card {
    border: 1px solid transparent;
    border-radius: 1rem;
    background: linear-gradient(white, white) padding-box, linear-gradient(135deg, transparent, transparent) border-box;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    will-change: transform;
}

    .whats-cherish-div-card:hover {
        text-cherish-orange transform: translateY(-10px) scale(1.035);
        box-shadow: 0 28px 60px -20px rgba(0, 0, 0, 0.30);
        background: linear-gradient(white, white) padding-box, linear-gradient(135deg, #fbbf24, #b45309) border-box;
    }


@keyframes warningPulseStrong {
    0% {
        box-shadow: 0 0 0 0 rgba(245,166,35,0.6), 0 8px 20px rgba(0,0,0,0.25);
    }

    60% {
        box-shadow: 0 0 0 16px rgba(231,139,31,0.22), 0 14px 32px rgba(0,0,0,0.32);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(245,166,35,0), 0 8px 20px rgba(0,0,0,0.25);
    }
}

.warning-ring {
    animation: warningPulseStrong 2.6s ease-out infinite;
}

/* Premium 3D Card */
.premium-3d {
    transform-style: preserve-3d;
    will-change: transform, box-shadow;
    transition: transform .6s cubic-bezier(.2,.8,.2,1), box-shadow .6s cubic-bezier(.2,.8,.2,1);
}

    .premium-3d:hover {
        transform: perspective(900px) translateY(-8px) rotateX(6deg) rotateY(-7deg) scale(1.09);
        box-shadow: 0 28px 60px -22px rgba(0,0,0,0.30), 0 10px 22px -14px rgba(0,0,0,0.20);
    }

    /* light reflection layer */
    .premium-3d::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: 0;
        transition: opacity .6s ease;
        background: radial-gradient(circle at 20% 15%, rgba(255,255,255,0.65), transparent 55%);
    }

    .premium-3d:hover::before {
        opacity: 1;
    }
/*LOGO style*/
/* Ana link */
.logo-link {
    position: relative;
    transition: transform .35s cubic-bezier(.4,0,.2,1);
}
    /* Hover’da logo blok hafif yükselsin */
    .logo-link:hover {
        transform: translateY(-2px);
    }

/* Logo image */
.logo-img {
    transition: transform .45s cubic-bezier(.4,0,.2,1), filter .45s cubic-bezier(.4,0,.2,1);
    filter: drop-shadow(0 10px 25px rgba(0,0,0,.12));
}

/* Hover: ikon canlansın */
.logo-link:hover .logo-img {
    transform: rotate(-2deg) scale(1.05);
    filter: drop-shadow(0 18px 40px rgba(231,139,31,.25));
}

/* Logo text */
.logo-text {
    position: relative;
    transition: letter-spacing .35s ease, transform .35s ease, color .35s ease, background-position .45s ease;
    /* gradient text hazırlığı */
    /* background: linear-gradient( 90deg, #0f172a, #0f172a, #0f172a ); */
    background: #122A4C;
    background-size: 200% 100%;
    background-position: 0% 50%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hover: renk akışı */
.logo-link:hover .logo-text {
    letter-spacing: .04em;
    transform: translateY(-1px);
    background-position: 100% 50%;
    color: #E78B1F; /* brand color */
}

/* Alt çizgi (marka vurgusu) */
.logo-text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient( 90deg, transparent, #E78B1F, transparent );
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .35s ease;
}

/* Hover: alt çizgi */
.logo-link:hover .logo-text::after {
    transform: scaleX(1);
}
/* --------------------BACK TO TOP---------------- */
#backToTop {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

    #backToTop:hover {
        transform: translateY(-2px);
    }

    #backToTop:active {
        transform: translateY(0) scale(0.96);
    }

/* Hafif premium ring parlaması */
#progress-ring {
    filter: drop-shadow(0 6px 14px rgba(231,139,31,0.28));
    transition: stroke-dashoffset 120ms linear;
}
/* ------------------------------------------------ */

/* ========== SUBMISSION ROW STYLES ========== */
.submission-row-pending {
    background-color: #fefce8;
    box-shadow: inset 4px 0 0 0 #fde047;
}

    .submission-row-pending:hover {
        background-color: #fef9c3;
        box-shadow: inset 4px 0 0 0 #facc15;
    }

.submission-row-approved {
    background-color: #f0fdf4;
    box-shadow: inset 4px 0 0 0 #86efac;
}

    .submission-row-approved:hover {
        background-color: #dcfce7;
        box-shadow: inset 4px 0 0 0 #4ade80;
    }

.submission-row-rejected {
    background-color: #fef2f2;
    box-shadow: inset 4px 0 0 0 #fca5a5;
}

    .submission-row-rejected:hover {
        background-color: #fee2e2;
        box-shadow: inset 4px 0 0 0 #f87171;
    }

.submission-row-revision {
    background-color: #fff7ed;
    box-shadow: inset 4px 0 0 0 #fdba74;
}

    .submission-row-revision:hover {
        background-color: #ffedd5;
        box-shadow: inset 4px 0 0 0 #fb923c;
    }

.submission-row-default {
    background-color: #ffffff;
    box-shadow: inset 4px 0 0 0 #e2e8f0;
}

    .submission-row-default:hover {
        background-color: #f8fafc;
        box-shadow: inset 4px 0 0 0 #cbd5e1;
    }


