/*
Theme Name: Sparko Electric
Theme URI: https://example.com/sparko-electric
Author: Your Name
Author URI: https://example.com
Description: A highly reusable, modern WordPress theme designed for any service-based business. Features comprehensive Customizer settings, dynamic content management, and industry-agnostic design. Perfect for electrical, plumbing, HVAC, landscaping, construction, cleaning, and any service contractors. 15-20 minute setup time.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: business, electrical, contractor, services, professional, responsive, custom-menu, custom-logo, featured-images, footer-widgets, sticky-post, theme-options, customizer, reusable, multi-industry
Text Domain: sparko-electric
*/

/* ===================================
   CSS Reset & Base Styles
   =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a2849;
    --secondary-color: #f4c542;
    --accent-color: #00a651;
    --text-dark: #1a2849;
    --text-light: #6b7280;
    --white: #ffffff;
    --light-bg: #f9fafb;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.section {
    padding: 80px 0;
}

/* ===================================
   Typography
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.875rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* ===================================
   Header & Navigation
   =================================== */

.site-header {
    background-color: var(--primary-color);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.top-bar {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.875rem;
}

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

.top-bar-left {
    display: flex;
    gap: 30px;
}

.top-bar-left a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left a:hover {
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--white);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.main-navigation {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--white);
    font-size: 1.5rem;
}

.primary-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.primary-menu a:not(.cta-button) {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
}

.primary-menu a:not(.cta-button):hover {
    color: var(--accent-color);
}

.primary-menu a:not(.cta-button)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.primary-menu a:not(.cta-button):hover::after {
    width: 100%;
}

/* Services Dropdown Menu */
.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.menu-item-has-children > a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.menu-item-has-children:hover > a i {
    transform: rotate(180deg);
}

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

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

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px 12px 40px;
    color: var(--text-dark);
    transition: all 0.2s ease;
    margin-left: 15px;
}

.dropdown-item:hover {
    background-color: var(--light-bg);
    color: var(--accent-color);
    margin-left: 20px;
}

.dropdown-item i {
    font-size: 1.125rem;
    width: 24px;
    color: var(--accent-color);
}

