/* Top Page Specific Styles */

/* Hero Section */
.top-hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    overflow: hidden;
}

.top-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/wp-content/uploads/2024/08/top-hero-bg.jpg') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.top-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.top-hero-inner {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.top-hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease-out;
}

.top-hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.top-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.btn-hero {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary-hero {
    background: #ffd700;
    color: #000;
}

.btn-primary-hero:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

.btn-secondary-hero {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary-hero:hover {
    background: #fff;
    color: #000;
}

/* Feature Section */
.top-features {
    padding: 100px 0;
    background: #fff;
}

.top-features-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: #000;
}

.top-section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.top-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.top-feature-item {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.top-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.top-feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #fff;
}

.top-feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000;
}

.top-feature-description {
    color: #666;
    line-height: 1.6;
}

/* Products Section */
.top-products {
    padding: 100px 0;
    background: #f8f9fa;
}

.top-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.top-product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.top-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.top-product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.top-product-content {
    padding: 25px;
}

.top-product-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
}

.top-product-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.top-product-link {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.top-product-link:hover {
    color: #0056b3;
}

/* Company Info Section */
.top-company {
    padding: 100px 0;
    background: #000;
    color: #fff;
}

.top-company-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.top-company-content h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    color: #ffd700;
}

.top-company-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.top-company-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.top-stat-item {
    text-align: center;
}

.top-stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd700;
    margin-bottom: 10px;
}

.top-stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.top-company-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* News Section */
.top-news {
    padding: 100px 0;
    background: #fff;
}

.top-news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.top-news-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.top-news-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

.top-news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.top-news-content {
    padding: 20px;
}

.top-news-date {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 10px;
}

.top-news-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    line-height: 1.4;
}

.top-news-link {
    display: inline-block;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.top-news-link:hover {
    color: #0056b3;
}

/* CTA Section */
.top-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: #fff;
    text-align: center;
}

.top-cta-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.top-cta-description {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.btn-cta {
    background: #ffd700;
    color: #000;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-cta:hover {
    background: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-hero-title {
        font-size: 2.5rem;
    }
    
    .top-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .top-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .top-section-title {
        font-size: 2rem;
    }
    
    .top-company-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .top-company-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .top-cta-title {
        font-size: 2rem;
    }
    
    .top-feature-grid,
    .top-product-grid,
    .top-news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}