/* ========================================
   SOCIALBANIAN LANDING PAGE - CSS
   Mit Besa gebaut. 🇦🇱
   ======================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B1538;
    --primary-hover: #A41E34;
    --dark: #000000;
    --dark-grey: #2C2C2C;
    --white: #FFFFFF;
    --light-grey: #F5F5F5;
    --text-dark: #1A1A1A;
    --text-light: #666666;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(139, 21, 56, 0.4);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.btn-hero {
    padding: 1.5rem 3.5rem;
    font-size: 1.3rem;
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(139, 21, 56, 0.5);
}

.btn-hero:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 21, 56, 0.6);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    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 1920 1080"><rect fill="%234A0E1E" width="1920" height="1080"/></svg>');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 21, 56, 0.65) 0%, rgba(0, 0, 0, 0.85) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-title-al {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
}

.hero-title-de {
    font-size: 2.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.hero-cta-sub {
    margin-top: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 25px;
    position: relative;
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 10px; opacity: 1; }
    100% { top: 30px; opacity: 0; }
}

/* Problem Section */
.problem {
    position: relative;
    padding: 6rem 0;
    background: var(--dark);
}

.section-bg {
    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 1920 1080"><rect fill="%231A1A1A" width="1920" height="1080"/></svg>');
    background-size: cover;
    background-position: center;
    opacity: 0.3;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
}

.section-title-al {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--white);
    position: relative;
    z-index: 10;
}

.section-title-de {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 10;
}

.section-title-al.dark {
    color: var(--text-dark);
}

.section-title-de.dark {
    color: var(--text-light);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.problem-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h4 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.problem-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.problem-detail {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Solution Section */
.solution {
    padding: 6rem 0;
    background: var(--white);
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.check-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.25rem;
    font-weight: 900;
}

.feature-text h4 {
    font-size: 1.125rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 0.938rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Device Mockup */
.devices-mockup {
    position: relative;
    width: 100%;
    height: 400px;
}

.device-laptop {
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 280px;
    background: #1A1A1A;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.device-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 6px;
    overflow: hidden;
}

.device-phone {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35%;
    height: 250px;
    background: #1A1A1A;
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.device-screen-phone {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.mockup-header {
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
}

.mockup-header-phone {
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
}

.mockup-content {
    padding: 20px;
}

.mockup-content-phone {
    padding: 12px;
}

.mockup-box {
    height: 40px;
    background: #F0F0F0;
    border-radius: 6px;
    margin-bottom: 12px;
}

.mockup-box-phone {
    height: 30px;
    background: #F0F0F0;
    border-radius: 6px;
    margin-bottom: 10px;
}

/* Process Section */
.process {
    position: relative;
    padding: 6rem 0;
    background: var(--dark);
}

.process-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-item {
    text-align: center;
    flex: 1;
    position: relative;
}

.timeline-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.25rem;
    box-shadow: 0 4px 15px rgba(139, 21, 56, 0.5);
}

.timeline-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.timeline-item h4 {
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.timeline-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.timeline-detail {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.timeline-line {
    width: 60px;
    height: 4px;
    background: var(--primary);
    margin: 0 1rem;
}

/* Testimonials Section */
.testimonials {
    position: relative;
    padding: 6rem 0;
    background: var(--dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 10;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

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

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.testimonial-stars {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--dark-grey);
}

.pricing .section-title-al,
.pricing .section-title-de {
    color: var(--white);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    border: 3px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

.pricing-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.pricing-sub {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    font-size: 1rem;
    color: var(--text-dark);
    border-bottom: 1px solid #E5E5E5;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* About Section */
.about {
    position: relative;
    padding: 6rem 0;
    background: var(--dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.about-image {
    text-align: center;
}

.about-avatar {
    width: 200px;
    height: 200px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    font-weight: 900;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(139, 21, 56, 0.4);
}

.about-text-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 3rem;
    border-radius: 12px;
    border-left: 8px solid var(--primary);
    box-shadow: var(--shadow-lg);
}

.about-bio-al {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-bio-de {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-quote {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-style: italic;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--primary);
}

/* Final CTA Section */
.final-cta {
    position: relative;
    padding: 8rem 0;
    background: var(--dark);
}

.final-cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.final-cta-title-al {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
}

.final-cta-title-de {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.final-cta-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: 1px;
}

.footer-tagline {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-links a:hover {
    color: var(--primary);
}

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

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(139, 21, 56, 0.5);
    z-index: 999;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(139, 21, 56, 0.7);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(139, 21, 56, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(139, 21, 56, 0.8);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .devices-mockup {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        flex-direction: column;
    }
    
    .timeline-line {
        width: 4px;
        height: 60px;
        margin: 1rem 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-title-al {
        font-size: 2rem;
    }
    
    .hero-title-de {
        font-size: 1.5rem;
    }
    
    .btn-hero {
        padding: 1.25rem 2rem;
        font-size: 1.125rem;
        width: 100%;
    }
    
    .section-title-al {
        font-size: 1.8rem;
    }
    
    .section-title-de {
        font-size: 1.2rem;
    }
    
    .problem-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .final-cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title-al {
        font-size: 1.75rem;
    }
    
    .hero-title-de {
        font-size: 1.25rem;
    }
    
    .btn-hero {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .final-cta-title-al {
        font-size: 2rem;
    }
    
    .final-cta-title-de {
        font-size: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}

/* Print Styles */
@media print {
    .nav,
    .whatsapp-float,
    .scroll-indicator {
        display: none;
    }
}
