/* Landing Page Styles */

/* Çerez Onay Banner Stilleri */
.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 350px;
    max-width: calc(100vw - 40px);
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 2px solid #ffc107;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    padding: 16px;
}

.cookie-consent-banner.show {
    transform: translateX(0);
}

.cookie-content {
    color: #ffffff;
}

.cookie-title {
    color: #ffc107;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 8px;
}

.cookie-text {
    color: #e0e0e0;
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 12px;
}

.cookie-link {
    color: #ffc107;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-link:hover {
    color: #ffd700;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cookie-actions .btn {
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.cookie-actions .btn-outline-light:hover {
    background-color: #ffffff;
    color: #1a1a2e;
    transform: translateY(-1px);
}

.cookie-actions .btn-warning:hover {
    background-color: #ffd700;
    border-color: #ffd700;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

/* Çerez Ayarları Modal Stilleri */
.cookie-category {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.cookie-category:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.cookie-category h6 {
    color: #495057;
    font-weight: 600;
}

.cookie-category .form-check-input:checked {
    background-color: #ffc107;
    border-color: #ffc107;
}

.cookie-category .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.25);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .cookie-consent-banner {
        width: 300px;
        left: 15px;
        bottom: 15px;
        padding: 14px;
    }
    
    .cookie-actions .btn {
        font-size: 0.8rem;
        padding: 7px 14px;
    }
}

@media (max-width: 576px) {
    .cookie-consent-banner {
        width: 280px;
        left: 10px;
        bottom: 10px;
        padding: 12px;
    }
    
    .cookie-title {
        font-size: 0.95rem;
    }
    
    .cookie-text {
        font-size: 0.85rem;
    }
    
    .cookie-actions .btn {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* Global Styles */
* {
    font-family: "Inter Tight", sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #181d26;
}

/* Navigation Styles */
.navbar-landing {
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    transition: all 0.3s ease;
}

.navbar-landing.scrolled {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #ffffff !important;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: #ffffff !important;
}

.nav-link {
    font-weight: 500;
    color: #ffffff !important;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #667eea !important;
}

.btn-landing {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-landing:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
    color: white;
}

.btn-outline-landing {
    border: 2px solid #667eea;
    color: #667eea;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline-landing:hover {
    background: #667eea;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

/* Hero Section Styles */
.hero-section {
    background: #181d26 url('/images/hero-bg.png') center center/cover no-repeat;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.min-vh-75 {
    min-height: 75vh;
}

/* Animation Styles */
.animate-fade-in {
    animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s both;
}

.animate-fade-in-right {
    animation: fadeInRight 1s ease-out 0.5s both;
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Dashboard Preview Styles */
.dashboard-preview {
    max-width: 400px;
    margin: 0 auto;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.dashboard-preview:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}


/* Pricing Cards */
.pricing-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

/* Testimonial Cards */
.testimonial-card {
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-3px);
}

/* Gradient Backgrounds */
.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

/* Custom Button Styles */
.btn-warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    color: white;
    font-weight: 600;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 87, 108, 0.4);
}

/* Hero Stats */
.hero-stats {
    margin: 3rem 0;
    position: relative;
    z-index: 5;
}

.hero-stats .stat-item {
    padding: 1.5rem;
    border-radius: 15px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-stats .stat-item:hover {
    background: rgba(0, 0, 0, 0.6);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.hero-stats .stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8), 0 0 10px rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.hero-stats .stat-item small {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/* Responsive Design */


/* Additional Landing Page Styles */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.hero-content .lead {
    font-size: 1.4rem;
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    color: #ffffff;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    margin-right: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.hero-buttons .btn-warning {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #1a1a1a;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 255, 255, 0.1);
    font-weight: 700;
}

.hero-buttons .btn-warning:hover {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.2);
    color: #1a1a1a;
}

.hero-buttons .btn-outline-light {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    backdrop-filter: blur(15px);
    font-weight: 600;
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.7);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
}


/* Pricing Cards Enhancement */
.pricing-card .price-display {
    margin: 1rem 0;
}

.pricing-card .price-display .display-4 {
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
}

/* Testimonial Cards Enhancement */
.testimonial-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.testimonial-rating i {
    font-size: 0.9rem;
}

/* CTA Section Enhancement */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

/* Footer Enhancement */
.footer-logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Scroll Animations */
.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utility Classes */
.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-soft {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.border-gradient {
    border: 2px solid;
    border-image: linear-gradient(135deg, #667eea 0%, #764ba2 100%) 1;
}

/* Mobile Optimizations */

.randevu-section {
    padding-top: 150px;
    
}
/* Section Backgrounds */
.bg-light {
    background-color: #181d26 !important;
}

.bg-white {
    background-color: #181d26 !important;
}

/* Features Section Styles */
.testimonial-card-half {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    min-height: 300px;
    background: #000000 !important;
    position: relative;
    overflow: visible;
    border-radius: 20px;
    
}

.testimonial-card-half::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 75% 25%, rgba(255, 20, 147, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 85% 75%, rgba(255, 105, 180, 0.25) 0%, transparent 35%),
        radial-gradient(circle at 90% 50%, rgba(255, 0, 255, 0.2) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
}

.testimonial-card-half:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

.testimonial-bg-image-overflow {
    position: relative;
    height: 400px;
    overflow: visible;
}

.testimonial-bg-image-overflow::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 60% 40%, rgba(255, 20, 147, 0.4) 0%, transparent 25%),
        radial-gradient(circle at 80% 60%, rgba(255, 105, 180, 0.3) 0%, transparent 30%),
        radial-gradient(circle at 70% 80%, rgba(255, 0, 255, 0.25) 0%, transparent 35%);
    border-radius: 0 1rem 1rem 0;
    z-index: 1;
}

.testimonial-bg-image-overflow img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: top;
    border-radius: 0 1rem 1rem 0;
    position: relative;
    z-index: 2;
    transform: translateY(-85px);
}

.testimonial-card-half .row {
    position: relative;
    z-index: 3;
}


/* Features Panel Section Styles */
.feature-panel-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0f1217 !important;
    backdrop-filter: blur(10px);
    border-radius: 20px !important;
}

