/* Temel Ayarlar */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Poppins', sans-serif;
    -webkit-tap-highlight-color: transparent;
    background-color: #fcfcfc;
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

/* ========================================
   Story Bölümü - Tüm Cihazlar İçin
   ======================================== */
.story-container {
    display: flex;
    overflow-x: auto;
    gap: 1.25rem;
    padding-bottom: 10px;
}

.story-container::-webkit-scrollbar {
    display: none;
}

.story-ring {
    background: linear-gradient(45deg, #1e3a8a, #3b82f6, #f97316);
    padding: 3px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.story-item:hover .story-ring {
    transform: scale(1.05);
}

/* ========================================
   Modal & Bottom Sheet
   ======================================== */
.bottom-sheet {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(100%);
}

.bottom-sheet.open {
    transform: translateY(0);
}

@media (min-width: 768px) {
    .bottom-sheet {
        transform: scale(0.9);
        opacity: 0;
        top: 50% !important;
        left: 50% !important;
        bottom: auto !important;
        translate: -50% -50% !important;
        width: 500px !important;
        border-radius: 20px !important;
    }

    .bottom-sheet.open {
        transform: scale(1);
        opacity: 1;
    }
}

/* ========================================
   Uygulama Efektleri
   ======================================== */
.tap-effect:active {
    transform: scale(0.95);
    opacity: 0.8;
    transition: 0.1s;
}

.hero-gradient {
    background: linear-gradient(to right, rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.4));
}

/* ========================================
   Animasyonlar
   ======================================== */
@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(249, 115, 22, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

.btn-pulse {
    animation: pulse-orange 2s infinite;
}

/* ========================================
   Hero Slider
   ======================================== */
#heroSlider {
    display: flex;
    width: 100% !important;
    max-width: 100% !important;
    transition: transform 0.7s ease-out;
}

.hero-slide {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.hero-dot {
    transition: all 0.3s ease;
}

.hero-dot.active {
    background-color: white;
    width: 1.5rem;
}

#projectSlider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.project-slide {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    flex-shrink: 0;
}

#serviceSlider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.service-slide {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    flex: 0 0 100%;
    flex-shrink: 0;
}

/* ========================================
   Side Menu
   ======================================== */
#sideMenu {
    transition: transform 0.3s ease-out;
}

#sideMenuBackdrop {
    transition: opacity 0.3s ease;
}