/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors from Bliska Logo */
    --color-primary: #5FA583;
    --color-secondary: #2D4356;
    --color-dark: #1a1a2e;
    --color-light: #f8f9fa;
    --color-white: #ffffff;
    --color-gray: #6c757d;
    --color-gray-light: #e9ecef;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #5FA583 0%, #4a8a6a 100%);
    --gradient-secondary: linear-gradient(135deg, #2D4356 0%, #1e2d3d 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
    --gradient-hero: linear-gradient(135deg,
            rgba(45, 67, 86, 0.95) 0%,
            rgba(26, 26, 46, 0.98) 50%,
            rgba(95, 165, 131, 0.15) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.24);

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-family);
    line-height: var(--line-height-base);
    color: var(--color-dark);
    background: var(--color-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
}

.logo-wrapper {
    display: flex;
    align-items: center;
}

.logo {
    height: 50px;
    width: auto;
    transition: transform var(--transition-base);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
}

.nav-link {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

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

.nav-link:hover::after {
    width: 100%;
}

/* ==========================================
   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: var(--gradient-hero);
    z-index: -1;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(95, 165, 131, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(45, 67, 86, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    padding: var(--spacing-lg) 0;
}

.hero-text {
    color: var(--color-white);
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: var(--spacing-xs) var(--spacing-sm);
    background: rgba(95, 165, 131, 0.2);
    border: 1px solid rgba(95, 165, 131, 0.3);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: var(--spacing-md);
    backdrop-filter: blur(10px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-md);
}

.gradient-text {
    background: linear-gradient(135deg, #5FA583 0%, #7dd3a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-primary);
}

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

.hero-demo {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.phone-mockup {
    position: relative;
    width: 340px;
    height: 680px;
    background: #1a1a2e;
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, 0.1),
        var(--shadow-xl);
    animation: floatPhone 3s ease-in-out infinite;
}

@keyframes floatPhone {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(1deg);
    }
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 28px;
    background: #1a1a2e;
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-left: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(-45deg);
}

/* ==========================================
   SECTIONS
   ========================================== */
.section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
    margin-top: var(--spacing-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================
   WHO IS BLISKA
   ========================================== */
.who-section {
    background: var(--color-light);
}

.who-content {
    max-width: 800px;
    margin: 0 auto;
}

.who-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

/* ==========================================
   WHY CHOOSE BLISKA
   ========================================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.why-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.why-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.why-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-gray);
}

/* ==========================================
   PRODUCTS SECTION
   ========================================== */
.products-section {
    background: var(--gradient-dark);
    color: var(--color-white);
}

.products-section .section-title {
    color: var(--color-white);
}

.products-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    transition: all var(--transition-base);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-xl);
}

.product-demo {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, rgba(95, 165, 131, 0.1) 0%, rgba(45, 67, 86, 0.1) 100%);
    border-radius: var(--radius-md);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--color-white);
}

.product-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--spacing-md);
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    transition: gap var(--transition-base);
}

.product-link:hover {
    gap: var(--spacing-sm);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--gradient-secondary);
    color: var(--color-white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: var(--spacing-md);
}

.footer-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 400px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: var(--spacing-sm);
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    transition: all var(--transition-base);
}

.social-link:hover {
    background: var(--color-primary);
    transform: translateY(-4px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-md);
}

.copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ==========================================
   COOKIE BANNER
   ========================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    background: var(--color-white);
    box-shadow: var(--shadow-xl);
    padding: var(--spacing-md);
    transform: translateY(0);
    transition: transform var(--transition-slow);
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.cookie-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.cookie-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-gray);
    margin-bottom: var(--spacing-md);
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 1;
    }

    .hero-demo {
        order: 2;
    }

    .hero-buttons {
        justify-content: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .phone-mockup {
        width: 280px;
        height: 560px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}

/* ==========================================
   UTILITIES
   ========================================== */
.hidden {
    display: none !important;
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ==========================================
   INTERACTIVE DEMOS - SERVICE CARD
   ========================================== */
.service-card-demo {
    width: 100%;
    height: 100%;
    background: #fff;
    overflow-y: auto;
    font-size: 14px;
}

.service-header {
    position: relative;
}

.service-image-gallery {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 8px;
    pointer-events: none;
}

.gallery-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.2s;
}

.gallery-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.favorite-btn:hover {
    background: #fff;
    transform: scale(1.1);
}

.service-content {
    padding: 16px;
}

.provider-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.provider-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
}

