/* İşletmeler sayfası için özel stiller */

/* Mobil öncelikli CSS değişkenleri */
:root {
    --animation-duration: 0.5s;
    --mobile-font-size: 16px;
    --tablet-font-size: 18px;
}

/* Mobil öncelikli CSS değişkenleri */
@media (max-width: 768px) {
    :root {
        --animation-duration: 0.3s;
        --mobile-font-size: 14px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    :root {
        --animation-duration: 0.4s;
        --tablet-font-size: 16px;
    }
}

/* Hero section artık gradient kullanıyor - ::before ve ::after kaldırıldı */

body {
    background-color: #000000 !important;
    background: linear-gradient(135deg, #000000 0%, #0f20d8 50%, #667eea 100%) !important;
    color: #ffffff !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: var(--mobile-font-size);
}

html {
    margin: 0 !important;
    padding: 0 !important;
    scroll-behavior: smooth !important;
}

/* Mobil cihazlarda performans optimizasyonları */
@media (max-width: 768px) {
    body {
        font-size: var(--mobile-font-size);
    }
    
    /* Mobil cihazlarda daha hızlı geçişler */
    * {
        transition-duration: var(--animation-duration) !important;
    }
    
    /* Mobil cihazlarda daha az animasyon */
    .feature-card:hover .feature-icon {
        transform: scale(1.05) !important;
    }
    
    /* Mobil cihazlarda daha küçük butonlar */
    .btn-lg {
        padding: 0.75rem 1.5rem !important;
        font-size: 1rem !important;
    }
    
    /* Mobil cihazlarda daha kompakt navbar */
    .navbar {
        padding: 0.5rem 1rem !important;
    }
    
    /* Mobil cihazlarda daha hızlı sidebar */
    .sidebar-custom {
        transition: transform var(--animation-duration) ease-in-out !important;
    }
    
    /* Mobil cihazlarda daha az blur efektleri */
    .hero-section::before {
        filter: blur(2px) !important;
    }
    
    /* Mobil cihazlarda daha basit animasyonlar */
    .feature-card {
        transition: all var(--animation-duration) ease !important;
    }
    
    /* Mobil cihazlarda daha küçük iPhone mockup */
    .iphone-frame {
        transform: scale(0.8) !important;
    }
}

/* Tablet optimizasyonları */
@media (min-width: 769px) and (max-width: 1024px) {
    body {
        font-size: var(--tablet-font-size);
    }
    
    .btn-lg {
        padding: 0.875rem 1.75rem !important;
        font-size: 1.1rem !important;
    }
    
    .iphone-frame {
        transform: scale(0.9) !important;
    }
}

.hero-section {
    background-image: url('img/back.png') !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-attachment: fixed !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    image-rendering: -webkit-optimize-contrast !important;
    image-rendering: crisp-edges !important;
    -ms-interpolation-mode: nearest-neighbor !important;
}

.hero-section::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.3) !important;
    z-index: 1 !important;
}

.hero-content {
    position: relative !important;
    z-index: 5 !important;
}

.hero-section h1 {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3) !important;
}

.hero-section .lead {
    color: rgba(255,255,255,0.9) !important;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2) !important;
}

.btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3) !important;
    transition: all var(--animation-duration) ease !important;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #0056b3, #007bff) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0,123,255,0.4) !important;
}

.section-title {
    color: #007bff !important;
    font-weight: bold !important;
}

.section-subtitle {
    color: #6c757d !important;
}

.feature-card {
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(0,123,255,0.2) !important;
    border-radius: 15px !important;
    padding: 2rem !important;
    transition: all var(--animation-duration) ease !important;
    backdrop-filter: blur(10px) !important;
}

.feature-card:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: #007bff !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0,123,255,0.2) !important;
}

