/*
Theme Name: Google Ads Specialist
Theme URI: https://google-ads-specialist.nl/
Author: Jan van der Meer
Author URI: https://google-ads-specialist.nl/
Description: Custom theme designed for Google Ads Specialist website
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: google-ads-specialist
*/

/* Import Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* Custom styles for Google Ads Specialist theme */

/* Base Font Family */
body,
button,
input,
select,
optgroup,
textarea {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

body {
    background-color: rgba(66, 133, 244, 0.05);
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    font-weight: 600;
}

/* Bureau Archive with Filters */
.bureaus-archive .bureaus-content {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

/* Filter Sidebar */
.bureaus-filters {
    background: transparent;
    padding: 1.5rem;
    border-radius: 8px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(66, 133, 244, 0.2);
}

.filter-header h3 {
    margin: 0;
    font-size: 1.25rem;
}

.clear-filters {
    background: #FBBC05;
    color: white;
    border: none;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.clear-filters:hover {
    background: #F9AB00;
}

.filter-group {
    margin-bottom: 1.5rem;
}

.filter-group h4 {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    color: #333;
    font-weight: 600;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.filter-options-scroll {
    max-height: 200px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.filter-options-scroll::-webkit-scrollbar {
    width: 6px;
}

.filter-options-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.filter-options-scroll::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 3px;
}

.filter-options-scroll::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.filter-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.filter-option:hover {
    background: rgba(66, 133, 244, 0.1);
}

.filter-option input[type="checkbox"] {
    margin-right: 0.5rem;
    cursor: pointer;
}

.filter-option span {
    font-size: 0.9rem;
    color: #555;
}

.filter-option-link {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    flex: 1;
}

.filter-option input:checked + .filter-option-link span,
.filter-option input:checked + span {
    color: #4285F4;
    font-weight: 500;
}

/* Results Section */
.bureaus-results {
    min-height: 400px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.results-count {
    margin: 0;
    font-size: 1.1rem;
}

.results-count .count {
    font-weight: bold;
    color: #4285F4;
}

.results-sort select {
    padding: 0.5rem 1rem;
    border: 1px solid rgba(66, 133, 244, 0.2);
    border-radius: 50px;
    background: white;
    font-size: 0.9rem;
    cursor: pointer;
}

/* Bureau Archive - Banner Style */
.bureaus-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.bureau-item {
    display: flex;
    align-items: center;
    gap: 2rem;
    border-radius: 12px;
    padding: 2rem;
    background: white;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.bureau-item:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* Bureau Thumbnail/Logo in Archive */
.bureau-item .bureau-thumbnail,
.bureau-item .bureau-logo-thumbnail,
.bureau-item .bureau-logo-placeholder {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    overflow: hidden;
}

.bureau-item .bureau-thumbnail {
    background: #f8f9fa;
}

.bureau-item .bureau-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bureau-item .bureau-logo-thumbnail {
    background: transparent;
    padding: 0;
}

.bureau-item .bureau-logo-thumbnail .bureau-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bureau-item .bureau-logo-placeholder {
    background: linear-gradient(135deg, #4285F4 0%, #673AB7 100%);
}

.bureau-item .placeholder-logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bureau-item .placeholder-logo span {
    color: white;
    font-size: 36px;
    font-weight: bold;
    text-transform: uppercase;
}

.bureau-item .bureau-content {
    flex: 1;
    min-width: 0;
}

.bureau-item .bureau-title {
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.bureau-item .bureau-title a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.bureau-item .bureau-title a:hover {
    color: #4285F4;
}

.bureau-item .bureau-location {
    margin: 0.5rem 0;
    color: #666;
    font-size: 0.9rem;
}

.bureau-item .bureau-adres,
.bureau-item .bureau-plaats {
    display: block;
    margin: 0.25rem 0;
}

.bureau-item .bureau-excerpt {
    margin: 1rem 0;
    line-height: 1.6;
    color: #555;
    font-size: 0.95rem;
}

.bureau-item .bureau-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.2rem;
    background-color: #4285F4;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.bureau-item .bureau-link:hover {
    background-color: #3367D6;
    transform: translateX(5px);
}

/* Bureau Banner Meta */
.bureau-item .bureau-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0.5rem 0;
    font-size: 0.85rem;
    color: #666;
}

.bureau-item .bureau-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.bureau-item .bureau-size {
    color: #673AB7;
}

/* Contact Info in Bureau Meta */
.bureau-item .bureau-phone-preview a,
.bureau-item .bureau-email-preview a {
    color: inherit;
    text-decoration: none;
}

.bureau-item .bureau-phone-preview a:hover,
.bureau-item .bureau-email-preview a:hover {
    color: #4285F4;
    text-decoration: underline;
}

/* Certifications Preview in Card */
.bureau-item .bureau-certifications-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.75rem 0;
}

.bureau-item .certification-badge {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: #FFF9E6;
    color: #F9AB00;
    border: 1px solid rgba(251, 188, 5, 0.3);
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: help;
    transition: all 0.2s ease;
}

.bureau-item .certification-badge:hover {
    background: #FBBC05;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(251, 188, 5, 0.3);
}

/* Branches Preview in Card */
.bureau-item .bureau-branches-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.75rem 0;
}

.bureau-item .branche-tag {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: #E8F0FE;
    color: #4285F4;
    border: 1px solid rgba(66, 133, 244, 0.2);
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
}

.bureau-item .branche-more {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid rgba(66, 133, 244, 0.2);
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* No Results Message */
.bureaus-grid .no-results {
    text-align: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 8px;
    width: 100%;
}

/* City Landing Page Content */
.city-landing-content {
    margin: 2rem auto 3rem;
    padding: 2.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid #4285F4;
}

.landing-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.city-seo-title {
    font-size: 2rem;
    color: #4285F4;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.city-landing-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.2rem;
}

.city-landing-content ul,
.city-landing-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.city-landing-content li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.city-landing-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.3rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .bureaus-archive .bureaus-content {
        grid-template-columns: 240px 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .bureaus-archive .bureaus-content {
        grid-template-columns: 1fr;
    }
    
    .bureaus-filters {
        position: static;
        margin-bottom: 2rem;
    }
    
    .filter-header {
        cursor: pointer;
    }
    
    /* Bureau banner mobile */
    .bureau-item {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        text-align: center;
    }

    .bureau-item .bureau-thumbnail,
    .bureau-item .bureau-logo-thumbnail,
    .bureau-item .bureau-logo-placeholder {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }

    .bureau-item .bureau-title {
        font-size: 1.3rem;
    }

    .bureau-item .bureau-meta {
        justify-content: center;
    }

    .bureau-item .bureau-skills-preview {
        justify-content: center;
    }
    
    .bureau-item .bureau-meta {
        gap: 1rem;
    }
    
    .filter-group {
        display: none;
    }
    
    .bureaus-filters.active .filter-group {
        display: block;
    }
    
    .results-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

/* Single Bureau Styles */
.bureau-single-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.bureau-content-wrapper {
    min-width: 0;
}

.bureau-single .entry-header {
    margin-bottom: 2rem;
}

.bureau-sidebar {
    position: relative;
}

.bureau-sidebar-sticky {
    position: sticky;
    top: 100px;
}

.bureau-sidebar .sidebar-section {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.bureau-social .social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border: 1px solid rgba(66, 133, 244, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.2s ease;
}

.social-link:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.9rem;
    color: white;
}

.social-linkedin .social-icon {
    background: #0077B5;
}

.social-linkedin:hover {
    border-color: #0077B5;
    background: rgba(0, 119, 181, 0.05);
}

.social-facebook .social-icon {
    background: #1877F2;
}

.social-facebook:hover {
    border-color: #1877F2;
    background: rgba(24, 119, 242, 0.05);
}

.social-instagram .social-icon {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    font-size: 1.1rem;
}

.social-instagram:hover {
    border-color: #DD2A7B;
    background: rgba(221, 42, 123, 0.05);
}

.bureau-meta-info {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(66, 133, 244, 0.1);
    text-align: center;
}

.bureau-meta-info .last-updated {
    margin: 0;
    color: #999;
    font-style: italic;
}

.bureau-meta-info .last-updated small {
    font-size: 0.85rem;
}

.bureau-meta {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(66, 133, 244, 0.1);
}

.bureau-meta h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(66, 133, 244, 0.2);
    font-weight: 600;
}

.bureau-meta .meta-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(66, 133, 244, 0.1);
}

.bureau-meta .meta-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.bureau-meta h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #666;
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.bureau-meta p {
    margin: 0.25rem 0;
    color: #333;
}

.sidebar-subsection {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(66, 133, 244, 0.1);
}

.sidebar-subsection:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-subsection h3 {
    font-size: 1.1rem;
    color: #333;
    margin: 0 0 1rem 0;
    font-weight: 600;
}

.bureau-website a {
    color: #4285F4;
    text-decoration: none;
}

.bureau-website a:hover {
    text-decoration: underline;
}


.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #e0e0e0;
    border-radius: 20px;
    font-size: 0.9rem;
}

.tag-service {
    background-color: #4285F4;
    color: white;
}

.tag-skill {
    background-color: #673AB7;
    color: white;
    cursor: help;
    transition: transform 0.2s ease;
}

.tag-skill:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(103, 58, 183, 0.3);
}

.tag-certification {
    background-color: #FBBC05;
    color: white;
    cursor: help;
    transition: transform 0.2s ease;
}

.tag-certification:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(251, 188, 5, 0.3);
}


.bureau-single .post-thumbnail {
    margin: 2rem 0;
}

.bureau-single .entry-content {
    margin: 2rem 0;
    line-height: 1.8;
}

.bureau-single .entry-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(66, 133, 244, 0.2);
}

