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

:root {
    /* Aesthetic Color Palette - Light Mode */
    --primary-color: #6366f1;
    --secondary-color: #8b5cf6;
    --accent-color: #a78bfa;
    --success-color: #10b981;
    --warm-color: #f59e0b;
    --cool-color: #06b6d4;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px rgba(99, 102, 241, 0.08);
    --shadow-lg: 0 10px 25px rgba(99, 102, 241, 0.12);
    --shadow-xl: 0 20px 40px rgba(99, 102, 241, 0.15);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-soft: linear-gradient(135deg, #f0f9ff 0%, #e0e7ff 100%);
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --text-dark: #f1f5f9;
    --text-light: #cbd5e1;
    --bg-light: #1e293b;
    --bg-white: #0f172a;
    --bg-dark: #020617;
    --border-color: #334155;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.4);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.5);
    --gradient-soft: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--bg-white);
    transition: background-color 0.3s ease, color 0.3s ease;
}

body.loaded {
    background: var(--bg-white);
}

/* Dark Mode Body Styles */
[data-theme="dark"] body {
    background: var(--bg-white);
    color: var(--text-dark);
}

[data-theme="dark"] .preloader {
    background: #0A0A0A;
}

[data-theme="dark"] .preloader-subtitle {
    color: #9ca3af;
}

[data-theme="dark"] .hero-landing {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

[data-theme="dark"] .hero-main-title,
[data-theme="dark"] .hero-description,
[data-theme="dark"] .badge-text {
    color: var(--text-dark);
}

[data-theme="dark"] .highlight-text {
    color: var(--primary-color);
}

[data-theme="dark"] .about,
[data-theme="dark"] .why-choose,
[data-theme="dark"] .contact {
    background: var(--bg-light);
}

[data-theme="dark"] .products-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

[data-theme="dark"] .section-title {
    color: var(--text-dark);
}

[data-theme="dark"] .section-subtitle {
    color: var(--text-light);
}

[data-theme="dark"] .about-card,
[data-theme="dark"] .feature-item,
[data-theme="dark"] .product-card,
[data-theme="dark"] .step-content,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .modal-content {
    background: var(--bg-white);
    border-color: var(--border-color);
}

[data-theme="dark"] .about-card h3,
[data-theme="dark"] .about-card p,
[data-theme="dark"] .feature-item h3,
[data-theme="dark"] .feature-item p,
[data-theme="dark"] .product-name,
[data-theme="dark"] .product-description,
[data-theme="dark"] .step-content h3,
[data-theme="dark"] .step-content p,
[data-theme="dark"] .faq-question h3,
[data-theme="dark"] .faq-answer p {
    color: var(--text-dark);
}

[data-theme="dark"] .dock-container {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(51, 65, 85, 0.5);
}

[data-theme="dark"] .dock-link {
    color: var(--text-dark);
}

[data-theme="dark"] .dock-link:hover {
    color: var(--primary-color);
}

[data-theme="dark"] .footer {
    background: var(--bg-dark);
    color: var(--text-light);
}

[data-theme="dark"] .footer a {
    color: var(--text-light);
}

[data-theme="dark"] .footer a:hover {
    color: var(--primary-color);
}

[data-theme="dark"] .footer h3 {
    color: var(--text-dark);
}

[data-theme="dark"] .info-item h3,
[data-theme="dark"] .info-item p,
[data-theme="dark"] .info-item a {
    color: var(--text-dark);
}

[data-theme="dark"] .info-item a:hover {
    color: var(--primary-color);
}

[data-theme="dark"] .contact-form-wrapper {
    background: var(--bg-white);
    border-color: var(--border-color);
}

[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
    background: var(--bg-light);
    border-color: var(--border-color);
    color: var(--text-dark);
}

[data-theme="dark"] input:focus,
[data-theme="dark"] textarea:focus,
[data-theme="dark"] select:focus {
    border-color: var(--primary-color);
    background: var(--bg-white);
}

[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: var(--text-light);
}

[data-theme="dark"] .quick-stat {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
}

[data-theme="dark"] .stat-value,
[data-theme="dark"] .stat-name {
    color: var(--text-dark);
}

[data-theme="dark"] .showcase-card {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(99, 102, 241, 0.3);
}

[data-theme="dark"] .card-content h3,
[data-theme="dark"] .card-content p {
    color: white;
}

[data-theme="dark"] .product-image-wrapper {
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
}

[data-theme="dark"] .product-badge {
    background: rgba(15, 23, 42, 0.95);
    color: var(--primary-color);
}

[data-theme="dark"] .product-category {
    background: rgba(99, 102, 241, 0.2);
    color: var(--primary-color);
}

[data-theme="dark"] .feature-tag {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
}

[data-theme="dark"] .feature-tag:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
}