.feature-icon {
    background: linear-gradient(45deg, #007bff, #0056b3) !important;
    color: white !important;
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 2rem !important;
    margin: 0 auto 1.5rem !important;
    transition: all var(--animation-duration) ease !important;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) !important;
    box-shadow: 0 5px 15px rgba(0,123,255,0.4) !important;
}

.navbar {
    background: rgba(0,0,0,0.9) !important;
    backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 10px 0 !important;
    transition: all var(--animation-duration) ease !important;
    will-change: transform !important;
}

.navbar-brand {
    color: #007bff !important;
    font-weight: bold !important;
    font-size: 1.5rem !important;
}

.navbar-brand:hover {
    color: #0056b3 !important;
}

.navbar-toggler {
    border: none !important;
    padding: 4px 8px !important;
    transition: all var(--animation-duration) ease !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
    color: #ffffff !important;
    font-weight: 500 !important;
    transition: all var(--animation-duration) ease !important;
    padding: 8px 16px !important;
    margin: 0 4px !important;
    border-radius: 5px !important;
}

.nav-link:hover {
    color: #007bff !important;
    background: rgba(0, 123, 255, 0.1) !important;
}

.nav-link.active {
    color: #007bff !important;
    background: rgba(0, 123, 255, 0.2) !important;
}

.footer {
    background: linear-gradient(135deg, #000000 0%, #0f20d8 50%, #667eea 100%) !important;
    color: #ffffff !important;
    padding: 40px 0 !important;
    margin-top: 50px !important;
}

.logo-img {
    width: 40px !important;
    height: 40px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
}

.footer-brand-text {
    color: #007bff !important;
    font-weight: bold !important;
    font-size: 1.2rem !important;
}

.footer-desc-text {
    color: #cccccc !important;
    font-size: 0.9rem !important;
}

.footer-mail-link {
    color: #007bff !important;
    text-decoration: none !important;
    font-weight: 500 !important;
    transition: all var(--animation-duration) ease !important;
}

.footer-mail-link:hover {
    color: #0056b3 !important;
    text-decoration: underline !important;
}

.footer-copyright {
    color: #999999 !important;
    font-size: 0.85rem !important;
    margin-top: 5px !important;
}

/* Back to top button */
#back-to-top {
    display: none !important;
}

#back-to-top.show {
    display: block !important;
}

.back-to-top-btn {
    width: 50px !important;
    height: 50px !important;
    border-radius: 50% !important;
    background: linear-gradient(45deg, #007bff, #0056b3) !important;
    border: none !important;
    color: white !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0,123,255,0.3) !important;
}

.back-to-top-btn:hover {
    background: linear-gradient(45deg, #0056b3, #007bff) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0,123,255,0.4) !important;
}

.back-to-top-icon {
    font-size: 20px !important;
}

/* Sidebar stilleri - Desktop'ta gizli olması için */
.sidebar-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.7) !important;
    z-index: 1049 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
}

.sidebar-overlay.show {
    opacity: 1 !important;
    visibility: visible !important;
}

.sidebar-custom {
    position: fixed !important;
    top: 0 !important;
    right: -320px !important;
    width: 320px !important;
    height: 100vh !important;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%) !important;
    backdrop-filter: blur(20px) !important;
    z-index: 1050 !important;
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5) !important;
    overflow-y: auto !important;
}

.sidebar-custom.show {
    right: 0 !important;
}

.sidebar-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 2rem 1.5rem 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.sidebar-brand {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 0.5rem !important;
}

.sidebar-logo {
    width: 60px !important;
    height: 60px !important;
    object-fit: contain !important;
    border-radius: 12px !important;
}

.sidebar-flag {
    width: 40px !important;
    height: 30px !important;
    object-fit: contain !important;
    border-radius: 4px !important;
}

.sidebar-close {
    background: none !important;
    border: none !important;
    color: white !important;
    font-size: 2rem !important;
    cursor: pointer !important;
    padding: 0.5rem !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    width: 40px !important;
    height: 40px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    transform: rotate(90deg) !important;
}

