/* İyi Ki Biz - Modern Love Theme CSS */

:root {
    /* Modern Color Palette */
    --primary-gradient: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #ff9ff3 100%);
    --secondary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --love-gradient: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 25%, #60c5ba 50%, #abecd6 75%, #fdfbfb 100%);
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Playfair Display', serif;
    
    /* Shadows */
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-hard: 0 30px 80px rgba(0, 0, 0, 0.2);
    
    /* Animations */
    --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    line-height: 1.7;
    color: #2d3748;
    overflow-x: hidden;
    background: linear-gradient(135deg, #ffeef8 0%, #f0f9ff 100%);
}

/* Floating Hearts Background Animation */
.floating-hearts {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-hearts::before,
.floating-hearts::after {
    content: '♥';
    position: absolute;
    font-size: 20px;
    color: rgba(255, 107, 107, 0.1);
    animation: float-hearts 15s infinite linear;
}

.floating-hearts::before {
    left: 10%;
    animation-delay: -5s;
}

.floating-hearts::after {
    left: 80%;
    animation-delay: -10s;
    font-size: 16px;
}

@keyframes float-hearts {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Modern Navbar */
.navbar-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-smooth);
    padding: 1rem 0;
}

.navbar-glass.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-container i {
    font-size: 2rem;
    background: var(--love-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    background: var(--love-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #4a5568 !important;
    padding: 0.75rem 1.25rem !important;
    border-radius: 50px;
    transition: var(--transition-smooth);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #ff6b6b !important;
    background: rgba(255, 107, 107, 0.1);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #ffeef8 0%, #f0f9ff 50%, #e0f2fe 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(254, 202, 87, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 159, 243, 0.1) 0%, transparent 50%);
    animation: float-particles 20s ease-in-out infinite;
}

@keyframes float-particles {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-content {
    position: relative;
    z-index: 3;
    animation: fade-in-up 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    font-size: 0.875rem;
    font-weight: 600;
    color: #ff6b6b;
    box-shadow: var(--shadow-soft);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
    opacity: 0;
    animation: slide-in-right 0.8s ease-out forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.title-gradient {
    background: var(--love-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary-gradient {
    background: var(--love-gradient);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    box-shadow: var(--shadow-medium);
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hard);
    color: white;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary-gradient:hover .btn-shine {
    left: 100%;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    color: #4a5568;
    transition: var(--transition-smooth);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
    color: #2d3748;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--love-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
}

.love-container {
    position: relative;
    width: 400px;
    height: 400px;
}

.floating-heart {
    position: absolute;
    font-size: 2rem;
    color: #ff6b6b;
    animation: float-heart 3s ease-in-out infinite;
}

.floating-heart-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-heart-2 {
    top: 30%;
    right: 10%;
    animation-delay: -1s;
}

.floating-heart-3 {
    bottom: 10%;
    left: 50%;
    animation-delay: -2s;
}

@keyframes float-heart {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 1;
    }
}

.couple-silhouette {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
}

.couple-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 10px 30px rgba(255, 107, 107, 0.3));
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    z-index: 3;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #ff6b6b;
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: #ff6b6b;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateX(-50%) translateY(16px);
        opacity: 0;
    }
}

.scroll-indicator span {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
}

/* Process Section */
.process-section {
    padding: 8rem 0;
    background: white;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 107, 107, 0.1);
    color: #ff6b6b;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.title-word {
    display: inline-block;
    margin-right: 0.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.process-card {
    background: white;
    border-radius: 30px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 107, 107, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    text-align: center;
    height: 100%;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hard);
}

.process-number {
    position: absolute;
    top: -20px;
    right: 2rem;
    background: var(--love-gradient);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: #ff6b6b;
}

.process-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.process-description {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.process-arrow {
    display: none;
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ff6b6b;
    font-size: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: float-particles 15s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-header {
    color: white;
}

.cta-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 3rem;
    color: white;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: var(--shadow-hard);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

.pricing-header {
    margin-bottom: 2rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #64748b;
}

.amount {
    font-size: 4rem;
    font-weight: 700;
    background: var(--love-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
}

.decimal {
    font-size: 2rem;
    font-weight: 600;
    color: #64748b;
}

.price-label {
    color: #64748b;
    margin-top: 0.5rem;
    font-weight: 500;
}

.features-list {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    font-weight: 500;
}

.feature-item i {
    color: #10b981;
    font-size: 1.25rem;
}

.btn-cta {
    background: var(--love-gradient);
    border: none;
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 50px;
    color: white;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    width: 100%;
    margin-bottom: 1rem;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hard);
    color: white;
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-particles {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover .btn-particles {
    left: 100%;
}

.payment-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #64748b;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: #f8fafc;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ff6b6b;
    flex-shrink: 0;
}

.contact-details h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.contact-details p {
    color: #64748b;
    margin: 0;
}

/* Modern Footer */
.modern-footer {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: white;
}

.footer-content {
    padding: 4rem 0 2rem;
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo i {
    font-size: 2rem;
    background: var(--love-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo span {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
}

.footer-description {
    color: #a0aec0;
    line-height: 1.7;
    max-width: 400px;
}

.footer-social h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 1.25rem;
}

.social-link:hover {
    background: var(--love-gradient);
    transform: translateY(-3px);
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
}

.copyright {
    color: #a0aec0;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: #ff6b6b;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .process-arrow {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .pricing-card {
        margin: 0 1rem;
        padding: 2rem;
    }
}

/* Animation Classes */
@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fade-in-up 0.8s ease-out;
}

/* Examples Section */
.examples-section {
    padding: 8rem 0;
    background: #f8fafc;
    position: relative;
}

.example-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    height: 100%;
    border: 1px solid rgba(255, 107, 107, 0.1);
}

.example-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hard);
}

.example-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, #ffeef8 0%, #f0f9ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.example-placeholder {
    font-size: 4rem;
    color: rgba(255, 107, 107, 0.3);
    position: relative;
    z-index: 1;
}

.example-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.example-category {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.example-category.sevgili {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
}

.example-category.aile {
    background: linear-gradient(135deg, #10b981, #059669);
}

.example-category.arkadas {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.example-content {
    padding: 2rem;
}

.example-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.example-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.example-date {
    display: flex;
    align-items: center;
    color: #9ca3af;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.btn-example {
    background: var(--love-gradient);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-example:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
}

.btn-example::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-example:hover::before {
    left: 100%;
}

.btn-example span,
.btn-example i {
    position: relative;
    z-index: 2;
}

/* Testimonial */
.testimonial-card {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: var(--shadow-soft);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(255, 107, 107, 0.1);
    position: relative;
}

.testimonial-quote {
    font-size: 3rem;
    color: rgba(255, 107, 107, 0.2);
    position: absolute;
    top: 1rem;
    left: 2rem;
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    text-align: center;
}

.testimonial-author strong {
    display: block;
    font-size: 1.125rem;
    color: #2d3748;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #64748b;
    font-size: 0.875rem;
}

/* Additional animations for examples */
.example-card .example-placeholder {
    animation: gentle-pulse 3s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.5;
    }
}

/* Text Gradient Utility */
.text-gradient {
    background: var(--love-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Demo Banner Styles */
.demo-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem 0;
    position: relative;
    margin-top: 76px; /* Navbar yüksekliği kadar */
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.demo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, 
        rgba(255,255,255,0.1) 0%, 
        rgba(255,255,255,0.05) 50%, 
        rgba(255,255,255,0.1) 100%);
    animation: demo-shine 3s ease-in-out infinite;
}

@keyframes demo-shine {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.demo-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.demo-icon {
    font-size: 2rem;
    color: #feca57;
    animation: demo-bounce 2s ease-in-out infinite;
}

@keyframes demo-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.demo-text h5 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #feca57;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.demo-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-demo {
    background: linear-gradient(135deg, #feca57, #ff6b6b);
    border: none;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}

.btn-demo:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255,107,107,0.4);
    color: white;
    text-decoration: none;
}

.btn-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.btn-demo:hover::before {
    left: 100%;
}

@media (max-width: 768px) {
    .demo-banner {
        text-align: center;
        padding: 1.5rem 0;
    }
    
    .demo-content {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .demo-text h5 {
        font-size: 1rem;
    }
    
    .demo-text p {
        font-size: 0.8rem;
    }
    
    .btn-demo {
        padding: 0.5rem 1.25rem;
        font-size: 0.9rem;
    }
} 