[data-theme="dark"] .feature-tag span {
    color: var(--text-dark);
}

[data-theme="dark"] .product-btn.secondary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

[data-theme="dark"] .product-btn.secondary:hover {
    background: var(--primary-color);
    color: white;
}

[data-theme="dark"] .scroll-hint {
    color: rgba(241, 245, 249, 0.6);
}

[data-theme="dark"] .scroll-line {
    background: var(--gradient-primary);
}

/* Preloader */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0A0A0A;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    pointer-events: all;
}

.preloader.hidden {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
}

.preloader-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

/* Pulsing glow background */
.preloader-glow {
    position: absolute;
    inset: 0;
    margin: -6rem;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.2;
    filter: blur(3rem);
    animation: preloaderGlowPulse 2s ease-in-out infinite;
}

@keyframes preloaderGlowPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

/* Logo */
.preloader-logo {
    position: relative;
    animation: preloaderLogoEntrance 0.5s ease-out;
}

.preloader-logo img {
    width: 96px;
    height: 96px;
    object-fit: contain;
    animation: preloaderLogoGlow 2s ease-in-out infinite;
}

@keyframes preloaderLogoEntrance {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes preloaderLogoGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(99, 102, 241, 0.8)) drop-shadow(0 0 60px rgba(139, 92, 246, 0.4));
    }
}

/* Brand text */
.preloader-text {
    text-align: center;
    animation: preloaderTextEntrance 0.5s ease-out 0.3s both;
}

.preloader-title {
    font-size: 1.875rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    color: white;
    text-align: center;
}

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

.preloader-subtitle {
    color: #E8E8E8; /* Pearl white color */
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-align: center;
    margin-top: 0.5rem;
}

@keyframes preloaderTextEntrance {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading bar */
.preloader-bar {
    width: 192px;
    height: 4px;
    background: #1F1F1F;
    border-radius: 9999px;
    overflow: hidden;
    animation: preloaderBarEntrance 0.5s ease-out 0.5s both;
    margin-top: 0.5rem;
}

.preloader-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #A78BFA);
    width: 0%;
    border-radius: 9999px;
    animation: preloaderBarFill 3s ease-in-out forwards;
}