.sidebar-nav {
    padding: 1rem 0 !important;
}

.sidebar-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.sidebar-item {
    margin: 0.25rem 0 !important;
}

.sidebar-link {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    padding: 1rem 1.5rem !important;
    color: white !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border-radius: 0 25px 25px 0 !important;
    margin-right: 1rem !important;
}

.sidebar-link:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
    transform: translateX(10px) !important;
}

.sidebar-link i {
    font-size: 1.2rem !important;
    width: 20px !important;
    text-align: center !important;
}

.sidebar-link span {
    font-size: 1.1rem !important;
    font-weight: 500 !important;
}

.dropdown-arrow {
    margin-left: auto !important;
    transition: transform 0.3s ease !important;
}

.dropdown-toggle[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg) !important;
}

.sidebar-dropdown-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    background: rgba(0, 0, 0, 0.3) !important;
    border-radius: 8px !important;
    margin: 0.5rem 1.5rem !important;
    overflow: hidden !important;
    max-height: 0 !important;
    transition: max-height 0.3s ease !important;
}

.sidebar-dropdown-menu.show {
    max-height: 200px !important;
}

.sidebar-dropdown-item {
    display: block !important;
    padding: 0.75rem 1.5rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.sidebar-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

/* Body scroll lock when sidebar is open */
body.sidebar-open {
    overflow: hidden !important;
    touch-action: none !important;
    position: fixed !important;
    width: 100% !important;
}

/* Touch device specific styles */
.touch-device .sidebar-link,
.touch-device .sidebar-dropdown-item,
.touch-device .nav-link,
.touch-device .btn {
    -webkit-tap-highlight-color: rgba(0, 123, 255, 0.2) !important;
}

.touch-device .sidebar-link:active,
.touch-device .sidebar-dropdown-item:active {
    background: rgba(0, 123, 255, 0.3) !important;
}

/* Prevent horizontal scroll on small screens */
body, html {
    overflow-x: hidden !important;
}

/* Better button touch targets */
.btn {
    min-height: 44px !important;
    touch-action: manipulation !important;
}

/* Improved navbar transition */
.navbar {
    will-change: transform !important;
}

/* Responsive tasarım */
@media (max-width: 991px) {
    /* Navbar için tablet ve mobil optimizasyonu */
    .navbar-collapse {
        background: rgba(0,0,0,0.95) !important;
        margin-top: 10px !important;
        border-radius: 10px !important;
        padding: 15px !important;
        border: 1px solid rgba(255,255,255,0.1) !important;
    }
    
    .navbar-nav {
        text-align: center !important;
    }
    
    .nav-link {
        padding: 12px 0 !important;
        font-size: 1.1rem !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
        margin-bottom: 5px !important;
    }
    
    .nav-link:last-child {
        border-bottom: none !important;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh !important;
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center top !important;
        padding: 80px 0 40px !important;
    }
    
    .hero-section h1 {
        font-size: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .hero-section .lead {
        font-size: 1.1rem !important;
        line-height: 1.5 !important;
        margin-bottom: 2rem !important;
    }
    
    .feature-card {
        margin-bottom: 2rem !important;
        padding: 1.5rem !important;
    }
    
    .navbar-brand {
        font-size: 1.2rem !important;
    }
    
    .feature-icon {
        width: 60px !important;
        height: 60px !important;
        font-size: 1.5rem !important;
    }
    
    .footer {
        padding: 30px 0 !important;
    }
    
    /* Footer mobil optimizasyonları */
    .footer .container {
        padding: 0 1rem !important;
    }
    
    .footer-brand-text {
        font-size: 1.1rem !important;
        font-weight: 600 !important;
    }
    
    .footer-desc-text {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
        text-align: center !important;
    }
    
    .footer-mail-link {
        font-size: 0.9rem !important;
        padding: 0.5rem 1rem !important;
        border-radius: 25px !important;
        background: rgba(255, 255, 255, 0.1) !important;
        transition: all 0.3s ease !important;
        display: inline-block !important;
    }
    
    .footer-mail-link:hover {
        background: rgba(255, 255, 255, 0.2) !important;
        transform: translateY(-2px) !important;
    }
    
    .footer-copyright {
        font-size: 0.8rem !important;
        opacity: 0.8 !important;
        margin-top: 10px !important;
    }
    
    .sidebar-custom {
        width: 280px !important;
        right: -280px !important;
    }
    
    .sidebar-custom.show {
        right: 0 !important;
    }
    
    /* Mobil cihazlarda sidebar overlay daha hızlı */
    .sidebar-overlay {
        transition: all var(--animation-duration) ease-in-out !important;
    }
    
    /* Butonları daha touch-friendly yap */
    .btn-lg {
        padding: 15px 25px !important;
        font-size: 1.1rem !important;
        min-height: 50px !important;
        margin: 5px !important;
    }
    
    /* Navbar toggler'ı daha büyük ve touch-friendly yap */
    .navbar-toggler {
        padding: 10px !important;
        font-size: 1.2rem !important;
        border: 1px solid rgba(255,255,255,0.3) !important;
        border-radius: 8px !important;
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.5) !important;
    }
}

@media (max-width: 576px) {
    .hero-section {
        min-height: 70vh !important;
        padding: 70px 0 30px !important;
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .hero-section h1 {
        font-size: 1.8rem !important;
        line-height: 1.2 !important;
    }
    
    .hero-section .lead {
        font-size: 1rem !important;
        line-height: 1.4 !important;
        padding: 0 10px !important;
    }
    
    .btn-lg {
        padding: 12px 20px !important;
        font-size: 1rem !important;
        min-height: 45px !important;
        width: 100% !important;
        max-width: 250px !important;
        margin: 8px auto !important;
        display: block !important;
    }
    
    .feature-card {
        padding: 1.5rem 1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .sidebar-custom {
        width: 100vw !important;
        right: -100vw !important;
        max-width: 320px !important;
    }
    
    .sidebar-custom.show {
        right: 0 !important;
    }
    
    .footer {
        padding: 20px 0 !important;
    }
    
    .footer-brand-text {
        font-size: 1rem !important;
    }
    
    .footer-desc-text {
        font-size: 0.85rem !important;
        text-align: center !important;
    }
    
    .footer-mail-link {
        font-size: 0.85rem !important;
        padding: 0.4rem 0.8rem !important;
    }
    
    .footer .logo-img {
        width: 35px !important;
        height: 35px !important;
    }
    
    .navbar-brand {
        font-size: 1.1rem !important;
    }
    
    .navbar-brand img {
        width: 28px !important;
        height: 28px !important;
    }
    
    /* Container padding'lerini küçült */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0 25px !important;
        min-height: 65vh !important;
    }
    
    .hero-section h1 {
        font-size: 1.6rem !important;
    }
    
    .hero-section .lead {
        font-size: 0.95rem !important;
        padding: 0 5px !important;
    }
    
    .sidebar-custom {
        width: 100vw !important;
        right: -100vw !important;
        max-width: 280px !important;
    }
    
    .sidebar-custom.show {
        right: 0 !important;
    }
    
    .navbar-brand {
        font-size: 1rem !important;
    }
    
    .btn-lg {
        font-size: 0.95rem !important;
        padding: 10px 18px !important;
        min-height: 42px !important;
    }
}

@media (max-width: 375px) {
    .hero-section h1 {
        font-size: 1.5rem !important;
    }
    
    .hero-section .lead {
        font-size: 0.9rem !important;
    }
    
    .sidebar-custom {
        width: 100vw !important;
        right: -100vw !important;
        max-width: 260px !important;
    }
    
    .sidebar-custom.show {
        right: 0 !important;
    }
}

/* iPhone Mockup Styles - Icons Only */
.iphone-mockup {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 2rem 0 !important;
}

.iphone-frame {
    width: 400px !important;
    height: 800px !important;
    background: linear-gradient(145deg, #2c2c2c, #1a1a1a) !important;
    border-radius: 45px !important;
    padding: 12px !important;
    position: relative !important;
    box-shadow: 
        0 0 40px rgba(0, 123, 255, 0.4),
        inset 0 3px 15px rgba(255, 255, 255, 0.1) !important;
}

.iphone-screen {
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(135deg, #000000 0%, #1a1a2e 100%) !important;
    border-radius: 35px !important;
    overflow: hidden !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    /* Prevent content copying */
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.status-bar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 15px 25px !important;
    background: rgba(0, 0, 0, 0.8) !important;
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
}

.status-icons {
    display: flex !important;
    gap: 8px !important;
    align-items: center !important;
}

/* Steps Container with Swipe Navigation */
.steps-container {
    flex: 1 !important;
    overflow: hidden !important;
    position: relative !important;
    /* Prevent content copying */
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
    -webkit-touch-callout: none !important;
    -webkit-tap-highlight-color: transparent !important;
}

.steps-wrapper {
    display: flex !important;
    transition: transform 0.3s ease !important;
    height: 100% !important;
    width: 500% !important;
}

.step-slide {
    width: 20% !important;
    padding: 30px 25px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    box-sizing: border-box !important;
    opacity: 0 !important;
    transition: opacity 0.3s ease !important;
}

.step-slide.active {
    opacity: 1 !important;
}

.step-icon {
    width: 70px !important;
    height: 70px !important;
    background: linear-gradient(45deg, #007bff, #0056b3) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
    color: #ffffff !important;
    font-size: 28px !important;
    box-shadow: 0 5px 20px rgba(0, 123, 255, 0.3) !important;
}

.step-slide h4 {
    color: #ffffff !important;
    font-size: 18px !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
}

.step-slide p {
    color: #cccccc !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    margin-bottom: 20px !important;
}

.step-navigation {
    display: flex !important;
    justify-content: center !important;
    gap: 12px !important;
    padding: 20px !important;
}

.nav-dot {
    width: 12px !important;
    height: 12px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.3) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.nav-dot.active {
    background: #007bff !important;
    transform: scale(1.3) !important;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.5) !important;
}

.home-indicator {
    position: absolute !important;
    bottom: 12px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 150px !important;
    height: 6px !important;
    background: #ffffff !important;
    border-radius: 3px !important;
    opacity: 0.8 !important;
}

/* iPhone Animation */
.iphone-frame {
    animation: iphoneFloat 8s ease-in-out infinite !important;
}

@keyframes iphoneFloat {
    0%, 100% {
        transform: translateY(0px) !important;
    }
    50% {
        transform: translateY(-15px) !important;
    }
}

/* Responsive iPhone - Step Content */
@media (max-width: 768px) {
    .iphone-frame {
        width: 320px !important;
        height: 640px !important;
    }
    
    .step-slide {
        padding: 25px 20px !important;
    }
    
    .step-slide h4 {
        font-size: 16px !important;
    }
    
    .step-slide p {
        font-size: 13px !important;
    }
    
    .step-icon {
        width: 50px !important;
        height: 50px !important;
        font-size: 20px !important;
    }
    
    .step-number {
        width: 35px !important;
        height: 35px !important;
        font-size: 16px !important;
    }
}

@media (max-width: 576px) {
    .iphone-frame {
        width: 280px !important;
        height: 560px !important;
    }
    
    .step-slide {
        padding: 20px 15px !important;
    }
    
    .step-slide h4 {
        font-size: 15px !important;
    }
    
    .step-slide p {
        font-size: 12px !important;
    }
    
    .step-icon {
        width: 45px !important;
        height: 45px !important;
        font-size: 18px !important;
    }
    
    .step-number {
        width: 30px !important;
        height: 30px !important;
        font-size: 14px !important;
    }
}