.feature-panel-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.feature-icon-3d {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    font-size: 24px;
    color: white;
    position: relative;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.feature-icon-3d::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 17px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(8px);
}

.services-badge .badge {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 500;
}

/* Pricing Table Styles */
.pricing-table-container {
    background: #0f1217;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.pricing-features-column {
    background: #0f1217 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item {
    padding: 0.5rem 0;
    min-height: 3rem;
    display: flex;
    align-items: center;
}

.feature-label {
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 500;
}

.pricing-plan-card {
    background: #0f1217 !important;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.pricing-plan-card:last-child {
    border-right: none;
}

.plan-gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    opacity: 0.1;
    z-index: 1;
}

.feature-value {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-value:last-child {
    border-bottom: none;
}

.pricing-plan-card .btn {
    border-radius: 50px;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
}

.pricing-plan-card .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.pricing-plan-card .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.pricing-badge .badge {
    background: rgba(40, 167, 69, 0.2) !important;
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
    font-weight: 500;
}

.free-trial-badge .badge {
    background: rgba(40, 167, 69, 0.9) !important;
    color: #ffffff;
    border: none;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

/* Free Trial Section */
.free-trial-info {
    background: linear-gradient(135deg, #0f1217 0%, #1a1f2e 100%) !important;
    border: 1px solid rgba(40, 167, 69, 0.2);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.trial-icon {
    animation: bounce-gift 2s infinite;
}

@keyframes bounce-gift {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.trial-badge .badge {
    background: rgba(40, 167, 69, 0.9) !important;
    color: #ffffff;
    border: none;
    font-weight: 600;
    animation: pulse-green 2s infinite;
}

/* Landing Page Pricing Cards - Kompakt ve Modern */
/* Ana kart container - Her plan için */
.landing-pricing-card {
    background: linear-gradient(135deg, #0f1217 0%, #1a1f2e 100%);
    border-radius: 20px;
    padding: 1.5rem 1.25rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Kart hover efekti - Yukarı kalkma animasyonu */
.landing-pricing-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

/* Öne çıkan plan (Profesyonel) - Gradient border ve arkaplan */
.landing-pricing-featured {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 2px solid rgba(102, 126, 234, 0.4);
    transform: scale(1.03);
}

/* Öne çıkan plan hover efekti */
.landing-pricing-featured:hover {
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.5);
}

/* Popüler badge - Üstte gösterilen etiket */
.landing-popular-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 0.35rem 0.85rem;
    border-radius: 15px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.5);
    animation: pulse-badge 2s infinite;
}

/* Badge pulse animasyonu */
@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(102, 126, 234, 0.5);
    }
    50% {
        box-shadow: 0 5px 25px rgba(102, 126, 234, 0.8);
    }
}

/* Plan başlık bölümü */
.landing-pricing-header {
    text-align: center;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1.25rem;
}

/* Plan ikonu - Gradient arkaplan ile vurgulu */
.landing-plan-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

/* Plan adı */
.landing-plan-name {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
}

/* Fiyat container */
.landing-plan-price {
    margin-top: 0.75rem;
}

/* Fiyat miktarı - Büyük ve belirgin */
.landing-price-amount {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    text-shadow: 0 3px 10px rgba(102, 126, 234, 0.3);
}

/* Fiyat periyodu */
.landing-price-period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    font-weight: 400;
}

/* Plan özellikleri listesi */
.landing-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    flex-grow: 1;
}

