/* ====================================
   PREMIUM SECTION HEADERS
   ==================================== */

/* Premium Compact Header */
.section-header-compact {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

/* Premium Title Styling */
.section-header-compact .section-title-center {
    margin: 0 0 10px 0;
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #1a1a1a 0%, #4a4a4a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

/* Decorative underline */
.section-header-compact .section-title-center::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #63AB45, #85C765);
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(99, 171, 69, 0.4);
}

/* Premium white title for dark backgrounds */
.section-our-services .section-header-compact .section-title-white {
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 0 0 10px 0;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
}

.section-our-services .section-header-compact .section-title-white::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, #63AB45);
    border-radius: 2px;
    box-shadow: 0 2px 15px rgba(255, 255, 255, 0.3);
}

/* Premium View More Button */
.btn-view-more-top,
.btn-view-more-services {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #63AB45 0%, #85C765 100%);
    color: white;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(99, 171, 69, 0.35);
    border: 2px solid transparent;
}

/* Animated gradient overlay */
.btn-view-more-top::before,
.btn-view-more-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-view-more-top:hover::before,
.btn-view-more-services:hover::before {
    left: 100%;
}

/* Add arrow icon with CSS */
.btn-view-more-top::after,
.btn-view-more-services::after {
    content: '→';
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-view-more-top:hover,
.btn-view-more-services:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(99, 171, 69, 0.5);
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-view-more-top:hover::after,
.btn-view-more-services:hover::after {
    transform: translateX(5px);
}

/* White version for dark background */
.btn-view-more-services {
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    color: #1a1a1a;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-view-more-services:hover {
    background: linear-gradient(135deg, #63AB45 0%, #85C765 100%);
    color: white;
    box-shadow: 0 12px 35px rgba(99, 171, 69, 0.4);
}

/* Decorative corner accents */
.section-header-compact::before,
.section-header-compact::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.15;
}

.section-header-compact::before {
    top: -10px;
    left: 50%;
    transform: translateX(-150px);
    border-top: 3px solid #63AB45;
    border-left: 3px solid #63AB45;
    border-radius: 4px 0 0 0;
}

.section-header-compact::after {
    top: -10px;
    right: 50%;
    transform: translateX(150px);
    border-top: 3px solid #63AB45;
    border-right: 3px solid #63AB45;
    border-radius: 0 4px 0 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-header-compact .section-title-center,
    .section-our-services .section-header-compact .section-title-white {
        font-size: 32px;
        letter-spacing: 2px;
        padding-bottom: 12px;
    }
    
    .section-header-compact .section-title-center::after,
    .section-our-services .section-header-compact .section-title-white::after {
        width: 60px;
        height: 3px;
    }
    
    .btn-view-more-top,
    .btn-view-more-services {
        padding: 12px 28px;
        font-size: 13px;
        letter-spacing: 1px;
    }
    
    .section-header-compact::before,
    .section-header-compact::after {
        display: none;
    }
}

/* Animation on scroll (optional enhancement) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header-compact {
    animation: fadeInUp 0.8s ease-out;
}

