/* Gallery Page Styles */

.gallery-header {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.gallery-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.gallery-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

/* Main Gallery Section */
.main-gallery {
    padding: 80px 0;
    background: var(--bg-light);
}

.gallery-masonry {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    align-items: start;
}

.gallery-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.gallery-card.featured {
    grid-column: span 1;
    border: 3px solid var(--primary-color);
}

.card-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.card-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.contact-info {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--border-color);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.contact-info i {
    color: var(--primary-color);
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.card-link:hover {
    gap: 0.75rem;
    color: var(--secondary-color);
}

.card-link.btn-primary {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    justify-content: center;
    margin-top: 1rem;
}

.card-link.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
}

.feature-list i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.trustpilot-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.trustpilot-badge i {
    color: var(--accent-color);
}

.trustpilot-badge span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Brochure CTA Section */
.brochure-cta {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.brochure-cta i.fa-file-pdf {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.brochure-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.brochure-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-masonry {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .gallery-header h1 {
        font-size: 2rem;
    }

    .gallery-header p {
        font-size: 1rem;
    }

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

    .gallery-card.featured {
        grid-column: span 1;
    }

    .card-content h3 {
        font-size: 1.3rem;
    }

    .brochure-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .gallery-header {
        padding: 60px 0 40px;
    }

    .main-gallery {
        padding: 60px 0;
    }

    .card-content {
        padding: 1.5rem;
    }

    .brochure-cta {
        padding: 60px 0;
    }

    .brochure-cta i.fa-file-pdf {
        font-size: 3rem;
    }
}