/* Her özellik satırı */
.landing-plan-features li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Özellik ikonu - Check işareti */
.landing-plan-features li i {
    color: #28a745;
    font-size: 0.95rem;
    flex-shrink: 0;
}

/* Plan footer - Buton bölümü */
.landing-pricing-footer {
    margin-top: auto;
}

/* Temel plan butonu - Minimal stil */
.landing-pricing-btn-basic {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    transition: all 0.3s ease;
}

/* Temel plan butonu hover */
.landing-pricing-btn-basic:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* Profesyonel plan butonu - Gradient stil */
.landing-pricing-btn-pro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.5);
    transition: all 0.3s ease;
}

/* Profesyonel plan butonu hover */
.landing-pricing-btn-pro:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.7);
}

/* Kurumsal plan butonu - Altın ton */
.landing-pricing-btn-enterprise {
    background: linear-gradient(135deg, #f5af19 0%, #f12711 100%) !important;
    border: none !important;
    color: #ffffff !important;
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    border-radius: 50px !important;
    box-shadow: 0 8px 20px rgba(245, 175, 25, 0.5);
    transition: all 0.3s ease;
}

/* Kurumsal plan butonu hover */
.landing-pricing-btn-enterprise:hover {
    background: linear-gradient(135deg, #f12711 0%, #f5af19 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 175, 25, 0.7);
}

/* Mobil responsive tasarım */
@media (max-width: 991px) {
    /* Öne çıkan planın ölçeğini mobilde normal yap */
    .landing-pricing-featured {
        transform: scale(1);
    }
    
    .landing-pricing-featured:hover {
        transform: scale(1) translateY(-8px);
    }
    
    /* Kart padding'i azalt */
    .landing-pricing-card {
        padding: 1.25rem 1rem;
    }
    
    /* İkon boyutunu küçült */
    .landing-plan-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Fiyat fontunu küçült */
    .landing-price-amount {
        font-size: 2rem;
    }
    
    /* Plan adı fontunu küçült */
    .landing-plan-name {
        font-size: 1.25rem;
    }
    
    /* Özellik listesi fontunu küçült */
    .landing-plan-features li {
        font-size: 0.85rem;
        padding: 0.4rem 0;
    }
    
    /* Buton padding'i azalt */
    .landing-pricing-btn-basic,
    .landing-pricing-btn-pro,
    .landing-pricing-btn-enterprise {
        padding: 0.65rem 1.25rem !important;
        font-size: 0.95rem !important;
    }
}

/* Mobile App Section */
.mobile-app-card {
    background: #0f1217 !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(102, 126, 234, 0.1);
    position: relative;
    overflow: hidden;
}

.mobile-app-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.mobile-app-card > * {
    position: relative;
    z-index: 2;
}

.app-badge .badge {
    background: rgba(102, 126, 234, 0.2) !important;
    color: #667eea;
    border: 1px solid rgba(102, 126, 234, 0.3);
    font-weight: 500;
}

.mobile-app-content {
    padding-right: 2rem;
}

.app-features .feature-item {
    transition: transform 0.3s ease;
}

.app-features .feature-item:hover {
    transform: translateX(10px);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.phone-mockup {
    max-height: 600px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: scale(1.05);
}

.app-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 25px;
}

.app-buttons .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
}

.app-buttons .btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.app-buttons .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: #ffffff;
}

