/* 
 * Home Page Specific Styles
 * This file contains styles specific to the home page
 * To be used in conjunction with the main styles.css file
 */

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 10px;
    font-weight: 700;
}

.hero .tagline {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--accent);
    font-weight: 500;
}

.hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-btn {
    background-color: var(--accent);
    border: 2px solid white;
    color: white;
    padding: 14px 30px;
    font-weight: 600;
}

.primary-btn:hover {
    background-color: #0088cc;
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid white;
    color: white;
    padding: 12px 28px;
}

.secondary-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Benefits Overview Section */
.benefits-overview {
    padding: 80px 0;
    background-color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 8px;
    background-color: var(--light);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-icon {
    margin-bottom: 20px;
}

.benefit-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 22px;
}

/* Service Categories Section */
.services {
    padding: 80px 0;
    background-color: var(--light);
}

.service-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.additional-services {
    margin-top: 30px;
}

.category {
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.category:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.category-icon {
    text-align: center;
    margin-bottom: 20px;
}

.category h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 24px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
}

.category p {
    margin-bottom: 20px;
}

.category ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.category li {
    margin-bottom: 8px;
}

.category .btn {
    margin-top: auto;
    align-self: flex-start;
}

.view-all {
    border: 2px dashed #ddd;
    background-color: rgba(255, 255, 255, 0.7);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    background-color: white;
}

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

.feature {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light);
    border-radius: 8px;
    transition: all 0.3s ease;
}

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

.feature-icon {
    margin-bottom: 20px;
}

.feature h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 22px;
}

/* Process Overview Section */
.process-overview {
    padding: 80px 0;
    background-color: var(--light);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
    position: relative;
    flex-wrap: wrap;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--accent);
    z-index: 1;
}

.step {
    position: relative;
    text-align: center;
    z-index: 2;
    padding: 0 15px;
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    margin-bottom: 30px;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: var(--accent);
    color: rgb(14, 13, 13);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    font-weight: bold;
}

.step h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 20px;
}

.process-cta {
    text-align: center;
    margin-top: 50px;
}

/* Industries Section */
.industries {
    padding: 80px 0;
    background-color: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.industry-item {
    text-align: center;
    background-color: var(--light);
    padding: 25px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    background-color: white;
}

.industry-icon {
    margin-bottom: 15px;
}

.industry-item h3 {
    color: var(--primary);
    font-size: 18px;
}

.industries-cta {
    text-align: center;
    margin-top: 50px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--light);
}

.testimonials-slider {
    max-width: 800px;
    margin: 50px auto 30px;
    position: relative;
    overflow: hidden;
}

.testimonial-item {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 0 15px;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    font-size: 60px;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: -10px;
}

.testimonial-author {
    text-align: right;
    font-size: 14px;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.prev-testimonial,
.next-testimonial {
    background-color: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.prev-testimonial:hover,
.next-testimonial:hover {
    background-color: var(--accent);
}

.testimonial-dots {
    display: flex;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--accent);
    transform: scale(1.2);
}

/* FAQ Preview Section */
.faq-preview {
    padding: 80px 0;
    background-color: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faq-item {
    background-color: var(--light);
    padding: 25px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.faq-item h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

/* Call-to-Action Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--primary);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-section .primary-btn {
    background-color: white;
    color: var(--primary);
}

.cta-section .primary-btn:hover {
    background-color: var(--accent);
    color: white;
}

.cta-section .secondary-btn {
    border-color: white;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info h3 {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 22px;
}

.contact-info p {
    margin-bottom: 10px;
}

.address {
    margin-bottom: 30px;
}

.service-areas {
    margin-top: 30px;
}

.contact-form {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form h3 {
    color: var(--primary);
    margin-bottom: 25px;
    font-size: 22px;
    text-align: center;
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

.consent-checkbox input {
    margin-top: 5px;
    margin-right: 10px;
}

.contact-form button {
    width: 100%;
    margin-top: 20px;
}

/* Social Icons in Footer */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .step {
        margin-bottom: 40px;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero .tagline {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 30px;
    }
    
    .hero .tagline {
        font-size: 20px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .process-steps {
        flex-direction: column;
        align-items: center;
    }
    
    .step {
        width: 100%;
        max-width: 300px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }
    
    .benefit-card,
    .feature,
    .industry-item {
        padding: 20px 15px;
    }
    
    .contact-form {
        padding: 20px;
    }
}