:root {
    --primary-color: #2563eb; /* Mavi */
    --primary-dark: #1e3a8a; /* Lacivert */
    --accent-color: #7c3aed; /* Mor */
    --bg-light: #f8fafc;
    --text-main: #0f172a;
    --whatsapp-color: #25D366;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
}

.text-primary-dark {
    color: var(--primary-dark) !important;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)) !important;
}

.glassmorphism-nav {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp {
    background-color: var(--whatsapp-color);
    color: white;
    border: none;
    font-weight: 500;
}

.btn-whatsapp:hover {
    background-color: #1ebe57;
    color: white;
}

.btn-primary-gradient {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    transition: opacity 0.3s ease;
}

.btn-primary-gradient:hover {
    opacity: 0.9;
    color: white;
}

.card-modern {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.card-modern:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.hero-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-shape {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(124,58,237,0.1));
    z-index: -1;
}

.footer-links a {
    transition: color 0.2s ease;
}

.hover-white:hover {
    color: white !important;
}

.category-badge {
    background: rgba(37,99,235,0.1);
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.3rem 0.8rem;
    border-radius: 2rem;
}

.software-img-wrapper {
    height: 220px;
    overflow: hidden;
}

.software-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.card-modern:hover .software-img-wrapper img {
    transform: scale(1.05);
}

.accordion-modern .accordion-item {
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 0.75rem !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-modern .accordion-button:not(.collapsed) {
    background-color: rgba(37,99,235,0.05);
    color: var(--primary-dark);
    box-shadow: none;
}

@keyframes pulse-demo {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(37, 99, 235, 0); background-color: rgba(37,99,235,0.1); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.demo-pulse-btn {
    animation: pulse-demo 2s infinite;
    border-width: 2px;
    transition: all 0.3s ease;
}

.demo-pulse-btn:hover {
    animation: none;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
    background-color: var(--primary-color) !important;
    color: white !important;
}

.tracking-wide {
    letter-spacing: 1px;
}

/* Campaign Banner Animation */
@keyframes flash-campaign {
    0% { background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); transform: scale(1); box-shadow: 0 0 0 rgba(255, 0, 0, 0); }
    50% { background: linear-gradient(135deg, #ff0055, #ffaa00); transform: scale(1.02); box-shadow: 0 5px 15px rgba(255, 0, 85, 0.5); color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.8); }
    100% { background: linear-gradient(135deg, var(--primary-dark), var(--primary-color)); transform: scale(1); box-shadow: 0 0 0 rgba(255, 0, 0, 0); }
}

.campaign-banner {
    animation: flash-campaign 1.5s infinite alternate;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-title {
    min-height: 64px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-description {
    min-height: 78px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price-area,
.product-contact-price-area {
    min-height: 105px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: auto;
    margin-bottom: 20px;
}

.product-contact-price-area {
    align-items: center;
    text-align: center;
}

.product-card-actions {
    margin-top: auto;
    width: 100%;
}

.original-price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.original-price {
    color: #7a7a7a;
    font-size: 17px;
    font-weight: 500;
    text-decoration: line-through;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff1744, #ff7a00);
}

.discounted-price {
    margin-top: 6px;
    color: #0d6efd;
    font-size: 31px;
    font-weight: 800;
    line-height: 1.15;
}

.currency-symbol {
    font-family: Arial, "Segoe UI", sans-serif;
    font-weight: 700;
    display: inline-block;
    margin-right: 3px;
}

.price-number {
    font-family: inherit;
}

@media (max-width: 576px) {
    .product-title,
    .product-description,
    .product-price-area,
    .product-contact-price-area {
        min-height: auto;
    }

    .discounted-price {
        font-size: 27px;
    }

    .discount-badge {
        font-size: 11px;
        padding: 3px 8px;
    }
}

/* Nyvron Top-Left Navbar Tech-Orbit Logo */
.navbar-logo-orbit {
    position: relative;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.navbar-logo-center {
    height: 38px;
    width: 38px;
    object-fit: contain;
    z-index: 5;
    filter: drop-shadow(0 0 6px rgba(0, 242, 254, 0.75));
}

.navbar-orbit-ring {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px dashed rgba(0, 242, 254, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: navOrbitSpin 14s linear infinite;
}

.nav-orbit-icon {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #0a192f;
    border: 1px solid #00f2fe;
    color: #00f2fe;
    font-size: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 6px rgba(0, 242, 254, 0.8);
    transition: transform 0.3s ease;
}

.nav-orbit-icon:hover {
    transform: scale(1.3);
    z-index: 10;
}

.nav-item-1 {
    top: -8px;
    left: calc(50% - 8px);
    animation: navOrbitCounterSpin 14s linear infinite;
}
.nav-item-2 {
    top: calc(50% - 8px);
    right: -8px;
    animation: navOrbitCounterSpin 14s linear infinite;
}
.nav-item-3 {
    bottom: -8px;
    left: calc(50% - 8px);
    animation: navOrbitCounterSpin 14s linear infinite;
}
.nav-item-4 {
    top: calc(50% - 8px);
    left: -8px;
    animation: navOrbitCounterSpin 14s linear infinite;
}

@keyframes navOrbitSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes navOrbitCounterSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(-360deg); }
}