/* Home Page Specific Styles */

/* Hero Section Enhancements */
.hero-section {
    position: relative;
    padding: 140px 20px 80px;
    min-height: 95vh;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Darkens the background image */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content .headline {
    font-family: 'Playfair Display', serif;
    font-size: 60px;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .subheadline {
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-description {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #1d1d1f;
}

.section-subtitle {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
    margin-bottom: 40px;
    color: #86868b;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (max-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    
    .hero-content .headline {
        font-size: 36px;
    }
    
    .hero-content .subheadline {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .product-highlights {
        gap: 20px;
    }
    
    .promise-values {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .featured-testimonial {
        padding: 30px 20px;
    }
    
    .quote-icon {
        position: static;
        margin-bottom: 15px;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero-content .headline {
        font-size: 48px;
    }
    
    .hero-content .subheadline {
        font-size: 24px;
    }
}

.service-item {
    background-color: white;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-icon {
    font-size: 36px;
    color: #0071e3;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1d1d1f;
}

.service-item p {
    font-size: 16px;
    color: #86868b;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    color: #0071e3;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s ease;
    display: inline-block;
    position: relative;
}

.service-link:after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.service-link:hover {
    color: #0056b3;
}

.service-link:hover:after {
    transform: translateX(3px);
}

/* Products Highlight Section */
.products-highlight-section {
    padding: 100px 0;
    text-align: center;
    background-color: #f8f8f8;
}

.product-highlights {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.product-highlight-item {
    text-align: center;
    width: 180px;
}

.product-highlight-icon {
    font-size: 36px;
    color: #0071e3;
    margin-bottom: 15px;
}

.product-highlight-item h4 {
    font-size: 18px;
    font-weight: 500;
    color: #1d1d1f;
}

.products-description {
    font-size: 18px;
    color: #1d1d1f;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.5;
}

.cta-center {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

/* Testimonial Section */
.testimonial-section {
    padding: 100px 0;
    text-align: center;
    background-color: white;
}

.featured-testimonial {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 40px;
    background-color: #f8f8f8;
    border-radius: 15px;
    position: relative;
}

.quote-icon {
    font-size: 30px;
    color: #0071e3;
    opacity: 0.5;
    position: absolute;
    top: 20px;
    left: 30px;
}

.testimonial-text {
    font-size: 18px;
    font-style: italic;
    color: #1d1d1f;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 16px;
    font-weight: 500;
    color: #86868b;
}

/* Promise Section */
.promise-section {
    padding: 100px 0;
    text-align: center;
    background-color: #f5f5f7;
}

.promise-values {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.promise-value-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.promise-value-item i {
    color: #0071e3;
    font-size: 18px;
}

.promise-value-item span {
    font-size: 16px;
    font-weight: 500;
    color: #1d1d1f;
}

.promise-text {
    font-size: 24px;
    font-weight: 500;
    color: #1d1d1f;
    margin-bottom: 20px;
}

.tagline {
    font-size: 18px;
    font-style: italic;
    color: #86868b;
}