.bureau-categories,
.bureau-tags {
    margin: 1rem 0;
}

.bureau-navigation {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(66, 133, 244, 0.2);
}

/* News/Blog Styles */
.nieuws-archive .page-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.nieuws-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.nieuws-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.nieuws-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Pagination Styles */
.pagination {
    margin-top: 3rem;
    text-align: center;
}

.pagination .page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    background-color: #f0f0f0;
    text-decoration: none;
    border-radius: 50px;
}

.pagination .current {
    background-color: #4285F4;
    color: white;
}

.pagination .page-numbers:hover:not(.current) {
    background-color: #e0e0e0;
}

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

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

.site-branding {
    flex: 0 0 auto;
}

.site-title {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.site-title a {
    text-decoration: none;
    color: #333;
}

.site-description {
    margin: 0.5rem 0 0;
    font-size: 0.9rem;
    color: #666;
}

/* Navigation Menu Styles */
.main-navigation {
    flex: 1 1 auto;
    display: flex;
    justify-content: flex-end;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

.menu-toggle-icon {
    display: flex;
    flex-direction: column;
    width: 24px;
    height: 20px;
    justify-content: space-between;
}

.menu-toggle-icon span {
    display: block;
    height: 2px;
    background-color: #333;
    transition: all 0.3s ease;
}

.menu-container {
    display: flex;
    align-items: center;
}

#primary-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
}

#primary-menu li {
    position: relative;
}

