/* Genuine Landscapers Stylesheet */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Montserrat', sans-serif;
    color: #2c3e50;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary {
    background-color: #28a745;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #218838;
    transform: translateY(-2px);
}

.btn-accent {
    background-color: #007bff;
    color: #fff;
    border: none;
}

.btn-accent:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.2rem;
}

/* Top Bar */
.top-bar {
    background-color: #2c3e50;
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar-contact span {
    margin-right: 20px;
}

.top-bar-social a {
    color: #fff;
    margin-left: 10px;
    font-size: 1.1rem;
}

.top-bar-social a:hover {
    color: #28a745;
}

/* Header */
.site-header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    max-height: 60px;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #28a745;
}

.has-dropdown {
    position: relative;
}

.dropdown {
    display: none;
    position: absolute;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    list-style: none;
    top: 100%;
    left: 0;
    min-width: 200px;
}

.has-dropdown:hover .dropdown {
    display: block;
}

.dropdown li {
    margin: 0;
}

.dropdown a {
    display: block;
    padding: 10px 15px;
}

.mobile-menu-toggle {
    display: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 5px 0;
    transition: transform 0.3s;
}

.mobile-menu {
    display: none;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mobile-nav-links {
    list-style: none;
    padding: 20px 0;
}

.mobile-nav-links li {
    margin: 10px 0;
}

.mobile-nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    display: block;
    padding: 10px 20px;
}

/* Hero Section */
.hero-section {
    background: url('../images/hero-background.webp') no-repeat center center/cover;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3rem;
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background-color: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

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

.service-icon {
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.service-filter {
    margin-bottom: 2rem;
    text-align: center;
}

.service-filter button {
    padding: 10px 20px;
    margin: 0 5px;
    border: none;
    background-color: #e9ecef;
    cursor: pointer;
    border-radius: 5px;
}

.service-filter button.active {
    background-color: #28a745;
    color: #fff;
}

/* Tips Section */
.tips-section {
    padding: 60px 0;
    background-color: #f1f3f5;
}

.tips-container {
    margin: 2rem 0;
}

.tips-category {
    margin-bottom: 3rem;
}

.tips-category h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.tip-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.tip-card:hover {
    transform: translateY(-5px);
}

.tip-icon {
    font-size: 2rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.read-more-btn {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.read-more-btn:hover {
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background-color: #fff;
}

.reviews-carousel {
    position: relative;
    overflow: hidden;
}

.review-slide {
    display: none;
}

.review-slide.active {
    display: block;
}

.review-content {
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.review-stars {
    color: #f1c40f;
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 500;
}

.carousel-controls {
    text-align: center;
    margin-top: 1rem;
}

.prev-review, .next-review {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin: 0 10px;
}

.carousel-dots {
    display: inline-block;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: #28a745;
}

/* Offers Section */
.offers-section {
    padding: 60px 0;
    background-color: #f1f3f5;
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.offer-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.offer-card:hover {
    transform: translateY(-5px);
}

.offer-expiry {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.offer-cta {
    margin-top: 1rem;
}

/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.footer-about p {
    margin-bottom: 1rem;
}

.footer-social a {
    color: #fff;
    margin-right: 15px;
    font-size: 1.2rem;
}

.footer-social a:hover {
    color: #28a745;
}

.footer-contact p,
.footer-hours p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-newsletter form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-newsletter .form-group {
    display: flex;
    gap: 10px;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.footer-newsletter button {
    padding: 10px 20px;
}

.form-message {
    margin-top: 10px;
}

.success-message {
    color: #28a745;
}

.error-message {
    color: #e74c3c;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom-links a {
    color: #fff;
    margin-left: 20px;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    text-decoration: underline;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28a745;
    color: #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.back-to-top.visible {
    opacity: 1;
}

/* Sitemap */
.sitemap-section {
    padding: 60px 0;
    background-color: #fff;
}

.sitemap-list {
    list-style: none;
    columns: 2;
    gap: 40px;
}

.sitemap-list li {
    margin-bottom: 10px;
}

.sitemap-list a {
    color: #007bff;
    text-decoration: none;
}

.sitemap-list a:hover {
    text-decoration: underline;
}

/* Media Queries */
@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .mobile-menu.active {
        display: block;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .sitemap-list {
        columns: 1;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 0 20px;
    }

    .services-grid,
    .tips-grid,
    .offers-grid {
        grid-template-columns: 1fr;
    }

    .btn-large {
        padding: 10px 20px;
        font-size: 1rem;
    }
}