@keyframes preloaderBarEntrance {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes preloaderBarFill {
    to {
        width: 100%;
    }
}

/* Remove underline from preloader title */
.preloader-title {
    text-decoration: none;
}

.preloader-title .gradient-text {
    text-decoration: none;
}


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

/* Dock Navigation Bar - Top Position */
/* Hero Logo */
/* Hero logo removed */

.dock-nav {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    animation: dockEntrance 0.6s ease-out;
}

.dock-nav-top {
    top: 20px;
}

@keyframes dockEntrance {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.dock-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 30px;
    padding: 12px 20px;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.15), 
                0 0 0 1px rgba(255, 255, 255, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dock-container:hover {
    box-shadow: 0 12px 48px rgba(99, 102, 241, 0.2), 
                0 0 0 1px rgba(255, 255, 255, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.dock-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.dock-item {
    position: relative;
}

.dock-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: transparent;
    font-size: 1.15rem;
}

.dock-link:hover {
    transform: translateY(-6px) scale(1.08);
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
}

.dock-link.active {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-6px) scale(1.12);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

/* Theme Toggle Button */
.theme-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
    font-size: inherit;
    color: inherit;
}

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

[data-theme="dark"] .theme-toggle {
    color: var(--text-dark);
}

[data-theme="dark"] .theme-toggle:hover {
    background: rgba(99, 102, 241, 0.2);
}

.dock-link[data-tooltip]:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.75rem;
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    animation: tooltipFadeIn 0.3s ease forwards;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10001;
}

[data-theme="dark"] .dock-link[data-tooltip]:hover::after {
    background: rgba(15, 23, 42, 0.98);
    color: #f1f5f9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5),
                0 0 20px rgba(99, 102, 241, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

.dock-nav-top .dock-link[data-tooltip]:hover::after {
    bottom: auto;
    top: 60px;
}

.dock-link[data-tooltip]:hover::before {
    content: '';
    position: absolute;
    bottom: 54px;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--text-dark);
    opacity: 0;
    animation: tooltipFadeIn 0.3s ease forwards;
    z-index: 10001;
}

.dock-nav-top .dock-link[data-tooltip]:hover::before {
    bottom: auto;
    top: 54px;
    border-top-color: transparent;
    border-bottom-color: var(--text-dark);
}

[data-theme="dark"] .dock-link[data-tooltip]:hover::before {
    border-top-color: rgba(15, 23, 42, 0.98);
}

[data-theme="dark"] .dock-nav-top .dock-link[data-tooltip]:hover::before {
    border-bottom-color: rgba(15, 23, 42, 0.98);
}

@keyframes tooltipFadeIn {
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .dock-nav {
        left: 50%;
        transform: translateX(-50%);
        width: calc(100% - 20px);
        max-width: 100%;
        position: fixed;
    }
    
    .dock-nav-top {
        top: 10px;
    }
    
    .dock-nav-bottom {
        bottom: 10px;
    }
    
    .dock-container {
        padding: 10px 14px;
        width: 100%;
        justify-content: center;
        max-width: 100%;
        overflow-x: auto;
        overflow-y: visible;
    }
    
    .dock-container::-webkit-scrollbar {
        display: none;
    }
    
    .dock-menu {
        gap: 8px;
        flex-wrap: nowrap;
        overflow-x: visible;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        width: auto;
        min-width: 100%;
        justify-content: center;
        padding: 0;
        display: flex;
    }
    
    .dock-menu::-webkit-scrollbar {
        display: none;
    }
    
    .dock-item {
        flex-shrink: 0;
    }
    
    .dock-link {
        width: 44px;
        height: 44px;
        font-size: 1rem;
        flex-shrink: 0;
        min-width: 44px;
        min-height: 44px;
    }
    
    .dock-link[data-tooltip]:hover::after,
    .dock-link[data-tooltip]:hover::before {
        display: none;
    }
    
    .theme-toggle {
        display: none !important;
    }
    
    .dock-item:has(.theme-toggle) {
        display: none !important;
    }
    
    .floating-shape {
        width: 150px !important;
        height: 150px !important;
    }
}

/* Unique Interactive Landing Page */
.hero-landing {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

/* Mesh Background Canvas */
.mesh-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.4;
}

#meshCanvas {
    width: 100%;
    height: 100%;
    display: block;
}

/* Geometric Shapes */
.geometric-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.geo-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    filter: blur(60px);
    opacity: 0.3;
    animation: morphShape 20s ease-in-out infinite;
}

.geo-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.geo-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-color);
    bottom: -50px;
    right: -50px;
    animation-delay: 5s;
}

.geo-3 {
    width: 250px;
    height: 250px;
    background: var(--accent-color);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

.geo-4 {
    width: 350px;
    height: 350px;
    background: var(--cool-color);
    bottom: 20%;
    left: 5%;
    animation-delay: 15s;
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg) scale(1);
    }
    25% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%;
        transform: rotate(180deg) scale(0.9);
    }
    75% {
        border-radius: 70% 30% 30% 70% / 30% 70% 70% 30%;
        transform: rotate(270deg) scale(1.05);
    }
}

/* Main Container */
.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    padding-top: 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: calc(100vh - 80px);
}

/* Left Side - Content */
.hero-left {
    animation: slideInLeft 1s 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: 12px;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.badge-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.badge-line {
    width: 30px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.hero-main-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
}

.title-word {
    display: block;
    animation: wordFadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.word-1 { animation-delay: 0.2s; }
.word-2 { animation-delay: 0.4s; }
.word-3 { animation-delay: 0.6s; }
.word-4 { animation-delay: 0.8s; }

@keyframes wordFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: underlineExpand 0.6s ease-out 1s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes underlineExpand {
    to {
        transform: scaleX(1);
    }
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 1s both;
}

.highlight-text {
    color: var(--accent-color);
    font-weight: 600;
    position: relative;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s both;
}

.action-btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.primary-action {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.4);
}

.primary-action:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.5);
}

.secondary-action {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.secondary-action:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

[data-theme="dark"] .secondary-action:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Quick Stats */
.quick-stats {
    display: flex;
    gap: 2rem;
    animation: fadeInUp 1s ease-out 1.4s both;
}

.quick-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.quick-stat:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-3px);
}

