/* Kişisel QR Landing Page Styles */
:root {
    --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    overflow-x: hidden;
}

/* Navigation - Glassmorphism Design */
.glassmorphism-header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.glassmorphism-header .navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    color: white !important;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.glassmorphism-header .qr-brand-icon {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    transition: all 0.3s ease;
}

.glassmorphism-header .qr-brand-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.glassmorphism-header .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 500;
    padding: 0.6rem 1.2rem !important;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin: 0 0.2rem;
    position: relative;
}

.glassmorphism-header .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white !important;
    transform: translateY(-1px);
}

.glassmorphism-header .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 0.4rem 0.6rem;
}

.glassmorphism-header .navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
}

.glassmorphism-header .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.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Scroll effect for glassmorphism header */
.glassmorphism-header.scrolled {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

/* Mobile responsive for glassmorphism header */
@media (max-width: 768px) {
    .glassmorphism-header .navbar-brand {
        font-size: 1.4rem;
    }
    
    .glassmorphism-header .qr-brand-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
        margin-right: 10px;
    }
    
    .glassmorphism-header .navbar-collapse {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        border-radius: 10px;
        margin-top: 1rem;
        padding: 1rem;
    }
    
    .glassmorphism-header .nav-link {
        padding: 0.8rem 1rem !important;
        margin: 0.2rem 0;
        border-radius: 6px;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 0 40px;
}

.hero::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 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero .lead {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-hero {
    background: white;
    color: var(--primary-color);
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
}

.btn-outline-hero {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-outline-hero:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: white;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* Statistics Section */
.stats {
    padding: 80px 0;
    background: var(--light-bg);
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-top: 8px;
}

/* Demo Section */
.demo {
    padding: 100px 0;
    background: white;
}

.demo-mockup {
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.phone-mockup {
    background: var(--secondary-color);
    border-radius: 30px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.phone-screen {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/19.5;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--gradient-2);
    color: white;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
}

/* Pricing */
.pricing {
    padding: 100px 0;
    background: white;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.price-period {
    color: #6c757d;
    font-size: 1rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--gradient-3);
    color: black;
    text-align: center;
}

.cta h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: black !important;
}

.cta .lead {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    color: black !important;
}

.cta h5 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: black !important;
}

.cta p {
    opacity: 0.9;
    color: black !important;
}

/* CTA Section - All text elements black */
.cta *,
.cta h2,
.cta h5,
.cta p,
.cta .lead,
.cta small,
.cta span,
.cta div {
    color: black !important;
}



/* Footer */
.footer {
    background: var(--dark-bg);
    color: black !important;
    padding: 60px 0 30px;
}

.footer h5 {
    color: black !important;
    margin-bottom: 20px;
}

.footer a {
    color: black !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color) !important;
}

.footer p {
    color: black !important;
}

/* Footer - All text elements black */
.footer *,
.footer .text-muted,
.footer small,
.footer .copyright,
.footer .copyright p,
.footer .row p,
.footer .col p,
.footer span {
    color: black !important;
}

/* FINAL FIX - Force all CTA and Footer text to be BLACK */
section.cta,
section.cta *,
section[id="contact"],
section[id="contact"] *,
.cta,
.cta *,
#contact,
#contact * {
    color: #000000 !important;
    text-shadow: none !important;
}

.footer,
.footer *,
footer,
footer * {
    color: #000000 !important;
    text-shadow: none !important;
}

/* Override any hover states that might be white */
.footer a:hover,
footer a:hover {
    color: var(--primary-color) !important;
}

