* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #6366f1;
    --secondary: #8b5cf6;
    --accent: #10b981;
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-primary: #ffffff;
    --text-secondary: #cbd5e1;
    --border: rgba(99, 102, 241, 0.3);
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-display: swap;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 1rem;
    min-height: 1px;
    width: 100%;
}

@media (min-width: 1400px) {
    .container {
        padding: 0 2rem;
    }
}

.product-detail-section {
    background: var(--bg-dark);
    min-height: calc(100vh - 200px);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
    pointer-events: auto;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: opacity 0.3s;
    text-decoration: none;
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: white;
}

.logo-name {
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
    position: relative;
}

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

.nav-link.nav-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    color: white;
}

.mobile-menu-custom-content {
    display: none;
}

/* Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    margin-left: 0.25rem;
}

.nav-item-dropdown:hover .dropdown-arrow,
.nav-item-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 8px;
    min-width: 200px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    border-left-color: var(--primary);
}

.nav-link.nav-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 9999;
    pointer-events: auto !important;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
}

.mobile-menu-toggle * {
    pointer-events: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

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

@media (max-width: 768px) {
    .header-content {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
        z-index: 9999 !important;
        position: relative !important;
        order: 2;
        pointer-events: auto !important;
        cursor: pointer !important;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        touch-action: manipulation !important;
        min-width: 50px !important;
        min-height: 50px !important;
        padding: 12px !important;
        background: transparent !important;
        border: none !important;
        flex-direction: column;
        gap: 5px;
        justify-content: center;
        align-items: center;
        user-select: none;
        -webkit-user-select: none;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle * {
        pointer-events: none !important;
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--text-primary);
        border-radius: 2px;
        transition: all 0.3s ease;
        display: block;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 80px 2rem 2rem;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease, visibility 0.4s ease;
        z-index: 9998;
        max-height: 100vh;
        overflow-y: auto;
        overflow-x: visible;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
        display: flex !important;
        visibility: hidden;
        pointer-events: none;
        width: 100%;
        height: 100vh;
        opacity: 0;
    }
    
    .main-nav.mobile-open {
        transform: translateX(0) !important;
        visibility: visible !important;
        pointer-events: auto !important;
        opacity: 1 !important;
    }
    
    .nav-link {
        width: 100%;
        padding: 1.25rem 1rem;
        text-align: left;
        border-bottom: 1px solid rgba(148, 163, 184, 0.1);
        display: block !important;
        color: var(--text-primary);
        font-size: 1rem;
        transition: all 0.3s ease;
        border-radius: 0;
    }
    
    .nav-link:hover {
        background: rgba(99, 102, 241, 0.1);
        padding-left: 1.5rem;
        color: var(--primary);
    }
    
    .nav-link:last-child {
        border-bottom: none;
    }
    
    /* Mobil menüde dropdown link için özel stiller */
    .main-nav .nav-link-dropdown {
        border-bottom: 1px solid rgba(148, 163, 184, 0.1) !important;
    }
    
    .main-nav .nav-item-dropdown:last-child .nav-link-dropdown {
        border-bottom: none !important;
    }
    
    .nav-button {
        margin: 1rem 0 0 0;
        border-radius: 8px;
        padding: 1rem 1.5rem;
        text-align: center;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        font-weight: 600;
    }
    
    .nav-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
        padding-left: 1.5rem;
    }
    
    .nav-quote-btn {
        margin: 0;
        width: 100%;
        justify-content: center;
    }
    
    .nav-quote-btn:hover {
        padding-left: 1.5rem;
    }
    
    /* Mobile Dropdown Menu Styles */
    .nav-item-dropdown {
        width: 100%;
        border-bottom: 1px solid rgba(148, 163, 184, 0.1);
    }
    
    .nav-link-dropdown {
        width: 100%;
        padding: 1.25rem 1rem !important;
        text-align: left;
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        border-bottom: none;
        border-radius: 0;
        color: var(--text-primary) !important;
        font-size: 1rem;
        transition: all 0.3s ease;
        cursor: pointer !important;
        pointer-events: auto !important;
        position: relative;
        z-index: 1;
    }
    
    .nav-link-dropdown:hover {
        background: rgba(99, 102, 241, 0.1);
        padding-left: 1.5rem !important;
        color: var(--primary) !important;
    }
    
    .nav-link-dropdown:active {
        background: rgba(99, 102, 241, 0.15);
    }
    
    .dropdown-arrow {
        transform: rotate(0deg);
        transition: transform 0.3s ease;
        flex-shrink: 0;
        margin-left: 0.5rem;
        pointer-events: none;
        user-select: none;
        -webkit-user-select: none;
    }
    
    .nav-item-dropdown.active .dropdown-arrow {
        transform: rotate(180deg);
    }
    
    .nav-item-dropdown.active .nav-link-dropdown {
        background: rgba(99, 102, 241, 0.1);
        color: var(--primary) !important;
    }
    
    .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        background: rgba(30, 41, 59, 0.5);
        border: none;
        border-radius: 0;
        margin: 0;
        padding: 0 !important;
        box-shadow: none;
        max-height: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, height 0.4s ease !important;
        display: block !important;
        width: 100% !important;
    }
    
    .nav-item-dropdown.active .dropdown-menu {
        max-height: 2000px !important;
        height: auto !important;
        padding: 0.5rem 0 !important;
        overflow: visible !important;
        display: block !important;
    }
    
    /* Dropdown item'lar - mobil menü için özel */
    .main-nav .dropdown-item {
        display: block !important;
        padding: 1rem 1rem 1rem 2.5rem !important;
        border-bottom: 1px solid rgba(148, 163, 184, 0.05);
        font-size: 0.95rem;
        color: var(--text-secondary) !important;
        text-decoration: none;
        transition: all 0.3s ease;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
    
    /* Aktif durumda dropdown item'ları göster */
    .main-nav .nav-item-dropdown.active .dropdown-item {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    .main-nav .dropdown-item:hover {
        background: rgba(99, 102, 241, 0.15);
        padding-left: 3rem !important;
        color: var(--primary) !important;
    }
    
    .main-nav .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item {
        display: block !important;
        padding: 1rem 1rem 1rem 2.5rem !important;
        border-bottom: 1px solid rgba(148, 163, 184, 0.05);
        font-size: 0.95rem;
        color: var(--text-secondary) !important;
        text-decoration: none;
        transition: all 0.3s ease;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .dropdown-item:hover {
        background: rgba(99, 102, 241, 0.15);
        padding-left: 3rem !important;
        color: var(--primary) !important;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-custom-content {
        display: block;
        width: 100%;
        padding: 1rem;
        margin-top: 1rem;
        border-top: 1px solid rgba(148, 163, 184, 0.1);
        color: var(--text-primary);
    }
    
    .mobile-menu-custom-content h1,
    .mobile-menu-custom-content h2,
    .mobile-menu-custom-content h3,
    .mobile-menu-custom-content h4,
    .mobile-menu-custom-content h5,
    .mobile-menu-custom-content h6 {
        color: var(--text-primary);
        margin-top: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .mobile-menu-custom-content p {
        color: var(--text-secondary);
        margin-bottom: 0.5rem;
        line-height: 1.6;
    }
    
    .mobile-menu-custom-content a {
        color: var(--primary);
        text-decoration: underline;
    }
    
    .mobile-menu-custom-content a:hover {
        color: var(--secondary);
    }
    
    .logo {
        order: 1;
        flex: 1;
    }
    
    /* Mobil menü açıkken body scroll'u engelle */
    body.menu-open {
        overflow: hidden;
    }
}

.slider-section {
    position: relative;
    width: 100%;
    height: calc(100vh - 70px);
    overflow: hidden;
    margin-top: 70px;
    min-height: 500px;
    display: block !important;
    visibility: visible !important;
}

@media (max-width: 768px) {
    .slider-section {
        height: calc(100vh - 60px);
        min-height: 400px;
        margin-top: 60px;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out, visibility 0s linear 1s;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    z-index: 2;
    visibility: visible;
    transition: opacity 1s ease-in-out, visibility 0s linear 0s;
}

.slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transition: opacity 1s ease-in-out;
}

.slide:not(.active) .slide-image {
    opacity: 0;
}

.slide.active .slide-image {
    opacity: 1;
}

.slide-image[style*="background-image"] {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.slide-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    opacity: 0;
    transition: opacity 0.3s;
}

.slide-image[data-bg=""]::after,
.slide-image:not([data-bg])::after {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(30, 41, 59, 0.6));
    z-index: 0;
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
}

.slide-content .container {
    padding: 0 2rem;
    width: 100%;
}

@media (max-width: 768px) {
    .slide-content {
        padding: 1rem;
    }
    
    .slide-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem) !important;
    }
    
    .slide-description {
        font-size: 1rem !important;
    }
}

.slide-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    line-height: 1.2;
}