/* Testimonials Section */
.testimonials-badge .badge {
    background: rgba(255, 193, 7, 0.2) !important;
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
    font-weight: 500;
}

.testimonial-card {
    background: #0f1217 !important;
    border: 1px solid rgba(255, 193, 7, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/images/gradient-4.png') center center/cover no-repeat;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.testimonial-card > * {
    position: relative;
    z-index: 2;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 193, 7, 0.2);
}

.testimonial-card:hover::before {
    opacity: 0.7;
}

.testimonial-avatar {
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1);
}

.testimonial-rating {
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-rating {
    transform: scale(1.05);
}

/* CTA Section */
.cta-section {
    background: #181d26 url('/images/about-bg.png') center center/cover no-repeat;
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    padding: 0;
}

.cta-form-container {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-input {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    padding: 0.75rem 1rem;
    border-radius: 25px 0 0 25px !important;
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, 0.7) !important;
}

.cta-input:focus {
    background: rgba(0, 0, 0, 0.5) !important;
    border-color: rgba(102, 126, 234, 0.5) !important;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25) !important;
    color: #ffffff !important;
}

.cta-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    padding: 0.75rem 1.5rem;
    border-radius: 0 25px 25px 0 !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.benefit-check {
    width: 20px;
    height: 20px;
    background: rgba(40, 167, 69, 0.9) !important;
    border: none;
    flex-shrink: 0;
}

.benefit-item {
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(5px);
}

.cta-main-button {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    padding: 1rem 2rem;
    border-radius: 25px !important;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.cta-main-button:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.cta-button-container {
    margin-top: 2rem;
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #0f1217 0%, #1a1f2e 50%, #0f1217 100%);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.footer-section .container {
    position: relative;
    z-index: 2;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-brand h5 {
    color: #ffffff;
    font-weight: 700;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
    border-color: transparent;
}

.footer-links h6 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: #667eea;
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    border-radius: 25px !important;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    flex: 1;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.newsletter-input:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(102, 126, 234, 0.5) !important;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25) !important;
    color: #ffffff !important;
}

.newsletter-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border: none !important;
    border-radius: 50% !important;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}