[data-theme="dark"] .quick-stat:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.6);
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-name {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0;
    text-align: center;
    line-height: 1.4;
}

/* Right Side - Product Showcase */
.hero-right {
    position: relative;
    animation: slideInRight 1s ease-out;
}

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

.product-showcase {
    position: relative;
    height: 600px;
    perspective: 1000px;
}

.showcase-card {
    position: absolute;
    width: 320px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 24px;
    backdrop-filter: blur(20px);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.card-1 {
    top: 0;
    left: 0;
    transform: rotateY(-5deg) rotateX(5deg);
    animation: cardFloat1 6s ease-in-out infinite;
}

.card-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotateY(5deg) rotateX(-5deg);
    z-index: 2;
    animation: cardFloat2 6s ease-in-out infinite 2s;
}

.card-3 {
    bottom: 0;
    right: 0;
    transform: rotateY(-5deg) rotateX(-5deg);
    animation: cardFloat3 6s ease-in-out infinite 4s;
}

@keyframes cardFloat1 {
    0%, 100% { transform: rotateY(-5deg) rotateX(5deg) translateY(0); }
    50% { transform: rotateY(-8deg) rotateX(8deg) translateY(-10px); }
}

@keyframes cardFloat2 {
    0%, 100% { transform: translate(-50%, -50%) rotateY(5deg) rotateX(-5deg) translateY(0); }
    50% { transform: translate(-50%, -50%) rotateY(8deg) rotateX(-8deg) translateY(-10px); }
}

@keyframes cardFloat3 {
    0%, 100% { transform: rotateY(-5deg) rotateX(-5deg) translateY(0); }
    50% { transform: rotateY(-8deg) rotateX(-8deg) translateY(-10px); }
}

.showcase-card:hover {
    transform: translateY(-20px) scale(1.05) rotateY(0deg) rotateX(0deg) !important;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
    z-index: 10;
}

[data-theme="dark"] .showcase-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(99, 102, 241, 0.6);
}

.card-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 24px;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.5s ease;
    z-index: -1;
}

.showcase-card:hover .card-glow {
    opacity: 0.6;
}

.card-content {
    position: relative;
    z-index: 2;
    margin-bottom: 16px;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
}

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 16px;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
}

.card-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.card-image {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    overflow: hidden;
    border-radius: 0 0 24px 24px;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.showcase-card:hover .card-image {
    opacity: 0.6;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.showcase-card:hover .card-image img {
    transform: scale(1);
}

/* Social Media Icons - Right Side of Landing Page (Desktop Only) */
.landing-social-icons {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: socialIconsFadeIn 1s ease-out 1.8s both;
}

@keyframes socialIconsFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50%) translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) translateX(0);
    }
}

.landing-social-icons .social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

/* Default colors for each social platform */
.landing-social-icons .social-icon:nth-child(1) {
    background: rgba(37, 211, 102, 0.2);
    border-color: rgba(37, 211, 102, 0.4);
    color: #25D366;
}

.landing-social-icons .social-icon:nth-child(2) {
    background: rgba(225, 48, 108, 0.2);
    border-color: rgba(225, 48, 108, 0.4);
    color: #E1306C;
}

.landing-social-icons .social-icon:nth-child(3) {
    background: rgba(24, 119, 242, 0.2);
    border-color: rgba(24, 119, 242, 0.4);
    color: #1877F2;
}

