/*
 * Homepage Specific Styles
 * ----------------------------------------------------------------------------
 */

/* General Section Styling */
.features-section, .company-intro, .products-showcase-section, .contact-section {
    padding: 60px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin-bottom: 40px;
}

/* Hero Slider */
.hero-slider-section .slide-content {
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 20px 30px;
    border-radius: 8px;
}

.hero-slider-section .slide-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
}

.hero-slider-section .slide-content p {
    font-size: 1.1rem;
}

/* Features Section */
.features-section {
    background-color: #f8f9fa;
}

.features-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.feature-icon i {
    font-size: 2.5rem;
    /* color: #007bff; */
    /* margin-bottom: 15px; */
}

.feature-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.feature-text p {
    color: #6c757d;
}

/* Company Introduction */
.company-intro .intro-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.company-intro .intro-text {
    flex: 1;
}

.company-intro .intro-image {
    flex: 1;
}

.company-intro .intro-image img {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.intro-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #007bff;
}

.stat-label {
    display: block;
    color: #555;
}

/* Products Showcase */
.products-showcase {
    margin-bottom: 50px;
}

.showcase-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
    display: inline-block;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.product-card {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.product-card:hover {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.product-card .product-image {
    position: relative;
}

.product-card .product-overlay {
    opacity: 0;
    transition: opacity 0.3s;
}

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

.product-card .product-info {
    padding: 20px;
}

.product-card .product-title a {
    font-size: 1.1rem;
    font-weight: 600;
    color: #343a40;
    text-decoration: none;
}

.product-card .product-description {
    font-size: 0.9rem;
    color: #6c757d;
}

.product-card .product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #d9534f;
    margin-top: 10px;
}

/* Contact Section */
.contact-section {
    background-color: #2c3e50;
    color: #fff;
}

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

.contact-text h2 {
    font-size: 2rem;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 991px) {
    .company-intro .intro-content {
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2rem;
    }

    .contact-content {
        flex-direction: column;
        text-align: center;
    }

    .contact-buttons {
        margin-top: 20px;
    }
}
