/* Premium Sections Custom CSS */

/* Global Premium Utilities */
.premium-heading {
    text-align: center;
    margin-bottom: 50px;
}
.premium-heading h2 {
    background-color: #2d6130;
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(45, 97, 48, 0.3);
    margin: 0;
}

/* What We Offer Section */
#what-we-offer {
    padding: 80px 0;
    background-color: #f9fdfa;
}
.offer-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(45, 97, 48, 0.1);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: #2d6130;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: top;
}
.offer-card:hover::before {
    transform: scaleY(1);
}
.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(45, 97, 48, 0.15);
}
.offer-icon {
    font-size: 40px;
    color: #2d6130;
    margin-bottom: 20px;
}
.offer-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
}
.offer-desc {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Counters Section */
#premium-counters {
    background: linear-gradient(135deg, #103314 0%, #1e5c2b 50%, #103314 100%);
    position: relative;
    padding: 70px 0;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}
/* Wavy background effect (pseudo element) */
#premium-counters::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 150%, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
}
.counter-item {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.counter-icon-circle {
    width: 80px;
    height: 80px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.counter-icon-circle img {
    width: 45px;
    height: 45px;
    object-fit: contain;
}
.counter-number {
    font-size: 45px;
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
}
.counter-title {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Why Choose Us Section */
#why-choose-us {
    padding: 80px 0;
    background-color: #ffffff;
}
.wcu-list {
    list-style: none;
    padding: 0;
}
.wcu-list li {
    font-size: 16px;
    color: #444;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    background: #f4f9f5;
    padding: 12px 20px;
    border-radius: 8px;
    transition: background 0.3s ease;
}
.wcu-list li:hover {
    background: #e8f5ea;
}
.wcu-list li i {
    color: #2d6130;
    font-size: 20px;
    margin-right: 15px;
}

.feature-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    border-top: 4px solid #2d6130;
    transition: all 0.3s ease;
}
.feature-box:hover {
    box-shadow: 0 10px 25px rgba(45, 97, 48, 0.15);
    transform: translateY(-5px);
}
.fb-svg-icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
    margin-bottom: 15px;
}
.fb-title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}
.fb-desc {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}
/* Customer Success Section */
#customer-success {
    padding: 80px 0;
    background-color: #ffffff;
}
.cs-image-wrapper {
    position: relative;
    padding: 20px 20px 20px 0;
}
.cs-image {
    width: 100%;
    border-radius: 80px;
    position: relative;
    z-index: 2;
    border: 2px solid #2d6130;
}
.cs-image-bg {
    position: absolute;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    background-color: #2d6130;
    border-radius: 80px;
    z-index: 1;
}
.cs-subtitle {
    color: #2d6130;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.cs-title {
    color: #0b1c3a;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}
.cs-desc {
    color: #64686d;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}
.cs-list {
    list-style: none;
    padding: 0;
}
.cs-list li {
    font-size: 16px;
    color: #64686d;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}
.cs-list li i {
    color: #2d6130;
    font-size: 18px;
    margin-right: 15px;
}

/* Partners Slider Section */
#partners-slider-section {
    padding: 60px 0;
    background-color: #ffffff;
    overflow: hidden;
    border-top: 1px solid #f0f0f0;
}
.partners-slider-container {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.partners-slider-container::before,
.partners-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.partners-slider-container::before {
    left: 0;
    background: linear-gradient(to right, #ffffff, transparent);
}
.partners-slider-container::after {
    right: 0;
    background: linear-gradient(to left, #ffffff, transparent);
}
.partners-track {
    display: flex;
    width: calc(250px * 10); /* 5 unique items + 5 duplicated items */
    animation: scroll-partners 25s linear infinite;
}
.partners-track:hover {
    animation-play-state: paused;
}
.partner-slide {
    width: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
}
.partner-slide img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s ease;
    cursor: pointer;
}
.partner-slide:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.15);
}

@keyframes scroll-partners {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 5)); }
}

/* Footer Associates Section */
#footer-associates {
    background-color: #333333;
    padding: 30px 0;
    text-align: center;
    border-bottom: 2px solid #2d6130;
}
.footer-associates-img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
}