.slide-description {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.slide-button {
    margin-top: 1rem;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
    pointer-events: none;
}

.slider-prev,
.slider-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    pointer-events: all;
}

.slider-prev:hover,
.slider-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: visible;
    width: 100vw;
    margin: 0;
    padding-left: 0;
    padding-right: 0;
    margin-left: calc(-50vw + 50%);
}

@media (min-width: 1024px) {
    .hero-section {
        padding-top: 70px;
    }
}

.hero-background-wrapper {
    position: absolute;
    top: 0;
    left: calc(-50vw + 50%);
    right: calc(-50vw + 50%);
    bottom: 0;
    width: 100vw;
    height: 100%;
    overflow: visible;
    z-index: -1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: visible;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.2;
    z-index: 0;
}

.hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
    object-position: center;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.glow-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(16, 185, 129, 0.2) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff, #cbd5e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 1rem auto 0;
    line-height: 1.8;
}

.section-description p {
    margin-bottom: 1rem;
}

.section-description p:last-child {
    margin-bottom: 0;
}

.about-section {
    background: rgba(30, 41, 59, 0.5);
    padding: 5rem 0;
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.about-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.about-description p {
    margin-bottom: 1rem;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.about-image {
    width: 100%;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    object-fit: cover;
}

.services-section {
    padding: 5rem 0;
    position: relative;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    display: block;
    cursor: pointer;
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.icon-glow {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    border: 2px solid var(--border);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.3);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.section-action {
    text-align: center;
}

.innovation-section {
    background: rgba(30, 41, 59, 0.5);
    padding: 5rem 0;
    position: relative;
}

.innovation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

.partner-logo {
    text-align: center;
    padding: 1.5rem;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.partner-logo:hover {
    color: var(--primary);
}

.products-filters {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.filter-form {
    width: 100%;
}

.filter-input-group {
    display: flex;
    gap: 1rem;
    align-items: stretch;
    flex-wrap: wrap;
}

.search-wrapper,
.select-wrapper {
    position: relative;
    flex: 1;
    min-width: 200px;
}

.search-icon,
.select-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-secondary);
    pointer-events: none;
    z-index: 1;
}

.select-icon {
    right: 1rem;
    left: auto;
    pointer-events: none;
}

.search-input,
.category-select {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.search-input:focus,
.category-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: rgba(15, 23, 42, 0.8);
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.category-select {
    padding-right: 3rem;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    background-image: none;
}

.category-select option {
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 0.5rem;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
}

.filter-btn:active {
    transform: translateY(0);
}

.filter-btn svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .products-filters {
        padding: 1.5rem;
    }
    
    .filter-input-group {
        flex-direction: column;
    }
    
    .search-wrapper,
    .select-wrapper {
        min-width: 100%;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
}

.faq-section {
    padding: 5rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-question:hover {
    background: rgba(99, 102, 241, 0.1);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.main-footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--border);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.newsletter-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--primary);
    transition: all 0.3s;
}

.social-link:hover {
    background: rgba(99, 102, 241, 0.2);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.blog-section,
.news-section {
    padding: 5rem 0;
    background: rgba(30, 41, 59, 0.3);
}

.blog-grid,
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

.blog-card,
.news-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 100%;
    width: 100%;
}

.blog-card:hover,
.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.2);
    border-color: var(--primary);
}

.blog-card a:first-child,
.news-card a:first-child {
    display: block;
    overflow: hidden;
    flex-shrink: 0;
}

.blog-card img,
.news-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    max-width: 100%;
    border-radius: 0;
    margin: 0;
}