#primary-menu a {
    display: block;
    padding: 0.5rem 1rem;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

#primary-menu a:hover,
#primary-menu .current-menu-item a,
#primary-menu .current_page_item a {
    color: #4285F4;
}

/* Special styling for Bureau Aanmelden menu item */
.menu-item-bureau-aanmelden a {
    background: linear-gradient(135deg, #4285F4 0%, #673AB7 100%);
    color: white !important;
    border-radius: 50px;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
}

.menu-item-bureau-aanmelden a:hover {
    background: linear-gradient(135deg, #3367D6 0%, #512DA8 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(66, 133, 244, 0.3);
}

/* Submenu Styles */
#primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    list-style: none;
    margin: 0;
    padding: 0.5rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#primary-menu li:hover .sub-menu {
    opacity: 1;
    visibility: visible;
}

#primary-menu .sub-menu a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .header-inner {
        flex-wrap: wrap;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .menu-container {
        display: none;
        width: 100%;
        margin-top: 1rem;
    }

    .menu-container.toggled {
        display: block;
    }

    #primary-menu {
        flex-direction: column;
        gap: 0;
        border-top: 1px solid rgba(66, 133, 244, 0.2);
        margin-top: 1rem;
        padding-top: 1rem;
    }

    #primary-menu a {
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(66, 133, 244, 0.2);
    }

    #primary-menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        padding-left: 1rem;
    }
}

