/* Service 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; }

/* Page Hero */
.page-hero {
    background: url('../images/bg_body.jpg') repeat;
    padding: 140px 0 60px;
    position: relative;
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero .breadcrumb-nav { margin-bottom: 15px; }

.page-hero .breadcrumb-nav a {
    color: var(--primary);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-hero .breadcrumb-nav span { color: rgba(255,255,255,0.5); margin: 0 10px; }

.page-hero h1 {
    color: #fff;
    font-size: 42px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 15px;
}

.page-hero p { color: rgba(255,255,255,0.7); font-size: 16px; max-width: 700px; margin: 0; }

/* Service Content Section */
.service-content-section { padding: 80px 0; background: var(--light); }

.service-main-content { padding-right: 30px; }

.content-block {
    background: var(--white);
    margin-bottom: 30px;
    overflow: hidden;
}

.content-block img { width: 100%; height: 280px; object-fit: cover; }

.content-block-body { padding: 35px; }

.content-block h2 {
    color: var(--dark);
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 20px;
}

.content-block h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary);
}

.content-block h3 {
    color: var(--dark);
    font-size: 18px;
    font-weight: 700;
    margin: 25px 0 15px;
}

.content-block p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.content-block ul {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.8;
    padding-left: 20px;
    margin-bottom: 15px;
}

.content-block ul li { margin-bottom: 8px; }

/* Sidebar */
.service-sidebar { position: sticky; top: 100px; }

.sidebar-widget {
    background: var(--white);
    margin-bottom: 30px;
}

.sidebar-widget-title {
    background: var(--dark);
    color: #fff;
    padding: 20px 25px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.service-menu { list-style: none; padding: 0; margin: 0; }

.service-menu li { border-bottom: 1px solid var(--border); }

.service-menu li:last-child { border-bottom: none; }

.service-menu li a {
    display: block;
    padding: 15px 25px;
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-menu li a:hover,
.service-menu li.active a {
    background: var(--primary-light);
    color: var(--primary-dark);
    padding-left: 30px;
}

.service-menu li.active a { border-left: 3px solid var(--primary); }

.contact-widget-body { padding: 25px; }

.contact-widget-body p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-btn {
    display: block;
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 15px 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: var(--primary-dark);
    color: #fff;
    text-decoration: none;
}

.phone-number {
    display: block;
    text-align: center;
    padding: 15px 25px;
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.phone-number i { color: var(--primary); margin-right: 10px; }

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--primary);
    text-align: center;
}

.cta-section h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 16px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.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;
}

.btn-dark-custom:hover { background: var(--darker); color: #fff; 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 .tag-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }

.footer-widgets .tag-list li a {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.8);
    padding: 6px 12px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-widgets .tag-list li a:hover { background: var(--primary); color: #fff; }

.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) {
    .page-hero h1 { font-size: 32px; }
    .service-main-content { padding-right: 0; margin-bottom: 40px; }
    .service-sidebar { position: static; }
}

@media (max-width: 767px) {
    .page-hero h1 { font-size: 28px; }
    .cta-section h2 { font-size: 28px; }
    .content-block img { height: 200px; }
}