.landing-social-icons .social-icon:nth-child(4) {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.landing-social-icons .social-icon:hover {
    transform: translateX(-8px) scale(1.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.landing-social-icons .social-icon .social-tooltip {
    position: absolute;
    right: 60px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.landing-social-icons .social-icon .social-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.landing-social-icons .social-icon:hover .social-tooltip {
    opacity: 1;
}

/* Specific colors for each social platform */
.landing-social-icons .social-icon:nth-child(1):hover {
    background: #25D366;
    border-color: #25D366;
}

.landing-social-icons .social-icon:nth-child(2):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
}

.landing-social-icons .social-icon:nth-child(3):hover {
    background: #1877F2;
    border-color: #1877F2;
}

.landing-social-icons .social-icon:nth-child(4):hover {
    background: #000000;
    border-color: #000000;
}

/* Hide social icons on mobile */
@media (max-width: 1024px) {
    .landing-social-icons {
        display: none;
    }
}

/* Scroll Hint */
.scroll-hint {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    animation: fadeInUp 1s ease-out 1.6s both;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        transform: scaleY(1);
        opacity: 1;
    }
    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-main-title {
        font-size: 3rem;
    }
    
    .product-showcase {
        height: 500px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .showcase-card {
        width: 280px;
        height: 350px;
    }
    
    .quick-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Hero Mobile Improvements */
    .hero-landing {
        padding-top: 60px;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        padding: 20px !important;
        padding-top: 20px !important;
        min-height: auto !important;
        text-align: center;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-left {
        width: 100%;
        max-width: 100%;
        order: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .hero-main-title {
        font-size: 2rem !important;
        line-height: 1.3 !important;
        text-align: center !important;
        margin-bottom: 1rem !important;
    }
    
    .hero-description {
        font-size: 0.95rem !important;
        max-width: 100% !important;
        margin-bottom: 1.5rem !important;
        text-align: center !important;
        padding: 0 10px;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }
    
    .action-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .quick-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
        width: 100%;
        justify-content: center;
        align-items: center;
        margin-top: 1.5rem;
    }
    
    .quick-stat {
        flex: 0 1 auto;
        min-width: 140px;
        max-width: 200px;
        justify-content: center;
        align-items: center;
        margin: 0 auto;
    }
    
    .hero-right {
        width: 100%;
        max-width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        order: 2;
        margin-top: 20px;
    }
    
    .product-showcase {
        height: auto !important;
        max-width: 100% !important;
        width: 100%;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1.5rem !important;
        perspective: none !important;
        position: relative !important;
        padding: 0 !important;
    }
    
    .showcase-card {
        width: 100% !important;
        max-width: 320px !important;
        height: auto !important;
        min-height: 350px !important;
        position: relative !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 0 auto !important;
        animation: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        text-align: center !important;
    }
    
    .card-1,
    .card-2,
    .card-3 {
        position: relative !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        animation: none !important;
    }
    
    .card-content {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        width: 100% !important;
        margin-top: 0 !important;
        margin-bottom: auto !important;
    }
    
    .card-content h3 {
        text-align: center !important;
        width: 100% !important;
    }
    
    .card-content p {
        text-align: center !important;
        width: 100% !important;
    }
    
    .card-icon {
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    .card-image {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }
    
    .card-image img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }
    
    .showcase-card:active {
        transform: scale(0.98) !important;
    }
    
    .scroll-hint {
        bottom: 20px;
        font-size: 0.75rem;
    }
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
}

.btn-primary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

[data-theme="dark"] .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.btn-secondary i {
    transition: transform 0.3s ease;
}

.btn-secondary:hover i {
    transform: scale(1.1);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-outline:hover {
    color: white;
    border-color: var(--secondary-color);
    box-shadow: var(--shadow);
}

.btn-outline:hover::before {
    left: 0;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* About Section */
.about {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

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

.about-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    box-shadow: var(--shadow);
}

.about-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

[data-theme="dark"] .about-card:hover {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

[data-theme="dark"] .about-card:hover h3 {
    color: var(--text-dark) !important;
}

[data-theme="dark"] .about-card:hover p {
    color: var(--text-light) !important;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
    position: relative;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.icon-box:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
}

.about-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.about-card p {
    color: var(--text-light);
}

/* Products Section - Modern & Unique Design */
.products-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.products-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.products-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
    animation: patternFloat 20s ease-in-out infinite;
}

@keyframes patternFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.products-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 1.2rem;
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.products-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.title-part {
    display: inline-block;
    margin: 0 8px;
    animation: titlePartFade 0.8s ease-out forwards;
    opacity: 0;
}

.title-part:nth-child(1) { animation-delay: 0.2s; }
.title-part:nth-child(2) { animation-delay: 0.4s; }
.title-part:nth-child(3) { animation-delay: 0.6s; }

@keyframes titlePartFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-part.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.products-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.products-showcase {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 120px;
    margin-top: 4rem;
}

.product-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    padding: 40px 0;
    animation: showcaseFadeIn 1s ease-out forwards;
    opacity: 0;
}

.product-showcase-item:nth-child(1) { animation-delay: 0.2s; }
.product-showcase-item:nth-child(2) { animation-delay: 0.4s; }
.product-showcase-item:nth-child(3) { animation-delay: 0.6s; }

@keyframes showcaseFadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-showcase-item.reverse {
    direction: rtl;
}

.product-showcase-item.reverse > * {
    direction: ltr;
}

.product-number {
    position: absolute;
    top: -20px;
    left: 0;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(99, 102, 241, 0.08);
    line-height: 1;
    z-index: 0;
    pointer-events: none;
}

.product-showcase-item.reverse .product-number {
    left: auto;
    right: 0;
}

.product-visual {
    position: relative;
    z-index: 2;
}

.product-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-white);
    padding: 8px;
}

.product-showcase-item:hover .product-image-wrapper {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(99, 102, 241, 0.3);
}

.product-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.product-showcase-item:hover .product-main-image {
    transform: scale(1.05);
}

.product-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.1) 100%);
    border-radius: 20px;
    pointer-events: none;
}