@media (max-width: 768px) {
    /* Hamburger menü beyaz yapma */
    .navbar-toggler {
        border: none;
    }
    
    .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, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
        outline: none;
    }
    
    /* Navbar collapse - dumanlı transparan arka plan */
    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: 1.5rem;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-top: none;
    }
    
    /* Navbar içerik düzeni */
    .navbar-collapse .navbar-nav {
        margin-bottom: 1rem;
    }
    
    .navbar-collapse .nav-item {
        margin-bottom: 0.25rem;
    }
    
    .navbar-collapse .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        color: rgba(255, 255, 255, 0.9) !important;
        transition: all 0.3s ease;
        text-align: center;
    }
    
    .navbar-collapse .nav-link:hover {
        background: rgba(255, 255, 255, 0.15);
        color: #ffffff !important;
    }
    
    .navbar-collapse .d-flex {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
    }
    
    .navbar-collapse .btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem;
    }
    
    .hero-section {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .hero-section::before {
        background: rgba(0, 0, 0, 0.3);
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
    }
    
    .hero-buttons .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
        margin-right: 0.5rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-stats .stat-item {
        padding: 1.25rem 0.75rem;
        margin-bottom: 1rem;
        background: rgba(0, 0, 0, 0.5);
        /* Telefon modunda sabit boyut */
        min-height: 110px;
        height: 110px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .hero-stats .stat-item h3 {
        font-size: 1.75rem;
        line-height: 1;
        margin: 0;
        text-align: center;
    }
    
    .hero-stats .stat-item small {
        font-size: 0.75rem;
        line-height: 1.3;
        display: block;
        text-align: center;
        max-width: 90%;
    }
    
    .dashboard-preview {
        transform: none;
        margin-top: 2rem;
    }
    
    .display-4 {
        font-size: 2.5rem;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .navbar-logo {
        height: 35px;
    }
    
    .btn-landing, .btn-outline-landing {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    /* Mobil uygulama butonları yan yana */
    .app-buttons {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        justify-content: center;
    }
    
    .app-buttons .btn {
        flex: 1;
        min-width: 135px;
        max-width: 160px;
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .app-buttons .btn i {
        font-size: 0.9rem;
    }
    
     .testimonial-bg-image-overflow img {
         height: 400px !important;
         transform: translateY(0px);
         border-radius: 20px;
     }
     
     .pricing-features-column {
         border-right: none;
         border-bottom: 1px solid rgba(255, 255, 255, 0.1);
         margin-bottom: 1rem;
     }
     
     .pricing-plan-card {
         border-right: none;
         margin-bottom: 1rem;
     }
     
     .pricing-table-container {
         border-radius: 15px;
     }
 }

/* App Links Sayfası Stilleri */
.app-links-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #181d26 0%, #0f1217 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.app-links-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255, 193, 7, 0.05) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.app-links-section .container {
    position: relative;
    z-index: 2;
}


.app-link-card {
    display: block;
    background: linear-gradient(135deg, #0f1217 0%, #1a1f2e 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 180px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.app-link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.app-link-card:hover {
    transform: translateY(-8px);
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    text-decoration: none;
    color: inherit;
}

.app-link-card:hover::before {
    opacity: 1;
}

.app-link-card > * {
    position: relative;
    z-index: 2;
}

.app-link-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.app-link-card:hover .app-link-icon {
    transform: scale(1.1);
}

.app-link-content {
    flex: 1;
}

.app-link-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.app-link-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.app-link-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.app-link-card:hover .app-link-badge {
    background: rgba(102, 126, 234, 0.3);
    color: #ffffff;
    transform: translateX(5px);
}

/* Özel kart renkleri */
.google-play-card .app-link-icon {
    background: linear-gradient(135deg, #01875f 0%, #00c851 100%);
    box-shadow: 0 8px 25px rgba(1, 135, 95, 0.3);
}

.google-play-card:hover {
    border-color: rgba(1, 135, 95, 0.4);
    box-shadow: 0 20px 40px rgba(1, 135, 95, 0.2);
}

.app-store-card .app-link-icon {
    background: linear-gradient(135deg, #007aff 0%, #5856d6 100%);
    box-shadow: 0 8px 25px rgba(0, 122, 255, 0.3);
}

.app-store-card:hover {
    border-color: rgba(0, 122, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 122, 255, 0.2);
}

.instagram-card .app-link-icon {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 8px 25px rgba(240, 148, 51, 0.3);
}

.instagram-card:hover {
    border-color: rgba(240, 148, 51, 0.4);
    box-shadow: 0 20px 40px rgba(240, 148, 51, 0.2);
}

.salonx-app-card .app-link-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.salonx-app-card:hover {
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
}

/* Responsive tasarım */
@media (max-width: 768px) {

    

    
    .app-link-card {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        min-height: 120px;
        justify-content: space-between;
    }
    
    .app-link-icon {
        width: 50px;
        height: 50px;
        font-size: 1.6rem;
    }
    
    .app-link-title {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
        font-weight: 600;
    }
    
    .app-link-description {
        font-size: 0.95rem;
        margin-bottom: 0.6rem;
        line-height: 1.3;
    }
    
    .app-link-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
        font-weight: 600;
    }
}

@media (max-width: 576px) {

    .app-links-section {    
        padding: 80px 0 60px;
    }
    .app-link-card {
        padding: 0.75rem;
        min-height: 100px;
        justify-content: space-between;
    }
    
    .app-link-icon {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }
    
    .app-link-title {
        font-size: 1.4rem;
        margin-bottom: 0.2rem;
        font-weight: 600;
    }
    
    .app-link-description {
        font-size: 0.85rem;
        margin-bottom: 0.4rem;
        line-height: 1.3;
    }
    
    .app-link-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
        font-weight: 600;
    }
}

/* Print Styles */
@media print {
    .navbar-landing,
    .btn-landing,
    .btn-outline-landing {
        display: none !important;
    }
    
    .hero-section {
        background: none !important;
        color: #000 !important;
    }
    
    .mobile-app-card {
        padding: 2rem !important;
    }
    
    .mobile-app-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .phone-mockup {
        max-height: 400px;
    }
    
    .app-buttons {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.75rem;
        justify-content: flex-start;
    }
    
    .app-buttons .btn {
        flex: 1;
        min-width: 140px;
        padding: 0.65rem 1rem;
        font-size: 0.9rem;
    }
    
    .cta-content {
        padding: 0;
        text-align: center;
    }
    
    .cta-form-container {
        padding: 1.5rem;
    }
    
    .cta-input {
        border-radius: 25px !important;
        margin-bottom: 1rem;
    }
    
    .cta-button {
        border-radius: 25px !important;
        width: 100%;
    }
    
    .footer-section {
        padding: 3rem 0 2rem;
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-links {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-newsletter {
        text-align: center;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-btn {
        width: 100%;
        border-radius: 25px !important;
    }
    
    .footer-bottom {
        text-align: center;
        margin-top: 2rem;
    }
    
}

/* Footer Ödeme Logoları - Basit */
.footer-logos-simple {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logos-simple i {
    font-size: 28px;
    transition: all 0.3s ease;
}

.footer-logos-simple i:hover {
    transform: scale(1.1);
}

.footer-logos-simple i:nth-child(1) {
    color: #1a73e8; /* Visa - Daha parlak mavi */
}

.footer-logos-simple i:nth-child(2) {
    color: #ea4335; /* Mastercard - Daha parlak kırmızı */
}

.iyzico-text {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4caf50;
    font-weight: 600;
    font-size: 14px;
}

.iyzico-text i {
    color: #4caf50;
    font-size: 24px;
}

/* Responsive - Footer logoları */
@media (max-width: 768px) {
    .footer-logos-simple {
        gap: 15px;
    }
    
    .footer-logos-simple i {
        font-size: 24px;
    }
    
    .iyzico-text {
        font-size: 12px;
    }
    
    .iyzico-text i {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .footer-logos-simple {
        gap: 12px;
    }
    
    .footer-logos-simple i {
        font-size: 22px;
    }
    
    .iyzico-text {
        font-size: 11px;
    }
    
    .iyzico-text i {
        font-size: 18px;
    }
}