.blog-content,
.news-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-title,
.news-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.blog-title a,
.news-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.blog-excerpt,
.news-excerpt {
    flex: 1;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 4.5rem;
}

.blog-title a:hover,
.news-title a:hover {
    color: var(--primary);
}

.blog-meta,
.news-meta {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    font-size: 0.9rem;
    color: var(--text-secondary);
}


@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .hero-section {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    
    .hero-background-wrapper {
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .hero-background {
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .hero-background-video {
        left: 0;
        right: 0;
        width: 100%;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
    
    .header-content {
        position: relative;
    }
    
    .blog-grid,
    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-detail-grid {
        grid-template-columns: 1fr !important;
    }
    
    .blog-card img,
    .news-card img {
        height: 200px;
    }
}

.product-content {
    word-wrap: break-word;
}

.product-content p {
    margin-bottom: 1rem;
}

.product-content p:last-child {
    margin-bottom: 0;
}

.product-content strong {
    font-weight: 700;
    color: var(--text-primary);
}

.product-content ul,
.product-content ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.product-content li {
    margin-bottom: 0.5rem;
}

.product-content a {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.3s;
}

.product-content a:hover {
    color: var(--secondary);
}

.product-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 1rem 0;
}

.product-content h1,
.product-content h2,
.product-content h3,
.product-content h4,
.product-content h5,
.product-content h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 700;
}

.product-content h1 {
    font-size: 2rem;
}

.product-content h2 {
    font-size: 1.75rem;
}

.product-content h3 {
    font-size: 1.5rem;
}

.product-content blockquote {
    border-left: 4px solid var(--primary);
    padding-left: 1rem;
    margin: 1rem 0;
    font-style: italic;
    color: var(--text-secondary);
}

/* Reviews Section */
.reviews-section {
    padding: 5rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.floating-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.star-float {
    position: absolute;
    color: rgba(251, 191, 36, 0.7);
    font-size: 1.5rem;
    animation: floatStar 15s infinite linear;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.8), 0 0 30px rgba(251, 191, 36, 0.4);
}

.star-float.star-1 {
    left: 2%;
    animation-delay: 0s;
    animation-duration: 12s;
    --start-offset: 0px;
}

.star-float.star-2 {
    left: 5%;
    animation-delay: 0.2s;
    animation-duration: 14s;
    font-size: 1.2rem;
    --start-offset: -20px;
}

.star-float.star-3 {
    left: 8%;
    animation-delay: 0.4s;
    animation-duration: 16s;
    font-size: 1.8rem;
    --start-offset: 15px;
}

.star-float.star-4 {
    left: 12%;
    animation-delay: 0.6s;
    animation-duration: 13s;
    font-size: 1.3rem;
    --start-offset: -30px;
}

.star-float.star-5 {
    left: 15%;
    animation-delay: 0.8s;
    animation-duration: 15s;
    font-size: 1.6rem;
    --start-offset: 25px;
}

.star-float.star-6 {
    left: 18%;
    animation-delay: 1s;
    animation-duration: 17s;
    font-size: 1.4rem;
    --start-offset: -15px;
}

.star-float.star-7 {
    left: 22%;
    animation-delay: 1.2s;
    animation-duration: 14s;
    font-size: 1.7rem;
    --start-offset: 30px;
}

.star-float.star-8 {
    left: 25%;
    animation-delay: 1.4s;
    animation-duration: 16s;
    font-size: 1.3rem;
    --start-offset: -25px;
}

.star-float.star-9 {
    left: 28%;
    animation-delay: 1.6s;
    animation-duration: 18s;
    font-size: 1.5rem;
    --start-offset: 20px;
}

.star-float.star-10 {
    left: 32%;
    animation-delay: 1.8s;
    animation-duration: 15s;
    font-size: 1.4rem;
    --start-offset: -10px;
}

.star-float.star-11 {
    left: 35%;
    animation-delay: 2s;
    animation-duration: 13s;
    font-size: 1.3rem;
    --start-offset: 35px;
}

.star-float.star-12 {
    left: 38%;
    animation-delay: 2.2s;
    animation-duration: 19s;
    font-size: 1.6rem;
    --start-offset: -20px;
}

.star-float.star-13 {
    left: 42%;
    animation-delay: 2.4s;
    animation-duration: 14s;
    font-size: 1.2rem;
    --start-offset: 15px;
}

.star-float.star-14 {
    left: 45%;
    animation-delay: 2.6s;
    animation-duration: 16s;
    font-size: 1.7rem;
    --start-offset: -30px;
}

.star-float.star-15 {
    left: 48%;
    animation-delay: 2.8s;
    animation-duration: 17s;
    font-size: 1.4rem;
    --start-offset: 25px;
}

.star-float.star-16 {
    left: 52%;
    animation-delay: 3s;
    animation-duration: 15s;
    font-size: 1.5rem;
    --start-offset: -15px;
}

.star-float.star-17 {
    left: 55%;
    animation-delay: 3.2s;
    animation-duration: 18s;
    font-size: 1.3rem;
    --start-offset: 30px;
}

.star-float.star-18 {
    left: 58%;
    animation-delay: 3.4s;
    animation-duration: 14s;
    font-size: 1.6rem;
    --start-offset: -25px;
}

.star-float.star-19 {
    left: 62%;
    animation-delay: 3.6s;
    animation-duration: 16s;
    font-size: 1.4rem;
    --start-offset: 20px;
}

.star-float.star-20 {
    left: 65%;
    animation-delay: 3.8s;
    animation-duration: 20s;
    font-size: 1.8rem;
    --start-offset: -10px;
}

.star-float.star-21 {
    left: 68%;
    animation-delay: 4s;
    animation-duration: 13s;
    font-size: 1.2rem;
    --start-offset: 35px;
}

.star-float.star-22 {
    left: 72%;
    animation-delay: 4.2s;
    animation-duration: 15s;
    font-size: 1.5rem;
    --start-offset: -20px;
}

.star-float.star-23 {
    left: 75%;
    animation-delay: 4.4s;
    animation-duration: 17s;
    font-size: 1.3rem;
    --start-offset: 15px;
}

.star-float.star-24 {
    left: 78%;
    animation-delay: 4.6s;
    animation-duration: 14s;
    font-size: 1.7rem;
    --start-offset: -30px;
}

.star-float.star-25 {
    left: 82%;
    animation-delay: 4.8s;
    animation-duration: 16s;
    font-size: 1.4rem;
    --start-offset: 25px;
}

.star-float.star-26 {
    left: 85%;
    animation-delay: 5s;
    animation-duration: 18s;
    font-size: 1.6rem;
    --start-offset: -15px;
}

.star-float.star-27 {
    left: 88%;
    animation-delay: 5.2s;
    animation-duration: 15s;
    font-size: 1.2rem;
    --start-offset: 30px;
}

.star-float.star-28 {
    left: 92%;
    animation-delay: 5.4s;
    animation-duration: 13s;
    font-size: 1.5rem;
    --start-offset: -25px;
}

.star-float.star-29 {
    left: 95%;
    animation-delay: 5.6s;
    animation-duration: 19s;
    font-size: 1.3rem;
    --start-offset: 20px;
}

.star-float.star-30 {
    left: 98%;
    animation-delay: 5.8s;
    animation-duration: 17s;
    font-size: 1.7rem;
    --start-offset: -10px;
}

.star-float.star-31 {
    left: 3%;
    animation-delay: 6s;
    animation-duration: 14s;
    font-size: 1.4rem;
    --start-offset: 35px;
}

.star-float.star-32 {
    left: 7%;
    animation-delay: 6.2s;
    animation-duration: 16s;
    font-size: 1.6rem;
    --start-offset: -20px;
}

.star-float.star-33 {
    left: 10%;
    animation-delay: 6.4s;
    animation-duration: 18s;
    font-size: 1.2rem;
    --start-offset: 15px;
}

.star-float.star-34 {
    left: 14%;
    animation-delay: 6.6s;
    animation-duration: 15s;
    font-size: 1.5rem;
    --start-offset: -30px;
}

.star-float.star-35 {
    left: 17%;
    animation-delay: 6.8s;
    animation-duration: 13s;
    font-size: 1.8rem;
    --start-offset: 25px;
}

.star-float.star-36 {
    left: 20%;
    animation-delay: 7s;
    animation-duration: 17s;
    font-size: 1.3rem;
    --start-offset: -15px;
}

.star-float.star-37 {
    left: 24%;
    animation-delay: 7.2s;
    animation-duration: 19s;
    font-size: 1.7rem;
    --start-offset: 30px;
}

.star-float.star-38 {
    left: 27%;
    animation-delay: 7.4s;
    animation-duration: 14s;
    font-size: 1.4rem;
    --start-offset: -25px;
}

.star-float.star-39 {
    left: 30%;
    animation-delay: 7.6s;
    animation-duration: 16s;
    font-size: 1.6rem;
    --start-offset: 20px;
}

.star-float.star-40 {
    left: 33%;
    animation-delay: 7.8s;
    animation-duration: 20s;
    font-size: 1.2rem;
    --start-offset: -10px;
}

@keyframes floatStar {
    0% {
        transform: translateY(calc(var(--star-start-position, 100vh) + var(--start-offset, 0px))) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.reviews-section .container {
    position: relative;
    z-index: 2;
}

.reviews-carousel {
    position: relative;
    max-width: 1200px;
    margin: 3rem auto;
    overflow: hidden;
}

.reviews-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
}

.review-card {
    min-width: 100%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.review-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    flex-shrink: 0;
}

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

.review-info {
    flex: 1;
}

.review-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.review-company {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.review-rating {
    display: flex;
    gap: 0.25rem;
}

.review-rating .star {
    font-size: 1.25rem;
    color: #fbbf24;
}

.review-rating .star.filled {
    color: #fbbf24;
}

.review-content {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.review-date {
    color: var(--text-secondary);
    font-size: 0.85rem;
    opacity: 0.7;
}

.reviews-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.review-prev,
.review-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--border);
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-prev:hover,
.review-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.review-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Review Form */
.review-form-container {
    max-width: 900px;
    margin: 4rem auto 0;
    background: transparent;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
    padding: 3.5rem;
    position: relative;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.review-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    border-radius: 24px;
    pointer-events: none;
    z-index: 0;
}

.review-form-container::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: transparent;
    animation: pulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.review-form-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.review-form-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.review-form-title {
    font-size: 2.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text-primary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.review-form-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label::before {
    content: '';
    width: 4px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.form-group input,
.form-group textarea {
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(15, 23, 42, 0.7);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15), 0 4px 20px rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.rating-input {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    height: 100%;
    min-height: 56px;
}

.rating-input:hover {
    border-color: rgba(251, 191, 36, 0.4);
    background: rgba(15, 23, 42, 0.7);
}

.rating-input:focus-within {
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15), 0 4px 20px rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.rating-input input[type="radio"] {
    display: none;
}

.rating-input .star-label {
    font-size: 1.75rem;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    line-height: 1;
}

.rating-input .star-label:hover {
    color: #fbbf24;
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(251, 191, 36, 0.4));
}

.rating-input input[type="radio"]:checked ~ .star-label,
.rating-input input[type="radio"]:checked + .star-label {
    color: #fbbf24;
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(251, 191, 36, 0.5));
}

.rating-input input[type="radio"]:checked ~ .star-label {
    color: #fbbf24;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.captcha-code {
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(139, 92, 246, 0.2));
    border: 2px solid var(--primary);
    border-radius: 12px;
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0.3rem;
    color: var(--primary);
    font-family: 'Courier New', monospace;
    user-select: none;
    width: 140px;
    text-align: center;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    text-shadow: 0 2px 4px rgba(99, 102, 241, 0.5);
    flex-shrink: 0;
}

.captcha-container input {
    flex: 1;
    padding: 1rem 1.25rem;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(148, 163, 184, 0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    font-family: 'Courier New', monospace;
}

.captcha-container input:hover {
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(15, 23, 42, 0.7);
}

.captcha-container input:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(15, 23, 42, 0.8);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15), 0 4px 20px rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.review-form-container .btn-primary {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
    position: relative;
    overflow: hidden;
    margin-top: 1rem;
}

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

.review-form-container .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.review-form-container .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.review-form-container .btn-primary:active {
    transform: translateY(-1px);
}

.review-message {
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
    display: none;
    font-weight: 500;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.review-message.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.15));
    border: 2px solid #10b981;
    color: #10b981;
    display: block;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.review-message.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(220, 38, 38, 0.15));
    border: 2px solid #ef4444;
    color: #ef4444;
    display: block;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.2);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .review-form-container {
        padding: 2rem 1.5rem;
        margin: 2rem auto 0;
    }
    
    .review-form-title {
        font-size: 1.75rem;
    }
    
    .review-form-subtitle {
        font-size: 1rem;
    }
    
    .review-form-icon {
        width: 60px;
        height: 60px;
    }
    
    .review-form-icon svg {
        width: 32px;
        height: 32px;
    }
    
    .review-card {
        padding: 1.5rem;
    }
    
    .reviews-slider {
        gap: 1rem;
    }
    
    .captcha-container {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .captcha-code {
        width: 120px;
        font-size: 1.1rem;
        padding: 0.875rem 1rem;
        letter-spacing: 0.25rem;
    }
    
    .captcha-container input {
        flex: 1;
        min-width: 150px;
        font-size: 0.85rem;
        padding: 0.875rem 0.75rem;
    }
    
    .captcha-container input::placeholder {
        font-size: 0.75rem;
        letter-spacing: 0.1rem;
    }
    
    .similar-products-grid,
    .similar-services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
    
    .similar-products-section,
    .similar-services-section {
        padding: 2rem 0 !important;
    }
    
    .section-header {
        margin-bottom: 2rem !important;
    }
    
    .section-title {
        font-size: 1.75rem !important;
    }
    
    .section-subtitle {
        font-size: 0.95rem !important;
    }
}