.product-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 3;
}

.product-badge i {
    font-size: 1rem;
}

.product-glow {
    position: absolute;
    inset: -20px;
    background: var(--gradient-primary);
    border-radius: 24px;
    opacity: 0;
    filter: blur(40px);
    transition: opacity 0.5s ease;
    z-index: -1;
}

.product-showcase-item:hover .product-glow {
    opacity: 0.4;
}

.product-info {
    position: relative;
    z-index: 2;
}

.product-category {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-name {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 2.5rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.feature-tag i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.feature-tag span {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.product-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-btn.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

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

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

.product-btn.secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.product-btn i {
    transition: transform 0.3s ease;
}

.product-btn:hover i {
    transform: translateX(5px);
}

/* Minimal Gold Mouse Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #FFD700;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, border-color 0.3s ease, background 0.3s ease;
    background: transparent;
    box-shadow: 0 0 10px #FFD700,
                0 0 20px rgba(255, 215, 0, 0.5);
}

.custom-cursor.cursor-hover {
    width: 30px;
    height: 30px;
    border-color: #FFA500;
    background: rgba(255, 215, 0, 0.1);
    box-shadow: 0 0 15px #FFA500,
                0 0 25px rgba(255, 215, 0, 0.6),
                0 0 35px rgba(255, 165, 0, 0.4);
}

.cursor-dot {
    position: fixed;
    width: 4px;
    height: 4px;
    background: #FFD700;
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background 0.3s ease;
    box-shadow: 0 0 8px #FFD700,
                0 0 15px rgba(255, 215, 0, 0.6);
}

.cursor-dot.cursor-dot-hover {
    width: 6px;
    height: 6px;
    background: #FFA500;
    box-shadow: 0 0 12px #FFA500,
                0 0 20px rgba(255, 215, 0, 0.8),
                0 0 30px rgba(255, 165, 0, 0.6);
}

/* Dark mode gold cursor colors */
[data-theme="dark"] .custom-cursor {
    border-color: #FFD700;
    box-shadow: 0 0 10px #FFD700,
                0 0 20px rgba(255, 215, 0, 0.6),
                0 0 30px rgba(255, 215, 0, 0.4);
}

[data-theme="dark"] .custom-cursor.cursor-hover {
    border-color: #FFC125;
    background: rgba(255, 215, 0, 0.15);
    box-shadow: 0 0 15px #FFC125,
                0 0 25px rgba(255, 193, 37, 0.7),
                0 0 35px rgba(255, 215, 0, 0.5),
                0 0 45px rgba(255, 165, 0, 0.3);
}

[data-theme="dark"] .cursor-dot {
    background: #FFD700;
    box-shadow: 0 0 8px #FFD700,
                0 0 15px rgba(255, 215, 0, 0.7),
                0 0 25px rgba(255, 215, 0, 0.5);
}

[data-theme="dark"] .cursor-dot.cursor-dot-hover {
    background: #FFC125;
    box-shadow: 0 0 12px #FFC125,
                0 0 20px rgba(255, 193, 37, 0.9),
                0 0 30px rgba(255, 215, 0, 0.7),
                0 0 40px rgba(255, 165, 0, 0.5);
}

/* Light mode gold cursor colors */
[data-theme="light"] .custom-cursor {
    border-color: #FFA500;
    box-shadow: 0 0 10px #FFA500,
                0 0 20px rgba(255, 165, 0, 0.5),
                0 0 30px rgba(255, 215, 0, 0.3);
}

[data-theme="light"] .custom-cursor.cursor-hover {
    border-color: #FFD700;
    background: rgba(255, 215, 0, 0.12);
    box-shadow: 0 0 15px #FFD700,
                0 0 25px rgba(255, 215, 0, 0.6),
                0 0 35px rgba(255, 165, 0, 0.4);
}

[data-theme="light"] .cursor-dot {
    background: #FFA500;
    box-shadow: 0 0 8px #FFA500,
                0 0 15px rgba(255, 165, 0, 0.6),
                0 0 25px rgba(255, 215, 0, 0.4);
}

[data-theme="light"] .cursor-dot.cursor-dot-hover {
    background: #FFD700;
    box-shadow: 0 0 12px #FFD700,
                0 0 20px rgba(255, 215, 0, 0.8),
                0 0 30px rgba(255, 165, 0, 0.6);
}

/* Hide cursor on mobile */
@media (max-width: 768px) {
    .custom-cursor,
    .cursor-dot {
        display: none;
    }
    
    body {
        cursor: auto !important;
    }
}

/* Scroll Progress Bar */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
}

/* Floating Menu (Bottom Right - Mobile Only) */
.floating-menu {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    left: auto !important;
    top: auto !important;
    z-index: 1000;
    display: none; /* Hidden by default, shown only on mobile */
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 12px;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    width: auto !important;
    height: auto !important;
    max-width: none !important;
    max-height: none !important;
}

.floating-menu-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1001;
}

.floating-menu-toggle:hover {
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 6px 30px rgba(99, 102, 241, 0.6);
}

.floating-menu-toggle.active {
    transform: rotate(90deg);
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.floating-menu-toggle.active i {
    transform: rotate(90deg);
}

.floating-menu-items {
    display: flex;
    flex-direction: row-reverse; /* Expand to left (opposite side) */
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px) scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    margin-right: 12px;
}

.floating-menu.active .floating-menu-items {
    opacity: 1;
    visibility: visible;
    transform: translateX(0) scale(1);
    pointer-events: all;
}

.floating-menu-item {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-white);
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.floating-menu-item:hover {
    transform: translateX(-8px) scale(1.1);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
    border-color: var(--primary-color);
}

.floating-menu-item .floating-menu-tooltip {
    position: absolute;
    right: 60px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(10px);
}

.floating-menu-item .floating-menu-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: rgba(0, 0, 0, 0.8);
}

