/* Mobil QR Menü - Main Stylesheet */

:root {
    --primary-color: #4facfe;
    --secondary-color: #00f2fe;
    --accent-color: #667eea;
    --gradient-primary: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #20e3b2 0%, #29ffc6 100%);
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.12);
    --border-radius: 16px;
    --border-radius-small: 10px;
}

/* Bildirim Animasyonları - İnce ve Profesyonel */
@keyframes subtle-pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes gentle-glow {
    0% {
        background-color: rgba(240, 80, 110, 0.05);
    }
    50% {
        background-color: rgba(240, 80, 110, 0.15);
    }
    100% {
        background-color: rgba(240, 80, 110, 0.05);
    }
}

@keyframes gentle-glow-orange {
    0% {
        background-color: rgba(250, 160, 90, 0.05);
    }
    50% {
        background-color: rgba(250, 160, 90, 0.15);
    }
    100% {
        background-color: rgba(250, 160, 90, 0.05);
    }
}

/* Kayıt başında yanıp sönen nokta */
.record-notification-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #f0506e;
    border-radius: 50%;
    margin-right: 8px;
    animation: subtle-pulse 2s infinite;
    vertical-align: middle;
}

.record-notification-dot.orange {
    background: #faa05a;
}

/* Kayıt kartı için hafif arka plan değişimi */
.record-item {
    transition: background-color 0.3s ease;
    border-radius: 6px;
    margin-bottom: 8px;
}

.record-item.has-notification {
    animation: gentle-glow 3s infinite;
}

.record-item.has-notification.orange {
    animation: gentle-glow-orange 3s infinite;
}

/* Badge animasyonu kaldırıldı - sadece temiz badge'ler */

/* Kart başlığı noktaları kaldırıldı - sadece badge'ler yeterli */

/* Yasal Sayfalar Modal Stilleri */
.legal-content {
    line-height: 1.8;
    max-height: 60vh;
    overflow-y: auto;
}

.legal-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.legal-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.legal-content ul, 
.legal-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-content strong {
    color: var(--primary-color);
}

/* Yasal sayfa linkleri */
[data-legal-page] {
    cursor: pointer;
    transition: color 0.3s ease;
}

[data-legal-page]:hover {
    color: var(--primary-color) !important;
}

* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Modern Navbar */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    padding: 20px 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    padding: 15px 0;
}

.navbar-brand {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 15px;
}

.navbar-menu a:hover {
    color: var(--primary-color);
}

/* Modern Hero Section */
.hero-section {
    background: linear-gradient(135deg, #2d3561 0%, #1a1f3a 100%);
    color: white;
    padding: 100px 0 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-icon-box {
    width: 280px;
    height: 280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.2) 0%, rgba(0, 242, 254, 0.2) 100%);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 3px solid rgba(79, 172, 254, 0.4);
    box-shadow: 0 10px 40px rgba(79, 172, 254, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 1;
    margin-bottom: 2.5rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Modern Buttons */
.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary-modern {
    background: var(--gradient-primary);
    color: white !important;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(79, 172, 254, 0.4);
    color: white !important;
    text-decoration: none !important;
}

.btn-secondary-modern {
    background: rgba(255, 255, 255, 0.15);
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary-modern:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    color: white !important;
    text-decoration: none !important;
}

.btn-navbar {
    background: var(--gradient-primary);
    color: white !important;
    padding: 10px 24px;
    border-radius: var(--border-radius-small);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.25);
}

.btn-navbar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(79, 172, 254, 0.35);
    color: white !important;
    text-decoration: none !important;
}

/* Pricing & Contact Buttons */
.uk-button-primary {
    border-radius: var(--border-radius-small) !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.uk-button-primary:hover {
    transform: translateY(-3px) !important;
    text-decoration: none !important;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-small);
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 24px;
}

/* Pricing Cards */
.pricing-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.recommended {
    border: 2px solid;
    border-image: var(--gradient-primary) 1;
    transform: scale(1.05);
}

.pricing-card.recommended::before {
    content: 'ÖNERİLİR';
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 20px;
    border-radius: var(--border-radius);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    padding: 8px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 960px) {
    .navbar-desktop {
        display: none !important;
    }
    
    .hamburger-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .btn-modern {
        padding: 14px 24px;
        font-size: 14px;
    }
    
    .feature-card,
    .pricing-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-modern {
        width: 100%;
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .navbar-brand {
        font-size: 18px;
    }
}

/* Mobile Button Optimization */
@media (max-width: 768px) {
    .hero-buttons-mobile {
        margin-top: 15px !important;
    }
    
    .hero-buttons-mobile .uk-grid {
        display: flex !important;
        flex-direction: row !important;
        margin: 0 -5px !important;
    }
    
    .hero-buttons-mobile .uk-grid > div {
        flex: 1 !important;
        width: 50% !important;
        padding: 0 5px !important;
        max-width: 50% !important;
    }
    
    .hero-buttons-mobile .btn-modern {
        font-size: 12px !important;
        padding: 8px 12px !important;
        min-height: 36px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .hero-buttons-mobile .btn-modern span[uk-icon] {
        margin-right: 4px !important;
        font-size: 12px !important;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .hero-buttons-mobile .btn-modern {
        font-size: 11px !important;
        padding: 6px 8px !important;
        min-height: 32px !important;
    }
}
