/* ============================================
   ITALIAN KITCHENS - COMPANY PAGE STYLES
   ============================================ */

/* About Highlights */
.about-highlights {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.highlight-box i {
    font-size: 2rem;
    color: var(--accent-color);
    min-width: 40px;
}

.highlight-box h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.highlight-box p {
    color: #64748b;
    margin: 0;
    font-size: 0.95rem;
}

/* Contact Banner */
.contact-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.contact-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    min-width: 50px;
}

.contact-item h4 {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

/* Service Cards with Images */
.service-card-italian {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

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

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-italian:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-content .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-content .service-icon i {
    font-size: 1.6rem;
    color: white;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.service-content p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

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

.feature-card-large {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.feature-card-large i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.feature-card-large h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.feature-card-large p {
    color: #64748b;
    margin: 0;
    font-size: 0.9rem;
}

.warranty-highlight {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border: 3px solid #fbbf24;
}

.warranty-highlight i,
.warranty-highlight h3,
.warranty-highlight p {
    color: white;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: white;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color) 0%, #d97706 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.step-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px;
    border: 3px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.process-step:hover .step-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    transform: scale(1.1);
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.process-step:hover .step-icon i {
    color: white;
}

.process-step h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.process-step p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

/* Clients Showcase */
.clients-section-italian {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.clients-showcase {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.client-category {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.client-category h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.client-category i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.client-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.client-tag {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    border: 2px solid rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.client-tag:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

/* Masonry Gallery */
.gallery-grid-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    grid-auto-flow: dense;
    margin-top: 50px;
}

.gallery-item-masonry {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    height: 300px;
}

.gallery-item-masonry.tall {
    grid-row: span 2;
    height: 620px;
}

.gallery-item-masonry img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-masonry:hover img {
    transform: scale(1.1);
}

.gallery-item-masonry .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 30px 20px;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.gallery-item-masonry .gallery-overlay h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.gallery-item-masonry .gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.9rem;
}

/* CTA Section Enhancements */
.cta-section .btn-primary-cta i,
.cta-section .btn-secondary-cta i {
    margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .highlight-box {
        flex-direction: column;
        text-align: center;
    }

    .gallery-grid-masonry {
        grid-template-columns: 1fr;
    }

    .gallery-item-masonry.tall {
        grid-row: span 1;
        height: 300px;
    }

    .client-tags {
        justify-content: center;
    }
}