.floating-menu-item:hover .floating-menu-tooltip {
    opacity: 1;
}

/* Social icon colors in floating menu */
.floating-menu-item:nth-child(2):hover {
    background: #25D366;
    border-color: #25D366;
    color: white;
}

.floating-menu-item:nth-child(3):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
    color: white;
}

.floating-menu-item:nth-child(4):hover {
    background: #1877F2;
    border-color: #1877F2;
    color: white;
}

.floating-menu-item:nth-child(5):hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.theme-toggle-float:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: var(--primary-color);
}

[data-theme="dark"] .floating-menu-item {
    background: var(--bg-white);
    border-color: var(--border-color);
    color: var(--text-dark);
}

[data-theme="dark"] .floating-menu-toggle {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

/* Show floating menu only on mobile */
@media (max-width: 768px) {
    .floating-menu {
        display: flex !important;
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        left: auto !important;
        top: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        transform: none !important;
        width: auto !important;
        height: auto !important;
        max-width: none !important;
        max-height: none !important;
        flex-direction: row !important;
        align-items: flex-end !important;
        justify-content: flex-end !important;
    }
    
    .floating-menu-toggle {
        position: relative !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }
    
    .floating-menu-items {
        margin-right: 12px !important;
        flex-direction: row-reverse !important;
        align-items: flex-end !important;
    }
    
    .floating-menu.active .floating-menu-items {
        transform: translateX(0) scale(1) !important;
    }
    
    .floating-menu-item:hover {
        transform: translateY(-8px) scale(1.1) !important;
    }
}

/* Products Section */
.products {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

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

.product-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
    position: relative;
}

.product-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-soft);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.product-card:hover::after {
    opacity: 0.05;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
    border-color: var(--primary-color);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    border-radius: 15px 15px 0 0;
}

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

.product-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.view-gallery {
    background: white;
    color: var(--primary-color);
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

[data-theme="dark"] .view-gallery {
    background: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}

.view-gallery:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.35);
}

.product-content {
    padding: 2rem;
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.product-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    overflow: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.video-modal-content {
    max-width: 95%;
    padding: 2rem;
}

.video-modal-content video {
    border-radius: 8px;
}
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.1);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--text-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    border: 2px solid var(--border-color);
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

