/* Local SEO Page Styles - Modern Theme */
:root {
    --primary: #a0ce4e;
    --primary-dark: #8bb93d;
    --primary-light: rgba(160, 206, 78, 0.1);
    --dark: #252525;
    --darker: #1a1a1a;
    --text: #333;
    --text-light: #666;
    --light: #f7f7f7;
    --white: #fff;
    --border: #ddd;
}

body { font-family: 'Montserrat', sans-serif; }

/* Local Hero Section with Soil Texture Background */
.local-hero {
    background: url('../images/bg_body.jpg') repeat fixed;
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
}

.local-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.55);
}

.local-hero .container { position: relative; z-index: 2; }

.local-hero .breadcrumb-nav { margin-bottom: 20px; }

.local-hero .breadcrumb-nav a {
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.local-hero .breadcrumb-nav span { color: rgba(255,255,255,0.5); margin: 0 10px; }

.local-hero .location-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.local-hero h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 20px;
    line-height: 1.2;
}

.local-hero h1 .city-name { color: var(--primary); }

.local-hero p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    max-width: 700px;
    margin: 0 0 30px;
    line-height: 1.7;
}

.local-hero .hero-cta {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.local-hero .hero-cta:hover {
    background: #fff;
    color: var(--dark);
    text-decoration: none;
}

/* Stats Bar */
.stats-bar {
    background: var(--primary);
    padding: 40px 0;
}

.stat-item { text-align: center; }

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

/* Content Sections */
.local-content { padding: 80px 0; background: var(--light); }

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: var(--dark);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.content-card {
    background: var(--white);
    height: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.content-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.content-card-body { padding: 30px; }

.content-card h3 {
    color: var(--dark);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.content-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Services Grid */
.services-section { padding: 80px 0; background: var(--white); }

.service-item {
    background: var(--light);
    padding: 30px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: var(--primary-light);
    transform: translateX(10px);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-icon i {
    font-size: 22px;
    color: var(--dark);
}

.service-item h4 {
    color: var(--dark);
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 8px;
}

.service-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--dark);
}

.testimonials-section .section-header h2 { color: #fff; }
.testimonials-section .section-header p { color: rgba(255,255,255,0.7); }

.testimonial-card {
    background: rgba(255,255,255,0.05);
    padding: 35px;
    height: 100%;
    border-left: 3px solid var(--primary);
}

.testimonial-card .stars {
    color: var(--primary);
    font-size: 16px;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

.author-info h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin: 0 0 5px;
}

.author-info span {
    color: var(--primary);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--primary);
    text-align: center;
}

.cta-section h2 {
    color: var(--dark);
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(0,0,0,0.7);
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn-dark-custom {
    display: inline-block;
    background: var(--dark);
    color: #fff;
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-section .btn-dark-custom:hover {
    background: var(--darker);
    color: #fff;
    text-decoration: none;
}

/* Featured Image Section - Dirt Pile */
.featured-image-section {
    position: relative;
    height: 400px;
    background: url('../images/dirt-pile-hero.jpg') center center;
    background-size: cover;
    background-attachment: fixed;
}

.featured-image-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.7) 0%, rgba(37, 37, 37, 0.85) 100%);
}

.featured-image-section .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.featured-image-section h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.featured-image-section p {
    color: rgba(255,255,255,0.85);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.featured-image-section .highlight { color: var(--primary); }

/* Expanded Content Section */
.expanded-content {
    padding: 80px 0;
    background: var(--white);
}

.expanded-content .content-block { margin-bottom: 40px; }

.expanded-content h2 {
    color: var(--dark);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.expanded-content h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary);
}

.expanded-content h3 {
    color: var(--dark);
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px;
}

.expanded-content p {
    color: var(--text);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.expanded-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.expanded-content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: var(--text);
    font-size: 15px;
    line-height: 1.6;
}

.expanded-content ul li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 14px;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--light);
}

.why-choose-section .feature-box {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    height: 100%;
    transition: all 0.3s ease;
}

.why-choose-section .feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.why-choose-section .feature-box .icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--primary);
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-section .feature-box .icon-wrap i {
    font-size: 36px;
    color: var(--dark);
}