/* Bureau Submission Form Styles */
.bureau-submission-page {
    padding: 2rem 0;
}

.bureau-submission-page .page-header {
    margin-bottom: 3rem;
    text-align: center;
}

.bureau-submission-page .page-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.bureau-submission-page .page-description {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
    font-size: 1.1rem;
}

.bureau-submission-form {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.bureau-submission-form fieldset {
    background: #fff;
    border: 1px solid rgba(66, 133, 244, 0.2);
    border-radius: 8px;
    padding: 2.5rem;
    margin-bottom: 2rem;
}

.bureau-submission-form legend {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4285F4;
    padding: 0 1rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group input[type="number"],
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(66, 133, 244, 0.2);
    border-radius: 50px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: #fff;
    cursor: text;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #4285F4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    border-radius: 20px;
}

.form-group select {
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    background: #f8f9fa;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.checkbox-label:hover {
    background: #e8f4fd;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 0.5rem;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.9rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked + span {
    color: #4285F4;
    font-weight: 500;
}

.form-submit {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(66, 133, 244, 0.2);
}

.form-note {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.btn-large {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.notice {
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    border-left: 4px solid;
}

.notice-success {
    background: #EDE7F6;
    border-color: #673AB7;
    color: #4527A0;
}

.notice-error {
    background: #FEF7E0;
    border-color: #FBBC05;
    color: #F9AB00;
}

/* Required field asterisk */
.bureau-submission-form label:has(+ input[required])::after,
.bureau-submission-form label:has(+ textarea[required])::after {
    color: #FBBC05;
}

/* Mobile responsiveness for bureau submission form */
@media (max-width: 768px) {
    .bureau-submission-form {
        padding: 0 1rem;
    }

    .bureau-submission-form fieldset {
        padding: 1.5rem;
    }

    .form-row {
        gap: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.5rem;
    }
}

/* Footer CTA Section */
.footer-cta {
    background: linear-gradient(135deg, #4285F4 0%, #673AB7 100%);
    color: white;
    padding: 4rem 2rem;
    margin-top: 4rem;
}

.footer-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.footer-cta-content {
    flex: 1;
}

.footer-cta-content h3 {
    font-size: 2rem;
    margin: 0 0 1rem 0;
    font-weight: 700;
    color: white;
}

.footer-cta-content p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
    line-height: 1.6;
}

.footer-cta-button {
    flex-shrink: 0;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #4285F4;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    background: #f8f8f8;
}

@media (max-width: 768px) {
    .footer-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-cta-content h3 {
        font-size: 1.5rem;
    }

    .footer-cta-content p {
        font-size: 1rem;
    }
}

/* Footer Styles */
.site-footer {
    background-color: #333;
    color: #fff;
    margin-top: 0;
    padding: 2rem 0;
}

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

.footer-navigation {
    margin-bottom: 2rem;
}

#footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

#footer-menu a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer-menu a:hover {
    color: #fff;
}

.site-info {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(66, 133, 244, 0.2);
}

.site-info p {
    margin: 0;
    color: #ccc;
    font-size: 0.9rem;
}

/* Main Content Area */
.site-content {
    min-height: calc(100vh - 300px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

/* Breadcrumb Navigation */
.breadcrumb {
    margin-bottom: 1.5rem;
    padding: 0.75rem 0;
}

.breadcrumb-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    color: #666;
}

.breadcrumb-item::after {
    content: '›';
    margin-left: 0.5rem;
    color: #999;
}

.breadcrumb-item:last-child::after {
    content: '';
    margin-left: 0;
}

.breadcrumb-item a {
    color: #4285F4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #3367D6;
    text-decoration: underline;
}

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

/* Remove padding from news-single since site-content already has it */
.news-single.site-main {
    padding: 0;
}

/* Homepage Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #4285F4 0%, #673AB7 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    margin: -2rem -2rem 4rem -2rem;
}

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

.hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: white;
    color: #4285F4;
}

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

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #4285F4;
}

.btn-outline {
    background-color: transparent;
    color: #4285F4;
    border: 2px solid #4285F4;
}

.btn-outline:hover {
    background-color: #4285F4;
    color: white;
}

.btn-white {
    background-color: white;
    color: #333;
}

.btn-white:hover {
    background-color: #f0f0f0;
}

.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background-color: white;
    color: #4285F4;
}

/* Services Section */
.services-section {
    padding: 4rem 0;
    background-color: transparent;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #333;
}

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

.service-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* Recent Bureaus Section */
.recent-bureaus-section {
    padding: 4rem 0;
}

.bureau-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.bureau-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.bureau-card .bureau-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.bureau-card .bureau-content {
    padding: 1.5rem;
}

.bureau-card h3 {
    margin-bottom: 0.5rem;
}

.bureau-card h3 a {
    color: #333;
    text-decoration: none;
}

.bureau-card h3 a:hover {
    color: #4285F4;
}

.bureau-location {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.read-more {
    color: #4285F4;
    text-decoration: none;
    font-weight: 500;
}

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

/* Recent News Section */
.recent-news-section {
    padding: 4rem 0;
    background-color: transparent;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.news-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.news-card .news-thumbnail img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-card .news-content {
    padding: 1.5rem;
}

.news-meta {
    margin-bottom: 0.5rem;
}

.news-date {
    color: #999;
    font-size: 0.85rem;
}

.news-card h2,
.news-card h3,
.news-card .news-title {
    margin-bottom: 1rem;
}

.news-card h2 a,
.news-card h3 a,
.news-card .news-title a {
    color: #000;
    text-decoration: none;
}

.news-card h2 a:hover,
.news-card h3 a:hover,
.news-card .news-title a:hover {
    color: #000;
    text-decoration: none;
}

.news-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.news-category-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #4285F4 0%, #673AB7 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.section-footer {
    text-align: center;
    margin-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }
}

/* Bureau Logo and Banner Styles */
.bureau-banner {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: -2rem;
    margin-bottom: 3rem;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.bureau-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bureau-header-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.bureau-logo {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    background-color: #f5f5f5;
}

.bureau-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bureau-title-section {
    flex-grow: 1;
}

.bureau-title-section .entry-title {
    margin-top: 0;
    margin-bottom: 1rem;
}

.bureau-excerpt {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .bureau-single-container {
        grid-template-columns: 1fr;
    }

    .bureau-sidebar {
        order: 2;
    }

    .bureau-sidebar-sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .bureau-header-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .bureau-logo {
        margin-bottom: 1rem;
    }

    .bureau-banner {
        height: 250px;
    }
}

/* Bureau Logo in Archive/Overview */
.bureau-logo-thumbnail {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.bureau-logo-thumbnail img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

.bureau-logo-placeholder {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4285F4 0%, #673AB7 100%);
    border-radius: 8px 8px 0 0;
}

.placeholder-logo {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-logo span {
    color: white;
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
}

/* News Single Page Styles */
.news-single {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.news-single .news-single-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin: 2rem 0;
}

.news-single .news-content-wrapper {
    min-width: 0;
}

/* Entry Header - Aligned with Site Header */
.news-single .entry-header {
    margin-bottom: 2rem;
    padding-left: 0;
}

.news-single .entry-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Excerpt Pill Styling */
.news-excerpt-pill {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    box-shadow: none;
    font-weight: 700;
}

.news-excerpt-pill p {
    margin: 0;
    font-weight: 700;
}

.news-single .news-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(66, 133, 244, 0.2);
    font-size: 0.95rem;
    color: #666;
}

.news-single .news-date,
.news-single .news-author {
    display: flex;
    align-items: center;
}

.news-single .post-thumbnail {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-single .post-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.news-single .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.news-single .entry-content p {
    margin-bottom: 1.5rem;
}

.news-single .entry-content h2,
.news-single .entry-content h3,
.news-single .entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #222;
}

.news-single .entry-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(66, 133, 244, 0.2);
}

.news-single .post-categories,
.news-single .post-tags {
    margin: 1rem 0;
}

.news-single .post-navigation {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(66, 133, 244, 0.2);
}

/* News Sidebar */
.news-sidebar {
    position: relative;
}

.news-sidebar-sticky {
    position: sticky;
    top: 100px;
}

.sidebar-section {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sidebar-section h3 {
    margin: 0 0 1.25rem 0;
    font-size: 1.2rem;
    color: #333;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(66, 133, 244, 0.2);
}

/* Tag Cloud in Sidebar */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tag-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 0.9rem;
    background: white;
    border: 1px solid rgba(66, 133, 244, 0.2);
    border-radius: 20px;
    text-decoration: none;
    color: #4285F4;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.tag-item:hover {
    background: #E8F0FE;
    border-color: #4285F4;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(66, 133, 244, 0.15);
}

.tag-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
    height: 20px;
    padding: 0 0.35rem;
    background: #4285F4;
    color: white;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Recent Posts in Sidebar */
.recent-posts-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recent-posts-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(66, 133, 244, 0.2);
}

.recent-posts-list li:last-child {
    border-bottom: none;
}

.recent-posts-list a {
    display: block;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 0.25rem;
    transition: color 0.2s ease;
}

.recent-posts-list a:hover {
    color: #4285F4;
}

.recent-date {
    display: block;
    font-size: 0.8rem;
    color: #999;
}

/* Mobile Responsive for News Single */
@media (max-width: 1024px) {
    .news-single .news-single-container {
        grid-template-columns: 1fr;
    }

    .news-sidebar {
        order: 2;
    }

    .news-sidebar-sticky {
        position: static;
    }
}

@media (max-width: 768px) {
    .news-single .entry-title {
        font-size: 1.8rem;
    }

    .news-excerpt-pill {
        font-size: 1rem;
        padding: 1rem;
    }

    .news-single .entry-content {
        font-size: 1rem;
    }

    .news-single .news-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* News Category Filter */
.news-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    margin-bottom: 3rem;
}

.category-filter-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid rgba(66, 133, 244, 0.2);
    border-radius: 50px;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-filter-item:first-child {
    margin-left: auto;
}

.category-filter-item:hover {
    background: #4285F4;
    border-color: #4285F4;
    color: white;
    transform: translateY(-2px);
}

.category-filter-item.active {
    background: #4285F4;
    border-color: #4285F4;
    color: white;
    font-weight: 600;
}

.category-filter-item .filter-count {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Categories List in Sidebar */
.categories-section {
    margin-top: 2rem;
}

.categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.categories-list li {
    margin-bottom: 0.75rem;
}

.categories-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem;
    background: #f8f9fa;
    border-radius: 50px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.categories-list a:hover {
    background: #4285F4;
    color: white;
}

.categories-list .category-count {
    font-size: 0.85rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .news-category-filter {
        gap: 0.5rem;
    }

    .category-filter-item {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }

    .category-filter-item:first-child {
        margin-left: 0;
        width: 100%;
    }
}/* Deploy trigger */
