/* Global Section Spacing Variables */
:root {
    --section-padding: 70px;
    --section-padding-mobile: 50px;
}

/* Apply unified padding to all homepage sections */
.expertise-section,
.about-creative-section,
.news-section,
.contact-map-section,
.parallax-cta-section {
    padding-top: var(--section-padding) !important;
    padding-bottom: var(--section-padding) !important;
}

/* Reduce top padding for sections that follow another section (eliminates double spacing) */
.about-creative-section {
    padding-top: 30px !important;
}

.contact-map-section {
    padding-top: 30px !important;
}

/* Responsive - reduce padding on mobile */
@media (max-width: 991px) {

    .expertise-section,
    .about-creative-section,
    .news-section,
    .contact-map-section,
    .parallax-cta-section {
        padding-top: var(--section-padding-mobile) !important;
        padding-bottom: var(--section-padding-mobile) !important;
    }

    .about-creative-section,
    .contact-map-section {
        padding-top: 20px !important;
    }
}