/* Global Styles */
:root {
    --primary: #78C841;
    --secondary: #B4E50D;
    --accent: #FF9B2F;
    --accent-red: #FB4141;
    --text: #333333;
    --light-gray: #f5f5f5;
    --white: #ffffff;
    --dark-green: #5a9e2e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary);
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    margin-left: 15px;
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text);
}

.underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    margin: 0 auto;
    border-radius: 2px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 1000;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px; /* Adjust based on your logo's aspect ratio */
    width: auto;
    transition: all 0.3s ease;
}

.logo-img:hover {
    opacity: 0.9;
    transform: scale(1.05);
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    font-weight: 600;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

nav ul li a.active {
    color: var(--primary);
}

nav ul li a.active:after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    width: 220px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    transform: translateY(10px);
    z-index: 1000;
    padding: 10px 0;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    display: block;
    color: var(--text);
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    color: var(--primary);
    background-color: rgba(120, 200, 65, 0.1);
    padding-left: 25px;
}

.dropdown > a {
    display: flex;
    align-items: center;
}

.dropdown > a i {
    margin-left: 5px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.dropdown:hover > a i,
.dropdown.active > a i {
    transform: rotate(180deg);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: var(--text);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 150px 5% 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--light-gray);
}

.hero-content {
    flex: 1;
    padding-right: 50px;
    animation: fadeInLeft 1s ease;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text);
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

.hero-buttons {
    display: flex;
    align-items: center;
}

.hero-image {
    flex: 1;
    animation: fadeInRight 1s ease;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: scale(1.03);
}

/* Features Section */
.features {
    padding: 100px 5%;
    background-color: var(--white);
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 4px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--primary);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--text);
}

/* About Section */
.about {
    padding: 100px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--light-gray);
}

.about-content {
    flex: 1;
    padding-right: 50px;
}

.about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text);
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #666;
}

.about-content ul {
    margin-bottom: 30px;
}

.about-content ul li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.about-content ul li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.2rem;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

/* Stats Section */
.stats {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    justify-content: space-around;
    text-align: center;
    color: white;
}

.stat-item h3 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.2rem;
}

/* Process Section */
.process {
    padding: 100px 5%;
    background-color: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.step-number:after {
    content: '';
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: rgba(120, 200, 65, 0.2);
    border-radius: 50%;
    z-index: -1;
    animation: pulse 2s infinite;
}

.step h3 {
    margin-bottom: 15px;
    color: var(--text);
}

/* Listing Section */
.listing-section {
    padding: 100px 5%;
    background-color: var(--white);
}

.listing-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.listing-image {
    flex: 1;
    padding-right: 50px;
}

.listing-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.listing-image img:hover {
    transform: scale(1.03);
}

.listing-content {
    flex: 1;
}

.listing-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text);
}

.listing-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #666;
}

.listing-features {
    margin: 25px 0;
}

.listing-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.listing-features li i {
    color: var(--primary);
    margin-right: 10px;
    font-size: 1.2rem;
}

@media (max-width: 992px) {
    .listing-container {
        flex-direction: column;
    }

    .listing-image {
        padding-right: 0;
        margin-bottom: 50px;
        width: 100%;
    }

    .listing-content {
        text-align: center;
    }

    .listing-features li {
        justify-content: center;
    }
}

/* CTA Section */
.cta {
    padding: 100px 5%;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Styles */
footer {
    background-color: #222;
    color: #ddd;
    font-size: 0.95rem;
}

.footer-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 60px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-about {
    margin-bottom: 20px;
    line-height: 1.7;
    color: #aaa;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3:after,
.footer-services h3:after,
.footer-contact h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--secondary));
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-services li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-services a {
    color: #aaa;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a:hover,
.footer-services a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-links i,
.footer-services i {
    margin-right: 8px;
    font-size: 0.7rem;
    color: var(--primary);
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    color: #aaa;
    line-height: 1.6;
}

.footer-contact i {
    margin-right: 12px;
    color: var(--primary);
    font-size: 1rem;
    margin-top: 3px;
}

.footer-bottom {
    background-color: #111;
    padding: 20px 5%;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-bottom p {
    color: #aaa;
    margin-bottom: 10px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #aaa;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Responsive Footer */
@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .footer-bottom p {
        margin-bottom: 0;
    }
}

@media (max-width: 600px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links h3,
    .footer-services h3,
    .footer-contact h3 {
        margin-bottom: 15px;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
    }
}

/* Animations */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 1;
    }
    70% {
        transform: scale(1.1);
        opacity: 0.5;
    }
    100% {
        transform: scale(0.95);
        opacity: 1;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about {
        flex-direction: column;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .about-content ul li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    nav ul {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: all 0.5s ease;
    }

    nav ul.active {
        left: 0;
    }

    nav ul li {
        margin: 15px 0;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background-color: rgba(0, 0, 0, 0.05);
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .hamburger.active .line2 {
        opacity: 0;
    }

    .hamburger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .btn-secondary {
        margin-left: 0;
        margin-top: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stats {
        flex-direction: column;
    }

    .stat-item {
        margin-bottom: 30px;
    }
}

/* Service Page Specific Styles */
.service-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 150px 5% 100px;
    color: white;
    text-align: center;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.service-intro {
    padding: 80px 5%;
    text-align: center;
    background-color: #f9f9f9;
}

.service-intro p {
    max-width: 800px;
    margin: 20px auto;
    font-size: 1.1rem;
}

.service-features {
    padding: 80px 5%;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-areas {
    padding: 80px 5%;
    background-color: #f9f9f9;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.area-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.area-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.area-card ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.area-card ul li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--primary);
    border-radius: 50%;
}

.service-benefits {
    padding: 80px 5%;
    background-color: white;
}

.service-benefits .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.benefits-content {
    flex: 1;
}

.benefits-image {
    flex: 1;
}

.benefits-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.benefits-content ul {
    margin-top: 20px;
}

.benefits-content ul li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.benefits-content ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
}

.service-process {
    padding: 80px 5%;
    background-color: #f9f9f9;
}

.service-cta {
    padding: 80px 5%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    text-align: center;
}

.service-cta .btn-primary {
    background-color: white;
    color: var(--primary);
    border-color: white;
}

.service-cta .btn-primary:hover {
    background-color: rgba(255,255,255,0.9);
    color: var(--dark-green);
}

.service-cta .btn-secondary {
    color: white;
    border-color: white;
    background-color: transparent;
}

.service-cta .btn-secondary:hover {
    background-color: white;
    color: var(--primary);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .service-cta .btn-primary,
    .service-cta .btn-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-benefits .container {
        flex-direction: column;
    }
    
    .benefits-content,
    .benefits-image {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-secondary {
        margin-top: 15px;
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 2.2rem;
    }
}