.provider-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.provider-details {
    flex: 1;
}

.provider-name {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 4px 0;
}

.provider-badge {
    display: inline-block;
    padding: 2px 8px;
    background: #e8f5e9;
    color: #5FA583;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.profile-btn {
    padding: 6px 16px;
    background: transparent;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.profile-btn:hover {
    background: #f5f5f5;
}

.service-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.rating-star {
    font-size: 16px;
}

.rating-value {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 15px;
}

.rating-count {
    color: #757575;
    font-size: 13px;
}

.service-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px 0;
}

.service-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #757575;
    font-size: 13px;
}

.meta-item svg {
    color: #9e9e9e;
}

.service-description {
    font-size: 13px;
    line-height: 1.6;
    color: #424242;
    margin-bottom: 12px;
}

.service-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: #e3f2fd;
    color: #1976d2;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.service-tag svg {
    width: 14px;
    height: 14px;
}

.service-tag-count {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: #f5f5f5;
    color: #616161;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.service-tag-count svg {
    width: 14px;
    height: 14px;
}

.service-price {
    margin-bottom: 16px;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #5FA583;
}

.service-actions {
    display: flex;
    gap: 8px;
}

.action-btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.apply-btn {
    background: #475569;
    color: #fff;
    flex: 2;
}

.apply-btn:hover {
    background: #334155;
    transform: translateY(-1px);
}

.chat-btn,
.call-btn {
    background: transparent;
    border: 1px solid #e0e0e0;
    color: #424242;
}

.chat-btn:hover,
.call-btn:hover {
    background: #f5f5f5;
}

.call-btn {
    background: #5FA583;
    color: #fff;
    border: none;
}

.call-btn:hover {
    background: #4a8a6a;
}

/* ==========================================
   INTERACTIVE DEMOS - LTOORA TRADING
   ========================================== */
.ltoora-demo {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d3748 100%);
    padding: 16px;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 12px;
}

.ltoora-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.ltoora-logo {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, #5FA583 0%, #7dd3a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ltoora-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #9e9e9e;
}

.status-dot.active {
    background: #5FA583;
    animation: pulse 2s ease-in-out infinite;
}

.trading-chart {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 16px;
}

.chart-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.chart-pair {
    font-size: 14px;
    font-weight: 600;
}

.chart-price {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.chart-change {
    font-size: 12px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.chart-change.positive {
    background: rgba(95, 165, 131, 0.2);
    color: #5FA583;
}

.chart-change.negative {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.chart-line {
    width: 100%;
    height: auto;
}

.trading-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.trade-btn {
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.trade-btn.buy {
    background: #5FA583;
    color: #fff;
}

.trade-btn.buy:hover {
    background: #4a8a6a;
    transform: translateY(-2px);
}

.trade-btn.sell {
    background: rgba(239, 68, 68, 0.9);
    color: #fff;
}

.trade-btn.sell:hover {
    background: #dc2626;
    transform: translateY(-2px);
}

/* ==========================================
   INTERACTIVE DEMOS - SERVICES GRID
   ========================================== */
.services-grid-demo {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.service-item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.2s;
    cursor: pointer;
}

.service-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-icon {
    font-size: 32px;
}

.service-item h4 {
    font-size: 12px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0;
    text-align: center;
}

/* ==========================================
   CAROUSEL NAVIGATION
   ========================================== */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.carousel-nav:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-prev {
    left: var(--spacing-md);
}

.carousel-next {
    right: var(--spacing-md);
}

.carousel-nav svg {
    color: var(--color-dark);
}

.carousel-dots {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all var(--transition-base);
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.carousel-dot.active {
    width: 32px;
    border-radius: 6px;
    background: rgba(95, 165, 131, 0.9);
    border-color: var(--color-primary);
}

.hero-text,
.hero-demo {
    transition: opacity 0.3s ease;
}

/* ==========================================
   DOWNLOAD LINKS
   ========================================== */
.download-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
    flex-wrap: wrap;
}

.download-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.download-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-md);
    color: var(--color-white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--transition-base);
}

.download-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.download-badge svg {
    width: 16px;
    height: 16px;
}

/* ==========================================
   LTOORA EXPERIENCES DEMO
   ========================================== */
.ltoora-experiences-demo {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    overflow-y: auto;
    padding: 16px;
}

.experience-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.experience-image {
    position: relative;
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.experience-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--color-primary);
    color: #fff;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.experience-content {
    padding: 16px;
}

.host-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.host-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.host-details {
    flex: 1;
}

.host-name {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 2px;
}

.host-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: #757575;
}