/* Responsive */
@media (max-width: 768px) {
    /* Navigation fixes */
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar-toggler {
        border: none;
        padding: 4px 8px;
    }
    
    .navbar-toggler:focus {
        box-shadow: none;
    }

    /* Hero section fixes */
    .hero {
        min-height: 80vh;
        padding: 80px 0 40px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }

    .hero .lead {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .btn-hero {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    /* Demo mockup mobile fix */
    .demo-mockup {
        max-width: 280px;
        margin-top: 30px;
    }
    
    .phone-mockup {
        padding: 15px;
    }

    .features {
        padding: 60px 0;
    }

    .feature-card {
        margin-bottom: 30px;
        padding: 30px 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .feature-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    /* Stats section mobile */
    .stats {
        padding: 50px 0;
    }
    
    .stat-item {
        padding: 20px 15px;
        margin-bottom: 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* Extra small screens */
@media (max-width: 480px) {
    .hero {
        padding: 70px 0 30px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .lead {
        font-size: 0.95rem;
    }
    
    .btn-hero {
        font-size: 0.9rem;
        padding: 10px 16px;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.6s ease-out;
}

/* Order Modal */
.order-step {
    min-height: 400px;
}

.payment-option {
    position: relative;
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-option label {
    cursor: pointer;
    display: block;
    transition: all 0.3s ease;
}

.payment-option label:hover .card {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.payment-option input:checked+label .card {
    border-color: #0d6efd !important;
    background-color: #f8f9ff;
}

.payment-info {
    transition: all 0.3s ease;
}

.modal-content {
    border-radius: 15px;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.modal-header {
    background: var(--gradient-1);
    color: white;
    border-radius: 15px 15px 0 0;
}

.modal-title {
    font-weight: 600;
}

.btn-close {
    filter: brightness(0) invert(1);
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
}

.is-invalid {
    border-color: #dc3545;
}

.card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.card-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

/* Toast Notifications */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.toast-notification.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.toast-error {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
}

.toast-warning {
    background: linear-gradient(135deg, #ffc107, #fd7e14);
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast-content i {
    font-size: 1.2rem;
}

/* Theme Preview Styles */
.theme-preview-container {
    position: relative;
}

.theme-preview {
    border: 2px solid #e9ecef;
    border-radius: 15px;
    padding: 20px;
    background: white;
    transition: all 0.3s ease;
    min-height: 200px;
}

.preview-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e9ecef;
}

.preview-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 1.5rem;
}

.preview-info h6 {
    margin: 0;
    font-weight: 600;
}

.preview-info small {
    opacity: 0.8;
}

.preview-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.preview-social-btn {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.preview-social-btn i {
    margin-right: 8px;
    width: 20px;
}

/* Theme-specific styles */
.theme-preview.theme-default {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: #2c3e50;
}

.theme-preview.theme-default .preview-avatar {
    background: #3498db;
    color: white;
}

.theme-preview.theme-default .preview-social-btn {
    background: #3498db;
    color: white;
}

.theme-preview.theme-blue {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.theme-preview.theme-blue .preview-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-preview.theme-blue .preview-social-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-preview.theme-nature {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.theme-preview.theme-nature .preview-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-preview.theme-nature .preview-social-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-preview.theme-elegant {
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
}

.theme-preview.theme-elegant .preview-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-preview.theme-elegant .preview-social-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-preview.theme-gold {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: white;
}

.theme-preview.theme-gold .preview-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-preview.theme-gold .preview-social-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-preview.theme-purple {
    background: linear-gradient(135deg, #8e44ad 0%, #9b59b6 100%);
    color: white;
}

.theme-preview.theme-purple .preview-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-preview.theme-purple .preview-social-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-preview.theme-dark {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.theme-preview.theme-dark .preview-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-preview.theme-dark .preview-social-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-preview.theme-ocean {
    background: linear-gradient(135deg, #ff6b9d 0%, #c44569 100%);
    color: white;
}

.theme-preview.theme-ocean .preview-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-preview.theme-ocean .preview-social-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-preview.theme-minimal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.theme-preview.theme-minimal .preview-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-preview.theme-minimal .preview-social-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-preview.theme-pastel {
    background: linear-gradient(135deg, #ffeaa7 0%, #fab1a0 100%);
    color: #2d3436;
}

.theme-preview.theme-pastel .preview-avatar {
    background: rgba(45, 52, 54, 0.1);
    color: #2d3436;
}

.theme-preview.theme-pastel .preview-social-btn {
    background: rgba(45, 52, 54, 0.1);
    color: #2d3436;
}

.theme-preview.theme-retro {
    background: linear-gradient(135deg, #fd79a8 0%, #e84393 100%);
    color: white;
}

.theme-preview.theme-retro .preview-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-preview.theme-retro .preview-social-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-preview.theme-neon {
    background: linear-gradient(135deg, #00cec9 0%, #55a3ff 100%);
    color: white;
}

.theme-preview.theme-neon .preview-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.theme-preview.theme-neon .preview-social-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

/* Dynamic Social Media Styles */
.social-platforms-grid .social-platform-btn {
    border: 2px solid #e9ecef;
    padding: 15px 10px;
    transition: all 0.3s ease;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    height: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.social-platform-btn:hover {
    transform: translateY(-2px);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.2);
}

.social-platform-btn.selected {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white !important;
}

.social-platform-btn.selected i {
    color: white !important;
}

.social-platform-btn i {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.social-platform-btn span {
    font-weight: 500;
    font-size: 0.75rem;
}

.selected-social-medias .social-media-item {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 15px;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.selected-social-medias .social-media-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(52, 152, 219, 0.1);
}

.social-media-item .platform-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.social-media-item .platform-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 1.2rem;
}

.social-media-item .platform-name {
    font-weight: 600;
    color: var(--secondary-color);
    flex: 1;
}

.social-media-item .remove-btn {
    border: none;
    background: #dc3545;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-media-item .remove-btn:hover {
    background: #c82333;
    transform: scale(1.1);
}

.social-media-item .input-group {
    gap: 8px;
}

.social-media-item .form-control {
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.social-media-item .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.15);
}

.username-prefix {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-right: none;
    border-radius: 8px 0 0 8px;
    padding: 10px 12px;
    color: #6c757d;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.url-preview {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 8px 12px;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #6c757d;
    word-break: break-all;
}

/* Platform specific colors */
.platform-instagram { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.platform-x { 
    background: #1da1f2; 
    color: #ffffff;
}

.platform-x:hover { 
    background: #0d8bd9; 
}

/* X Platform Icon Color */
.platform-x i {
    color: #ffffff !important;
}

/* X Platform Button Icon Color */
.social-platform-btn[data-platform="x"] i {
    color: #1da1f2 !important;
}
.platform-linkedin { background: #0077b5; }
.platform-facebook { background: #1877f2; }
.platform-youtube { background: #ff0000; }
.platform-tiktok { background: #000000; }
.platform-whatsapp { background: #25d366; }
.platform-website { background: #17a2b8; }
.platform-snapchat { background: #fffc00; color: #000 !important; }
.platform-discord { background: #5865f2; }
.platform-telegram { background: #0088cc; }
.platform-twitch { background: #9146ff; }

.text-purple {
    color: #9146ff !important;
}

@media (max-width: 768px) {
    .social-platforms-grid .col-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .social-platform-btn {
        height: 70px;
        padding: 10px 5px;
    }
    
    .social-platform-btn i {
        font-size: 1.2rem;
    }
    
    .social-platform-btn span {
        font-size: 0.7rem;
    }
}

/* Telefon Input Tasarımı - Klasik Dropdown + Input */
.phone-input-container {
    display: flex;
    position: relative;
}

.country-dropdown {
    flex: 0 0 120px;
    border-right: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    background: #f8f9fa;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.country-dropdown:hover {
    background: #e9ecef;
}

.country-dropdown:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
    outline: none;
}

.phone-number-input {
    flex: 1;
    border-left: none;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    transition: all 0.3s ease;
}

.phone-number-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 152, 219, 0.25);
    border-color: #3498db;
}

.phone-input-container .form-control:focus {
    border-color: #3498db;
}

.country-flag {
    font-size: 1.2em;
    margin-right: 5px;
}

.country-code {
    font-size: 0.9em;
    color: #666;
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .country-dropdown {
        flex: 0 0 100px;
        font-size: 0.85rem;
    }
    
    .country-flag {
        font-size: 1em;
    }
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-image {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

/* Features Section */
.features {
    padding: 100px 0;
    background: #f8f9fa;
}

.feature-image {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-image:hover {
    transform: translateY(-10px);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.feature-list li {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.feature-list i {
    margin-right: 10px;
}

/* Video Demo Section */
.video-demo {
    padding: 100px 0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: black;
}

.cta .btn-primary {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 15px 40px;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.cta .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Footer */
.footer {
    padding: 60px 0;
    background: #f8f9fa;
}

.footer h5 {
    color: black;
    margin-bottom: 1rem;
}

.footer a {
    color: black;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--primary-color);
}

.footer p {
    color: black;
}

.footer * {
    color: black !important;
}

/* Animations */
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Responsive */
@media (max-width: 991.98px) {
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero .lead {
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
        margin-bottom: 3rem;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 1rem;
        white-space: nowrap;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .feature-image {
        margin: 2rem auto;
        max-width: 80%;
        display: block;
    }
    
    .features h3 {
        text-align: center;
        margin-top: 1rem;
    }
    
    .features .lead {
        text-align: center;
        font-size: 1rem;
    }
    
    .feature-list {
        max-width: 300px;
        margin: 1.5rem auto;
    }
    
    .footer {
        text-align: center;
    }
    
    .footer .text-lg-end {
        text-align: center !important;
        margin-top: 1.5rem;
    }
    
    .list-inline {
        margin-bottom: 1rem;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar-collapse {
        background: white;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        margin-top: 1rem;
    }
    
    .nav-item {
        margin: 0.5rem 0;
    }
}

@media (max-width: 575.98px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn-lg {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
    
    .feature-image {
        max-width: 95%;
    }
}

/* reCAPTCHA Styles */
.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

#completeOrderBtn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}

#recaptcha-error {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

#recaptcha-error-cod {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
}

/* reCAPTCHA responsive adjustments */
@media (max-width: 768px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
}

@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.75);
        transform-origin: center;
    }
}