.why-choose-section .feature-box h4 {
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-choose-section .feature-box p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Nearby Cities */
.nearby-cities { padding: 60px 0; background: var(--light); }

.nearby-cities h3 {
    color: var(--dark);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.city-links { display: flex; flex-wrap: wrap; gap: 10px; }

.city-links a {
    display: inline-block;
    background: var(--white);
    color: var(--text);
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.city-links a:hover {
    background: var(--primary);
    color: var(--dark);
    border-color: var(--primary);
    text-decoration: none;
}

/* Footer */
footer { background: var(--darker); }

.footer-widgets { padding: 60px 0; }

.footer-widgets h2 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-widgets h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.footer-widgets p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.7; }

.footer-widgets .flickr-list { list-style: none; padding: 0; margin: 0; }

.footer-widgets .flickr-list li { margin-bottom: 8px; }

.footer-widgets .flickr-list li a {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-widgets .flickr-list li a:hover { color: var(--primary); }

.footer-widgets .info-widget .contact-info p { margin-bottom: 10px; }

.footer-widgets .info-widget .contact-info a { color: rgba(255,255,255,0.8); text-decoration: none; }

.footer-widgets .info-widget .contact-info a:hover { color: var(--primary); }

.footer-widgets .info-widget .hours-info ul { list-style: none; padding: 0; margin: 0; }

.footer-widgets .info-widget .hours-info ul li { color: rgba(255,255,255,0.7); font-size: 13px; margin-bottom: 5px; }

.last-line { background: #111; padding: 20px 0; }

.last-line .copyright { color: rgba(255,255,255,0.5); font-size: 13px; margin: 0; }

/* Responsive */
@media (max-width: 991px) {
    .local-hero h1 { font-size: 36px; }
    .stat-number { font-size: 32px; }
    .featured-image-section { height: 350px; background-attachment: scroll; }
    .featured-image-section h2 { font-size: 28px; }
    .why-choose-section .feature-box { margin-bottom: 30px; }
}

@media (max-width: 767px) {
    .local-hero h1 { font-size: 28px; }
    .local-hero { padding: 120px 0 60px; }
    .stat-item { margin-bottom: 30px; }
    .cta-section h2 { font-size: 28px; }
    .featured-image-section { height: 300px; }
    .featured-image-section h2 { font-size: 24px; }
    .featured-image-section p { font-size: 15px; }
    .expanded-content h2 { font-size: 24px; }
}

/* Custom Navigation Styles */
.navbar-default { background: #fff; border: none; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.navbar-brand { padding: 15px; height: auto; }
.navbar-brand img { max-height: none; height: auto; width: auto; }
.navbar-nav > li > a { color: #1a1a1a !important; font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; padding: 30px 18px; transition: all 0.3s ease; position: relative; }
.navbar-nav > li > a:hover, .navbar-nav > li > a.active { color: var(--primary) !important; }
.navbar-nav > li > a::after { content: ''; position: absolute; bottom: 20px; left: 18px; right: 18px; height: 2px; background: var(--primary); transform: scaleX(0); transition: transform 0.3s ease; }
.navbar-nav > li:hover > a::after, .navbar-nav > li > a.active::after { transform: scaleX(1); }
.navbar-nav > li { position: relative; }
ul.drop-down { width: 480px; padding: 20px; display: flex; flex-wrap: wrap; background: #fff; border-top: 3px solid var(--primary); box-shadow: 0 15px 40px rgba(0,0,0,0.15); }
ul.drop-down li { width: 50%; display: block; }
ul.drop-down li a { display: block; padding: 10px 15px; color: #333; font-size: 13px; font-weight: 500; text-transform: none; border-left: 2px solid transparent; transition: all 0.2s ease; }
ul.drop-down li a:hover { color: var(--primary); background: var(--primary-light); border-left-color: var(--primary); }
.top-line { background: var(--dark); padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.top-line .info-list { margin: 0; padding: 0; }
.top-line .info-list li { display: inline-block; margin-right: 30px; color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 500; }
.top-line .info-list li i { color: var(--primary); margin-right: 8px; }
.top-tagline { color: var(--primary); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
@media (max-width: 991px) { ul.drop-down { width: 100%; flex-direction: column; position: relative; padding: 10px 0; box-shadow: none; } ul.drop-down li { width: 100%; } .navbar-nav > li > a::after { display: none; } .top-tagline { display: none; } }

