/* Home Page Specific Styles */

.home-main {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 2rem 2rem;
    position: relative;
    z-index: 1;
}

.home-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Section */
.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 700px;
    z-index: 2;
}

/* Company Name - Large and Centered */
.glitch-text {
    font-size: clamp(3.5rem, 10vw, 6rem);
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.1;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(0, 168, 255, 0.3);
}

.highlight {
    color: #00a8ff;
    position: relative;
}

/* Typing Text Animation */
.hero-subtitle {
    margin: 1.5rem 0;
}

.typing-text {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: #00a8ff;
    font-weight: 500;
    border-right: 3px solid #00a8ff;
    padding-right: 10px;
    animation: blink 0.75s step-end infinite;
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: #00a8ff; }
}

/* Description Text */
.hero-description {
    font-size: 1.2rem;
    color: #cccccc;
    margin: 2rem 0;
    max-width: 600px;
    line-height: 1.8;
}

/* CTA Buttons */
.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.premium-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.primary-btn {
    background: #00a8ff;
    color: #000000;
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.3);
}

.primary-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 168, 255, 0.5);
    background: #33b9ff;
}

.secondary-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid #333333;
}

.secondary-btn:hover {
    background: #222222;
    transform: translateY(-3px);
    border-color: #00a8ff;
}

/* Floating Elements */
.floating-elements {
    position: relative;
    width: 400px;
    height: 400px;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(0, 168, 255, 0.1);
    border: 2px solid rgba(0, 168, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #00a8ff;
    backdrop-filter: blur(5px);
    animation: float 6s infinite ease-in-out;
}

.elem1 {
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.elem2 {
    top: 50%;
    right: 30%;
    animation-delay: -2s;
}

.elem3 {
    bottom: 0;
    left: 0;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(10deg);
    }
    50% {
        transform: translate(40px, 0) rotate(20deg);
    }
    75% {
        transform: translate(20px, 20px) rotate(10deg);
    }
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 4rem 0;
    padding: 3rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(0, 168, 255, 0.05);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00a8ff;
    margin-bottom: 0.5rem;
}

.stat-symbol {
    font-size: 1.5rem;
    margin-left: 0.25rem;
    color: #00a8ff;
}

.stat-label {
    color: #cccccc;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Featured Products Section */
.featured-products {
    margin: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #ffffff;
}

.section-title .highlight {
    color: #00a8ff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    border-color: #00a8ff;
    box-shadow: 0 10px 30px rgba(0, 168, 255, 0.2);
    background: rgba(0, 168, 255, 0.05);
}

.product-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 168, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #00a8ff;
    border: 2px solid #00a8ff;
    transition: all 0.3s ease;
}

.product-card:hover .product-icon {
    transform: rotate(360deg);
    background: #00a8ff;
    color: #000000;
}

.product-card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-link {
    color: #00a8ff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 1rem;
}

/* Newsletter Section */
.newsletter-section {
    margin: 4rem 0;
    padding: 4rem 2rem;
    background: rgba(0, 168, 255, 0.02);
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.newsletter-content p {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    background: rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #00a8ff;
    box-shadow: 0 0 20px rgba(0, 168, 255, 0.2);
}

.newsletter-form button {
    padding: 1rem 2rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .floating-elements {
        width: 300px;
        height: 300px;
    }
    
    .stats-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
    }
    
    .glitch-text {
        font-size: 3rem;
    }
    
    .typing-text {
        font-size: 1.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .premium-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .floating-elements {
        width: 200px;
        height: 200px;
    }
    
    .floating-element {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stats-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .glitch-text {
        font-size: 2.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}