/* Home Page Specific Styles */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 6rem 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #8b4513, #a0522d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
}

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

.hero-images img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.hero-images img:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Featured Products */
.featured-products {
    padding: 5rem 0;
}

.featured-products h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.featured-products > p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #666;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0;
}

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #8b4513;
}

.product-card p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    margin: 0;
}

/* Custom Solutions */
.custom-solutions {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.solution-text h2 {
    margin-bottom: 1.5rem;
}

.solution-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.solution-images img {
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Residential Excellence */
.residential-excellence h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.residential-excellence > p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #666;
}

.residential-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.residential-showcase img {
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Commercial Solutions */
.commercial-solutions {
    background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
}

.commercial-solutions h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.commercial-solutions > p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #666;
}

.commercial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.commercial-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.commercial-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.commercial-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 0;
}

.commercial-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #8b4513;
}

.commercial-item p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    margin: 0;
}

/* Smart Home Integration */
.smart-home {
    padding: 5rem 0;
}

.smart-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.smart-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.smart-images img:first-child {
    grid-column: 1 / -1;
}

/* Energy Efficiency */
.energy-efficiency {
    background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
}

.energy-efficiency h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.energy-efficiency > p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #666;
}

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

/* Installation Excellence */
.installation-excellence {
    padding: 5rem 0;
}

.installation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.installation-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.installation-images img:last-child {
    grid-column: 1 / -1;
}

/* Fabric Collection */
.fabric-collection {
    background: linear-gradient(135deg, #faf8f5 0%, #f5f2ed 100%);
}

.fabric-collection h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.fabric-collection > p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #666;
}

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

/* Outdoor Solutions */
.outdoor-solutions h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.outdoor-solutions > p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #666;
}

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

/* Healthcare & Safety */
.healthcare-safety {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 100%);
}

.healthcare-safety h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.healthcare-safety > p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #666;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.safety-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.safety-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.safety-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
}

.safety-item h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: #8b4513;
}

.safety-item p {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    margin: 0;
}

/* Maintenance & Care */
.maintenance-care {
    padding: 5rem 0;
}

.care-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.care-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Quality Assurance */
.quality-assurance {
    background: linear-gradient(135deg, #fff8e1 0%, #fff3c4 100%);
}

.quality-assurance h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.quality-assurance > p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #666;
}

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

/* Testimonials */
.testimonials {
    padding: 5rem 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.testimonials > p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
    color: #666;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 0;
}

.testimonial-card blockquote {
    padding: 1.5rem;
    font-style: italic;
    color: #555;
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-card cite {
    display: block;
    padding: 0 1.5rem 1.5rem;
    color: #8b4513;
    font-weight: 600;
    font-style: normal;
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
}

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

.contact-header h2 {
    margin-bottom: 1rem;
}

.contact-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #666;
}

/* Responsive Design for Home Page */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .hero-images {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .solution-content,
    .smart-content,
    .installation-content,
    .care-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-images,
    .smart-images,
    .installation-images,
    .care-images {
        grid-template-columns: 1fr;
    }

    .product-grid,
    .commercial-grid,
    .safety-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .residential-showcase,
    .efficiency-showcase,
    .fabric-grid,
    .outdoor-showcase,
    .quality-showcase {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

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

    .hero-section {
        padding: 4rem 0;
    }

    .product-card,
    .commercial-item,
    .safety-item,
    .testimonial-card {
        margin: 0 10px;
    }

    .residential-showcase,
    .efficiency-showcase,
    .fabric-grid,
    .outdoor-showcase,
    .quality-showcase {
        grid-template-columns: 1fr;
    }
}
