/* CSS Variables for Mr Green Colors */
:root {
    --primary-green: #85B427;
    --secondary-green: #8ab800;
    --dark-green: #659600;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --blue: #188bf6;
}

/* Base Styles */
*, ::after, ::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

a {
    background-color: transparent;
    text-decoration: none;
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
    color: inherit;
    text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
    outline: 0;
}

a:focus {
    outline: 0;
}


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

.header-container {
    max-width: 1190px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 2rem;
}

.logo {
    flex-shrink: 0;
}

.logo-img {
    height: 58px;
    width: auto;
}

/* Navigation Styles */
.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: flex-end;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    text-decoration: none;
    color: #8ab800;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    display: block;
    padding: 1rem 0;
    padding-left: 0;
    padding-right: 0;
}

.nav-link:focus, .nav-link:hover {
    color: #495057;
    text-decoration: none;
}

@media (min-width: 992px) {
    .nav-link {
        padding-left: 1.125rem;
        padding-right: 1.125rem;
    }
}

.phone-link {
    background-color: var(--primary-green);
    color: var(--white) !important;
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.phone-link:hover {
    background-color: var(--dark-green);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-green);
}

/* Main Content */
main {
    max-width: 1020px;
    margin: 25px auto;
    padding: 1rem 1rem;
    background-color: var(--white);
    min-height: 600px;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 0 0 3em 0;
    overflow: hidden;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('hero.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.1;
}

.hero-content h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
    border: none;
    text-transform: none;
    letter-spacing: normal;
    color: rgba(255, 255, 255, 0.95);
}

/* Tagline Section */
.tagline-section {
    background-color: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
    margin: 25px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tagline-container {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 2rem;
}

.tagline-title {
    color: var(--primary-green);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.tagline-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.tagline-text {
    font-size: 1.3rem;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.tagline-cta {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.tagline-cta:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
}

/* CTA Buttons in content */
.cta-button-container {
    text-align: center;
    margin: 2rem 0;
}

.cta-button {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
}

/* Content Sections */
h2 {
    color: var(--primary-green);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0;
    border-bottom: none;
    text-transform: none;
    letter-spacing: normal;
}

h2:first-of-type {
    margin-top: 0;
}

h3 {
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 2rem 0 1rem 0;
    line-height: 1.3;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
}

ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

ul li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Franchise Section */
.franchise-section {
    background: linear-gradient(135deg, var(--secondary-green), var(--dark-green));
    color: var(--white);
    padding: 4rem 0;
    margin-top: 3rem;
}

.franchise-container {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.franchise-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--white);
    border-bottom: none;
}

.franchise-section p {
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--white);
}

.franchise-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.benefit-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 5px;
    font-weight: 600;
}

.franchise-cta {
    background-color: var(--white);
    color: var(--primary-green);
    padding: 1rem 2rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.franchise-cta:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

/* Footer Styles */
.main-footer {
    background: linear-gradient(135deg, #5b5e5c, #3c3f3d);
    color: var(--white);
    padding: 3rem 0 0 0;
}

.footer-container {
    max-width: 1020px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 0 2rem 2rem 2rem;
}

.footer-section h5 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: var(--primary-green);
}

/* Bottom Footer */
.bottom-footer {
    background-color: #2a2d2b;
    padding: 1rem 0;
    border-top: 1px solid #555;
}

.footer-bottom-container {
    max-width: 1020px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.footer-bottom-container p{
	font-size: .8rem;
	color: #aaa;
}


.footer-bottom-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.7rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-green);
}

/* Keep footer links gray */
.footer-link {
    color: #aaa !important;
}

.footer-link:hover {
    color: #aaa !important;
}

/* Service Overview Styles */
.service-overview {
    background-color: var(--white);
    border: 1px solid var(--bg-light);
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-cta {
    background-color: var(--primary-green);
    color: var(--white);
    padding: 7px 10px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.service-cta:hover {
    background-color: var(--dark-green);
    transform: translateY(-2px);
}



.main-content {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Suburbs Section */
.suburbs-section {
    background-color: var(--white);
    padding: 1rem 0;
    text-align: center;
}

.suburbs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cities-row {
    margin-bottom: 0.5rem;
}

.city-link {
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666;
    text-decoration: none;
}

.suburbs-row {
    line-height: 1.4;
}

.suburb-link {
    font-family: 'Nunito', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #666;
    text-decoration: none;
}

.suburb-link:hover, .city-link:hover {
    color: #333;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
    background-color: #f8f9fa;
    padding: 12px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-container {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 2rem;
}

.breadcrumb-list {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    font-size: 14px;
}

.breadcrumb-list li {
    display: inline-block !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.breadcrumb-item,
.breadcrumb-separator {
    display: inline-block !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.breadcrumb-link {
    color: #2c5f2d;
    text-decoration: none;
    padding: 4px 8px;
    border-radius: 4px;
    transition: background-color 0.2s, color 0.2s;
}

.breadcrumb-link:hover {
    background-color: #e8f5e8;
    color: #1a4f1d;
    text-decoration: none;
}

.breadcrumb-text {
    color: #6c757d;
    padding: 4px 8px;
}

.breadcrumb-item.active .breadcrumb-text {
    color: #495057;
    font-weight: 500;
}

.breadcrumb-separator {
    color: #6c757d;
    margin: 0 8px;
    display: flex;
    align-items: center;
}

.breadcrumb-separator span {
    font-size: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-list {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .franchise-section h2 {
        font-size: 2rem;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Breadcrumb responsive styles */
    .breadcrumb-container {
        padding: 0 15px;
    }
    
    .breadcrumb-list {
        font-size: 13px;
    }
    
    .breadcrumb-separator {
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