.dropdown-item span {
    font-weight: 500;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.primary-menu .cta-button,
.cta-button {
    background-color: var(--secondary-color);
    color: var(--primary-color) !important;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.primary-menu .cta-button::after {
    display: none !important;
}

.primary-menu .cta-button:hover,
.cta-button:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===================================
   Hero Section
   =================================== */

.hero-section {
    background: linear-gradient(135deg, rgba(26, 40, 73, 0.95), rgba(26, 40, 73, 0.85)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTSAxMCAwIEwgMCAwIDAgMTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgyNTUsMjU1LDI1NSwwLjAzKSIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+');
    opacity: 0.5;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text h1 .highlight {
    color: var(--secondary-color);
}

.hero-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-image {
    position: relative;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    margin-top: 30px;
}

.customer-avatars {
    display: flex;
    margin-right: 15px;
}

.customer-avatars img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--white);
    margin-left: -15px;
}

.customer-avatars img:first-child {
    margin-left: 0;
}

.customer-avatars .more-customers {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--text-dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border: 3px solid var(--white);
    margin-left: -15px;
}

.stats-text h4 {
    color: var(--text-dark);
    font-size: 1.25rem;
    margin: 0;
}

.help-box {
    background-color: var(--accent-color);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
}

.help-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.help-text h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin: 0 0 5px 0;
}

.help-text p {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

/* ===================================
   Features Section
   =================================== */

.features-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background-color: rgba(0, 166, 81, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================================
   Services Section
   =================================== */

.services-section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header .label {
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

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

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-content p {
    margin-bottom: 20px;
}

.learn-more {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.learn-more:hover {
    gap: 12px;
}

/* ===================================
   CTA Section
   =================================== */

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), #2d3e5f);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

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

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 40px;
}

/* ===================================
   Footer
   =================================== */

.site-footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about h3 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-widget h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.125rem;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-widget ul li a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 968px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: block;
    }

    .primary-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        padding: 20px 0;
        text-align: center;
    }

    .primary-menu.active {
        display: flex;
    }

    .primary-menu a:not(.cta-button) {
        justify-content: center;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

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

    h2 {
        font-size: 2rem;
    }
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
}

@media (max-width: 640px) {
    .top-bar .container {
        flex-direction: column;
        gap: 10px;
    }

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

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

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

    .hero-buttons {
        flex-direction: column;
    }

    .contact-form-wrapper form {
        padding: 30px 20px !important;
    }

    .post-cta div {
        flex-direction: column !important;
    }
}

/* ===================================
   Privacy Policy Page
   =================================== */

.page-privacy-policy .container {
    max-width: 900px;
}

.page-privacy-policy .page-header {
    margin: 40px 0 20px;
}

.page-privacy-policy .page-title {
    font-size: 2.25rem;
}

.page-privacy-policy .page-content {
    font-size: 1.0625rem;
}

.page-privacy-policy .page-content h2 {
    font-size: 1.75rem;
    margin-top: 28px;
    margin-bottom: 14px;
}

.page-privacy-policy .page-content h3 {
    font-size: 1.375rem;
    margin-top: 24px;
    margin-bottom: 10px;
}

.page-privacy-policy .page-content p {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.page-privacy-policy .page-content strong {
    color: var(--text-dark);
}

.page-privacy-policy .page-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.page-privacy-policy .page-content ul,
.page-privacy-policy .page-content ol {
    list-style: initial;
    margin: 8px 0 18px 1.25rem;
    padding-left: 1rem;
}

.page-privacy-policy .page-content li {
    margin: 6px 0;
    color: var(--text-dark);
}

.page-privacy-policy .page-content blockquote {
    border-left: 4px solid var(--border-color);
    padding-left: 14px;
    color: var(--text-light);
    margin: 16px 0;
}

/* ===================================
   Standard Pages (About, Services, etc.)
   =================================== */

.page-default .container {
    max-width: 900px;
}

.page-default .page-header {
    margin: 40px 0 20px;
}

.page-default .page-title {
    font-size: 2.25rem;
}

.page-default .page-content {
    font-size: 1.0625rem;
}

.page-default .page-content h2 {
    font-size: 1.75rem;
    margin-top: 28px;
    margin-bottom: 14px;
}

.page-default .page-content h3 {
    font-size: 1.375rem;
    margin-top: 24px;
    margin-bottom: 10px;
}

.page-default .page-content p {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.page-default .page-content strong {
    color: var(--text-dark);
}

.page-default .page-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

.page-default .page-content ul,
.page-default .page-content ol {
    list-style: initial;
    margin: 8px 0 18px 1.25rem;
    padding-left: 1rem;
}

.page-default .page-content li {
    margin: 6px 0;
    color: var(--text-dark);
}

.page-default .page-content blockquote {
    border-left: 4px solid var(--border-color);
    padding-left: 14px;
    color: var(--text-light);
    margin: 16px 0;
}

/* ===================================
   Blog Listing (Blog page)
   =================================== */

.posts-list {
    display: grid;
    gap: 20px;
}

.post-card {
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 20px;
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.post-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.post-card h2 {
    margin-bottom: 8px;
}

.post-card h2 a {
    color: var(--text-dark);
    text-decoration: none;
}

.post-card .post-meta {
    color: var(--text-light);
    font-size: 0.9rem;
}

.post-card .post-excerpt {
    margin-top: 10px;
}

.posts-list + .pagination {
    margin-top: 20px;
}

.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.pagination a,
.pagination span {
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.pagination .current {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* ===================================
   Services Page
   =================================== */

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), #2d3e5f);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

.services-page-section {
    padding: 80px 0;
}

.service-icon-large {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color), #00c969);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    border-radius: 15px 15px 0 0;
}

/* ===================================
   Single Service Page
   =================================== */

.service-hero {
    background: linear-gradient(135deg, var(--primary-color), #2d3e5f);
    color: var(--white);
    padding: 80px 0 60px;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-hero-icon {
    width: 100px;
    height: 100px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
}

.service-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-excerpt {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

.service-content-section {
    padding: 80px 0;
}

.service-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
}

.service-main-content {
    background-color: var(--white);
}

.service-featured-image {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
}

.service-featured-image img {
    width: 100%;
    height: auto;
}

.service-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.service-description h2,
.service-description h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.service-description ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-description li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.service-features {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
    margin-top: 40px;
}

.service-features h3 {
    font-size: 1.75rem;
    margin-bottom: 25px;
}

.features-list {
    display: grid;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.feature-item span {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--text-dark);
}

.service-sidebar {
    position: relative;
}

.sidebar-widget {
    background-color: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
    position: sticky;
    top: 100px;
}

.sidebar-widget h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.sidebar-widget p {
    margin-bottom: 20px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.contact-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-detail-item i {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.contact-detail-item h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-detail-item a {
    color: var(--text-dark);
    font-weight: 600;
}

.contact-detail-item a:hover {
    color: var(--accent-color);
}

.contact-detail-item p {
    margin: 0;
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.services-list {
    list-style: none;
}

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

.services-list li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.services-list li a:hover {
    background-color: var(--light-bg);
    color: var(--accent-color);
    transform: translateX(5px);
}

.services-list li a i {
    font-size: 1rem;
    color: var(--accent-color);
    width: 20px;
}

/* ===================================
   Service Page Responsive
   =================================== */

@media (max-width: 968px) {
    .service-layout {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        order: -1;
    }

    .sidebar-widget {
        position: static;
    }

    .service-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    /* Mobile dropdown menu adjustments */
    .menu-item-has-children {
        width: 100%;
        text-align: center;
    }

    .menu-item-has-children > a {
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        margin-top: 10px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .menu-item-has-children:hover .dropdown-menu,
    .menu-item-has-children.active .dropdown-menu {
        max-height: 500px;
    }

    .dropdown-item {
        padding: 10px 15px;
        justify-content: center;
        margin-left: 0;
    }
}

@media (max-width: 640px) {
    .service-hero h1 {
        font-size: 2rem;
    }

    .service-features {
        padding: 25px;
    }

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

/* ===================================
   Breadcrumbs (SEO Enhancement)
   =================================== */

.breadcrumbs {
    padding: 15px 0;
    background-color: var(--light-bg);
    font-size: 0.875rem;
    margin-bottom: 30px;
}

.breadcrumbs a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--primary-color);
}

.breadcrumbs i {
    color: var(--text-light);
    font-size: 0.75rem;
    margin: 0 8px;
}

.breadcrumbs span {
    color: var(--text-dark);
    font-weight: 500;
}

/* Breadcrumbs container for service and page templates */
.breadcrumb-wrapper {
    padding: 20px 0 10px;
}

.breadcrumb-wrapper .container {
    max-width: 1200px;
}




