/* Green Theme Enhancements */

/* Service Features Section */
.service-feature {
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-feature:hover {
    transform: translateY(-5px);
}

/* Enhanced green hover animation for feature cards */
@keyframes greenPulseIcon {
    0% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(46, 204, 113, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 204, 113, 0); }
}

.feature-card:hover .feature-icon {
    animation: greenPulseIcon 1.5s infinite;
}

.service-feature img,
.service-feature .icon-circle {
    background-color: #f8f9fa;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-feature:hover img,
.service-feature:hover .icon-circle {
    background-color: rgba(46, 204, 113, 0.1);
    border-color: #2ecc71;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
    transform: scale(1.1);
}

.service-feature .icon-circle i {
    font-size: 32px;
    color: #27ae60;
}

/* Stats Section */
.stats-item {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.stats-item:hover {
    transform: translateY(-5px);
}

.stats-item i,
.stats-item .icon {
    color: #2ecc71;
    font-size: 36px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.stats-item:hover i,
.stats-item:hover .icon {
    transform: scale(1.2);
    color: #27ae60;
}

.stats-item .number {
    font-size: 48px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.stats-item .number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: #2ecc71;
    border-radius: 3px;
}

/* Animate numbers */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stats-item .number.animate {
    animation: countUp 1s forwards;
}

/* Animate icons */
@keyframes iconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(46, 204, 113, 0); }
    100% { transform: scale(1); }
}

.stats-item i.animate,
.stats-item .icon.animate {
    animation: iconPulse 2s infinite;
}

/* Icon color adjustments */
.service-feature img,
.stats-item img,
.icon-circle img {
    filter: hue-rotate(85deg) saturate(1.2);
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    color: #27ae60;
}

h2 {
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #2ecc71;
    border-radius: 3px;
}

.section-intro {
    color: #219653;
}

/* Buttons */
.btn {
    background: var(--primary-gradient);
    border: none;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(46, 204, 113, 0.4);
}

.highlight-btn {
    background: var(--accent-gradient);
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
}

/* Icons */
.fas, .fab, .far {
    color: #27ae60;
}

.service-card i, .feature-list i, .includes-list i {
    color: #2ecc71;
}

/* Cards and Sections */
.service-card:hover {
    border-color: #2ecc71;
    box-shadow: 0 10px 30px rgba(46, 204, 113, 0.15);
}

.pricing-card.highlight-card {
    border-top: 5px solid #2ecc71;
}

.testimonial-card .rating i {
    color: #2ecc71;
}

/* Navigation */
nav ul li a:hover, 
nav ul li a.active {
    color: #2ecc71;
}

nav ul li a::after {
    background-color: #2ecc71;
}

/* Footer */
footer {
    background: linear-gradient(to right, #27ae60, #219653);
}

footer a:hover {
    color: #2ecc71;
}

/* Call to Action */
.cta {
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.9), rgba(39, 174, 96, 0.9)), url('../images/cta-bg.jpg');
}

/* Hero Section */
.hero-content h1 {
    color: #27ae60;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    color: #219653;
}

/* Testimonials */
.slider-dot.active {
    background: #2ecc71;
}

.slider-prev:hover, .slider-next:hover {
    background: #2ecc71;
}

/* Contact Form */
input:focus, textarea:focus, select:focus {
    border-color: #2ecc71;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.2);
}

.form-group.input-focused label {
    color: #27ae60;
}

/* Animations */
@keyframes greenFloat {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); box-shadow: 0 15px 20px rgba(46, 204, 113, 0.2); }
    100% { transform: translateY(0); }
}

.float {
    animation: greenFloat 3s ease-in-out infinite;
}

/* Pricing Toggle */
.toggle-option.active {
    background: #27ae60;
}

/* EPC Rating Colors */
.epc-bar[data-rating="A"] { background-color: #27ae60; }
.epc-bar[data-rating="B"] { background-color: #2ecc71; }
.epc-bar[data-rating="C"] { background-color: #7ed56f; }