/* Why Choose Section */
.why-choose {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 20px;
    position: relative;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.06);
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.12);
    border-color: var(--primary-color);
}

.feature-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.feature-item:hover i {
    transform: scale(1.1);
}

.feature-item h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-light);
}

/* How We Work Section */
.how-we-work {
    background: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.process-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

.process-step {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.step-number:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
}

.step-content {
    flex: 1;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.step-content:hover {
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.12);
    transform: translateX(5px);
    border-color: var(--primary-color);
}

.step-content h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
}

/* FAQ Section */
.faq {
    background: var(--bg-white);
}

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

.faq-item {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(99, 102, 241, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.05);
}

.faq-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}

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

.faq-question:hover {
    background: #f3f4f6;
}

[data-theme="dark"] .faq-question:hover {
    background: rgba(99, 102, 241, 0.15);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.info-item h3 {
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.info-item p {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.info-item a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.social-links {
    margin-top: 1rem;
}

.social-links h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.social-icons a:hover {
    transform: translateY(-5px) scale(1.15) rotate(5deg);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    background: linear-gradient(135deg, #7c3aed 0%, #a78bfa 100%);
}

/* Ripple Effect */
.btn {
    position: relative;
    overflow: hidden;
}

.btn .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: rippleAnimation 0.6s ease-out;
    pointer-events: none;
}

@keyframes rippleAnimation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Tech Grid Background Pattern */
.about::after,
.products::after,
.why-choose::after,
.how-we-work::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    opacity: 0.5;
}

/* Micro animation for text */
.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.5s ease;
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
    border-radius: 2px;
}

.section-title.animated::after {
    width: 100px;
}

/* Particle effect on hover for cards */
.product-card:hover .product-image::before,
.about-card:hover::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    animation: particleExpand 0.6s ease-out;
    pointer-events: none;
}

@keyframes particleExpand {
    to {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.1);
    transition: all 0.3s ease;
}

.contact-form-wrapper:hover {
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.map-container {
    margin-top: 3rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    display: block;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.footer-logo {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    opacity: 1;
}

[data-theme="dark"] .footer-logo-img {
    filter: brightness(0) invert(1) opacity(0.8);
}

.footer-logo:hover .footer-logo-img {
    opacity: 1;
}

.footer-section h3 {
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        left: 20px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .process-step {
        gap: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .gallery-grid img {
        height: 180px;
    }
}

/* Products Section Responsive */
@media (max-width: 1024px) {
    .product-showcase-item {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-showcase-item.reverse {
        direction: ltr;
    }
    
    .product-number {
        font-size: 6rem;
    }
    
    .products-title {
        font-size: 2.5rem;
    }
    
    .product-name {
        font-size: 2rem;
    }
    
    .product-features-grid {
        grid-template-columns: 1fr;
    }
    
    .product-main-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }
    
    .products-showcase {
        gap: 60px;
    }
    
    .product-showcase-item {
        padding: 20px 0;
    }
    
    .product-number {
        font-size: 5rem;
    }
    
    .products-title {
        font-size: 2rem;
    }
    
    .product-name {
        font-size: 1.8rem;
    }
    
    .product-description {
        font-size: 1rem;
    }
    
    .product-main-image {
        height: 300px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Hero Container Mobile */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .hero-main-title {
        font-size: 2.5rem !important;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .quick-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .quick-stat {
        width: 100%;
    }
    
    /* Product Showcase Mobile */
    .product-showcase {
        height: auto;
        max-width: 100%;
    }
    
    .showcase-card {
        width: 100% !important;
        height: auto !important;
        position: relative !important;
        margin-bottom: 2rem;
        transform: none !important;
    }
    
    .showcase-card:active {
        transform: scale(0.98) !important;
    }
    
    /* Touch-friendly buttons */
    .btn, .action-btn, .product-btn {
        min-height: 44px;
        min-width: 44px;
        -webkit-tap-highlight-color: transparent;
    }
    
    .btn:active, .action-btn:active, .product-btn:active {
        transform: scale(0.95);
    }
    
    /* Modal Mobile */
    .modal-content {
        max-width: 95%;
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* FAQ Mobile */
    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }
    
    /* Contact Form Mobile */
    .contact-wrapper {
        grid-template-columns: 1fr !important;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .about-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .products-title {
        font-size: 1.75rem;
    }
    
    .product-name {
        font-size: 1.5rem;
    }
    
    .product-number {
        font-size: 4rem;
    }
}


