/* REPLACE YOUR ENTIRE CSS WITH THIS CLEAN VERSION */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f0f4f0 0%, #f5f7f5 100%);
    min-height: 100vh;
}

/* CONTAINER STYLES */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 15px 35px rgba(139, 195, 74, 0.15);
    min-height: 100vh;
    position: relative;
}

.container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, #a5c9a5, #b8d4b8, #c8e6c8);
}

/* HEADER STYLES */
.header {
    background: linear-gradient(135deg, #a5c9a5 0%, #b8d4b8 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.header h1 {
    font-size: 4em;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.header .tagline {
    font-size: 1.8em;
    opacity: 0.95;
    font-style: italic;
    position: relative;
    z-index: 2;
}

.logo {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5em;
}

/* MAIN CONTENT */
.main-content {
    padding: 60px 40px;
}

/* SERVICES GRID */
.services-grid {
    display: grid;
    gap: 40px;
    margin-bottom: 60px;
    width: 100%;
}

.service-card {
    background: linear-gradient(135deg, #fefcf0 0%, #faf7e8 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid #f0e68c;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 212, 184, 0.4), transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(139, 195, 74, 0.2);
}

.service-icon {
    font-size: 4em;
    margin-bottom: 25px;
    color: #a5c9a5;
}

.service-card h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #6d7c6d;
}

.service-card p {
    color: #7d8a7d;
    font-size: 1.1em;
    line-height: 1.6;
}

/* FEATURES SECTION */
.features {
    background: #fffef5;
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 50px;
    border-left: 8px solid #a5c9a5;
}

.features h3 {
    color: #6d7c6d;
    margin-bottom: 40px;
    font-size: 2.2em;
    text-align: center;
}

.features-list {
    display: grid;
    gap: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-item:hover {
    background: #fffef0;
    transform: translateX(10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    color: #a5c9a5;
    font-size: 1.8em;
    min-width: 40px;
}

.feature-text {
    font-size: 1.1em;
    color: #6d7c6d;
    font-weight: 500;
}

/* PRICING FEATURE */
.pricing-feature {
    background: linear-gradient(135deg, #a5c9a5 0%, #b8d4b8 100%) !important;
    color: white !important;
    border: 3px solid #8fb48f;
}

.pricing-feature .feature-icon {
    color: white !important;
}

.pricing-feature .feature-text {
    color: white !important;
}

.pricing-feature .feature-text strong {
    font-size: 1.3em;
    display: block;
    margin-bottom: 5px;
}

.pricing-subtext {
    font-size: 0.9em;
    opacity: 0.9;
    font-style: italic;
}

/* SERVICE AREA FEATURE */
.service-area-feature {
    background: linear-gradient(135deg, #6d7c6d 0%, #8a9a8a 100%) !important;
    color: white !important;
    border: 3px solid #5a6a5a;
}

.service-area-feature .feature-icon {
    color: white !important;
}

.service-area-feature .feature-text {
    color: white !important;
    text-align: center;
}

.service-area-feature .feature-text strong {
    font-size: 1.2em;
    display: block;
    margin-bottom: 8px;
}

.service-locations {
    font-size: 0.95em;
    opacity: 0.95;
    line-height: 1.4;
    font-weight: 500;
}

/* CONTACT SECTION */
.contact-section {
    background: linear-gradient(135deg, #a5c9a5 0%, #b8d4b8 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    width: 100%;
}

.contact-section h3 {
    font-size: 2.5em;
    margin-bottom: 40px;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255,255,255,0.2);
    padding: 25px 35px;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 1.2em;
}

.contact-item:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.05);
}

.contact-item span:first-child {
    font-size: 1.5em;
}

.contact-item .phone-number {
    color: #a5c9a5;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
}

.contact-item .phone-number:hover {
    color: #2c3e50;
    text-decoration: underline;
}

.cta-button {
    background: white;
    color: #a5c9a5;
    padding: 20px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.3em;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 20px;
}

.cta-button:hover {
    background: #fffef0;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* TOP CONTACT BAR */
.top-contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.top-contact-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #a5c9a5;
    color: white;
    padding: 10px 0;
    font-size: 1em;
    font-weight: 500;
    width: 100%;
    box-sizing: border-box;
    margin: 0 auto;
}

.top-contact-info a {
    color: white;
    text-decoration: none;
    font-size: 1em;
    font-weight: 500;
    display: inline-block;
    margin: 0 20px;
    transition: color 0.3s ease;
}

.top-contact-info a:hover {
    color: #6d7c6d;
}

/* MEDIA QUERIES */

/* MOBILE - 768px and below */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-item {
        padding: 15px;
    }
    
    .service-area-feature {
        grid-column: auto;
        text-align: center;
    }
    
    .header h1 {
        font-size: 2.5em;
    }
    
    .header .tagline {
        font-size: 1.3em;
    }
    
    .main-content {
        padding: 40px 20px;
    }
    
    .contact-section {
        padding: 60px 20px;
    }
    
    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .top-contact-info {
        flex-direction: column;
        text-align: center;
        padding: 15px 0;
    }
    
    .top-contact-info a {
        margin: 5px 0;
    }
}

/* TABLET - 769px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-area-feature {
        grid-column: 1 / -1;
        text-align: center;
        padding: 35px 40px;
    }
    
    .service-area-feature .feature-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .service-area-feature .feature-text strong {
        font-size: 1.4em;
    }
    
    .service-locations {
        font-size: 1.1em;
        max-width: 600px;
    }
}

/* DESKTOP - 1025px and above */
@media (min-width: 1025px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .features-list {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .service-area-feature {
        grid-column: 1 / -1;
        text-align: center;
        padding: 35px 40px;
    }
    
    .service-area-feature .feature-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .service-area-feature .feature-text strong {
        font-size: 1.4em;
    }
    
    .service-locations {
        font-size: 1.1em;
        max-width: 600px;
    }
}
/* Footer Styles */
.footer-container {
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 20px 0;
    margin-top: 40px;
}

.footer-info {
    text-align: center;
    margin-bottom: 10px;
}

.footer-info a {
    color: #333;
    text-decoration: none;
    margin: 0 10px;
    font-size: 14px;
}

.footer-info a:hover {
    color: #4CAF50;
    text-decoration: underline;
}

.footer-divider {
    color: #999;
    margin: 0 5px;
}

.footer-copyright {
    text-align: center;
    color: #666;
    font-size: 12px;
}

