.gallery-section { background: var(--bg); 
    padding: 80px 0; 
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}
.gallery-item {
    border-radius: 16px; overflow: hidden;
    cursor: pointer; position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}
.gallery-item:first-child { grid-column: 1/3; grid-row: 1/3; aspect-ratio: unset; min-height: 300px; }
.gallery-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    font-size: 36px; gap: 8px;
    transition: transform 0.3s;
}
.gallery-item:hover .gallery-placeholder { transform: scale(1.05); }
.gallery-placeholder span { font-size: 12px; font-weight: 700; color: var(--muted); font-family: 'Montserrat', sans-serif; }
.gallery-item:nth-child(6n + 1) .gallery-placeholder { background: linear-gradient(135deg, #1a56db, #3b82f6); color: rgba(255,255,255,0.8); }
.gallery-item:nth-child(6n + 2) .gallery-placeholder { background: linear-gradient(135deg, #e02b2b, #f87171); color: rgba(255,255,255,0.8); }
.gallery-item:nth-child(6n + 3) .gallery-placeholder { background: linear-gradient(135deg, #16a34a, #4ade80); color: rgba(255,255,255,0.8); }
.gallery-item:nth-child(6n + 4) .gallery-placeholder { background: linear-gradient(135deg, #8b5cf6, #a78bfa); color: rgba(255,255,255,0.8); }
.gallery-item:nth-child(6n + 5) .gallery-placeholder { background: linear-gradient(135deg, #f59e0b, #fbbf24); color: rgba(255,255,255,0.8); }
.gallery-item:nth-child(6n + 6) .gallery-placeholder { background: linear-gradient(135deg, #0891b2, #22d3ee); color: rgba(255,255,255,0.8); }
.gallery-overlay {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s; color: #fff; font-size: 28px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}
.gallery-cta { text-align: center; margin-top: 36px; }
.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 30px;
    border: 2px solid var(--blue) !important; color: var(--blue) !important;
    background: transparent; font-size: 14px; font-weight: 700 !important;
    font-family: 'Montserrat', sans-serif;
    border-radius: 50px; cursor: pointer;
    text-decoration: none !important; transition: all 0.3s;
}
.btn-secondary:hover { background: var(--blue); color: #fff !important; transform: translateY(-2px); }