.host-rating .star {
    font-size: 14px;
}

.experience-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.experience-description {
    font-size: 13px;
    color: #616161;
    margin-bottom: 12px;
    line-height: 1.5;
}

.experience-meta {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.meta-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: #f5f5f5;
    border-radius: 6px;
    font-size: 12px;
    color: #616161;
}

.experience-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #e0e0e0;
}

.experience-price {
    display: flex;
    flex-direction: column;
}

.experience-price .price {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
}

.experience-price .per-person {
    font-size: 11px;
    color: #757575;
}

.book-btn {
    padding: 8px 20px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.book-btn:hover {
    background: #4a8a6a;
    transform: translateY(-2px);
}

/* ==========================================
   SERVICES OVERVIEW DEMO
   ========================================== */
.services-overview-demo {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 20px;
    overflow-y: auto;
}

.services-grid-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.service-card-large {
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.2s;
}

.service-card-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-icon-large {
    font-size: 28px;
    margin-bottom: 8px;
}

.service-title-large {
    font-size: 13px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 0 0 4px 0;
}

.service-desc-large {
    font-size: 11px;
    color: #757575;
    margin: 0;
    line-height: 1.4;
}

/* ==========================================
   SERVICES SECTION (What We Build)
   ========================================== */
.services-section {
    background: var(--color-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.service-card {
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-icon-box {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.service-card-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray);
}

/* ==========================================
   UPDATED PRODUCT CARDS
   ========================================== */
.products-section .section-title,
.products-section .section-subtitle {
    color: var(--color-white);
}

.product-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.products-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ==========================================
   RESPONSIVE - CAROUSEL
   ========================================== */
@media (max-width: 968px) {
    .carousel-nav {
        width: 40px;
        height: 40px;
    }

    .carousel-prev {
        left: var(--spacing-sm);
    }

    .carousel-next {
        right: var(--spacing-sm);
    }

    .services-grid-large {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .carousel-nav {
        display: none;
    }

    .download-links {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   LANGUAGE SWITCHER
   ========================================== */

.language-switcher {
    position: relative;
    margin-left: 2rem;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: var(--white);
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    font-size: 0.875rem;
    font-weight: 500;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.lang-flag {
    font-size: 1.25rem;
}

.lang-label {
    white-space: nowrap;
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    min-width: 200px;
    background: rgba(18, 24, 40, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 0.5rem 0;
    list-style: none;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-height: 400px;
    overflow-y: auto;
    transition: all 0.2s ease;
}

.lang-dropdown.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: background 0.2s ease;
    color: var(--white);
    font-size: 0.875rem;
}

.lang-option:hover {
    background: rgba(95, 165, 131, 0.1);
}

.lang-option .lang-flag {
    font-size: 1.25rem;
}

.lang-option .lang-name {
    flex: 1;
}

.lang-check {
    color: var(--primary-green);
    font-weight: 600;
}

@media (max-width: 768px) {
    .language-switcher {
        margin-left: 1rem;
    }

    .lang-label {
        display: none;
    }

    .lang-btn {
        padding: 0.5rem;
    }
}