/* Meet Us Section */
.hp-meet {
    min-height: 400px;
    background-size: cover;
    background-position: center;
    color: var(--white);
    display: flex;
    align-items: center;
    position: relative;
}

.hp-meet::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.meet-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    padding: 2rem;
    margin-left: 40px;
}

.meet-subtitle {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: clamp(0.7rem, 2vw, 0.9rem);
    margin-bottom: 0.5rem;
}

.meet-content h2 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.meet-body {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .navbar-logo { max-width: 60px; }
    .footer-logo img { max-width: 80px; }
    .meet-content { margin-left: 0; padding: 1rem; text-align: center; }
    .hp-meet { padding: 40px 20px; }
}

/* Our Process & Gallery Styles */
.our-process, .hp-gallery {
    padding: 80px 0;
    border-bottom: 2px solid var(--secondary-base);
    text-align: center;
}

.process-desc {
    margin-bottom: 3rem;
    color: #666;
}

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

.process-step span {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-1);
    margin-bottom: 0.5rem;
}

.process-step h3 {
    margin-bottom: 0.5rem;
}

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

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

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

.product-image-box {
    width: 100%;
    height: 300px;
    background: var(--secondary-base);
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-item span {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
}
