/*
Theme Name: Google Ads Specialist
Theme URI: http://google-ads-specialist.local/
Author: Jan van der Meer
Author URI: http://google-ads-specialist.local/
Description: Child theme for Twenty Twenty-Five designed for Google Ads Specialist website
Template: twentytwentyfive
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;
}

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: #f8f9fa;
    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: 2px solid #e0e0e0;
}

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

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

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

.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;
    justify-content: space-between;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.filter-option-left {
    display: flex;
    align-items: center;
    flex: 1;
}

.city-link {
    font-size: 0.75rem;
    color: #0073aa;
    text-decoration: none;
    padding: 0.2rem 0.5rem;
    margin-left: 0.5rem;
    background: rgba(0, 115, 170, 0.1);
    border-radius: 4px;
    transition: all 0.2s ease;
}

.city-link:hover {
    background: rgba(0, 115, 170, 0.2);
    transform: translateX(2px);
}

.filter-option:hover {
    background: rgba(0, 115, 170, 0.1);
}

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

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

.filter-option input:checked + span {
    color: #0073aa;
    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: #0073aa;
}

.results-sort select {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    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: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 2rem;
    background: white;
    transition: all 0.3s ease;
    width: 100%;
}

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

/* 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: #f8f9fa;
    padding: 10px;
}

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

.bureau-item .bureau-logo-placeholder {
    background: linear-gradient(135deg, #0073aa 0%, #005a87 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: #0073aa;
}

.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: #0073aa;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 0.9rem;
}

.bureau-item .bureau-link:hover {
    background-color: #005a87;
    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: #28a745;
}

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

.bureau-item .skill-tag {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: #e8f4fd;
    color: #0073aa;
    border: 1px solid #b8ddf8;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
}

.bureau-item .skill-more {
    display: inline-block;
    padding: 0.25rem 0.6rem;
    background: #f8f9fa;
    color: #6c757d;
    border: 1px solid #dee2e6;
    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 #0073aa;
}

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

.city-seo-title {
    font-size: 2rem;
    color: #0073aa;
    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 .entry-header {
    margin-bottom: 2rem;
}

.bureau-single .bureau-meta {
    margin-top: 1rem;
    padding: 1.5rem;
    background-color: #f5f5f5;
    border-radius: 8px;
}

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

.bureau-meta h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #666;
    margin: 0 0 0.5rem 0;
}

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

.bureau-website a {
    color: #0073aa;
    text-decoration: none;
}

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

.bureau-languages,
.bureau-services {
    margin-top: 1.5rem;
}

.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: #0073aa;
    color: white;
}

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

.tag-skill:hover {
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}

.bureau-skills {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.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 #e0e0e0;
}

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

.bureau-navigation {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

/* 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: 4px;
}

.pagination .current {
    background-color: #0073aa;
    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: #0073aa;
}

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

.menu-item-bureau-aanmelden a:hover {
    background: linear-gradient(135deg, #005a87 0%, #004066 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 115, 170, 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 #e0e0e0;
        margin-top: 1rem;
        padding-top: 1rem;
    }

    #primary-menu a {
        padding: 0.75rem 0;
        border-bottom: 1px solid #f0f0f0;
    }

    #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;
}

.bureau-submission-form fieldset {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 2rem;
}

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

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

.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 #ddd;
    border-radius: 4px;
    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: #0073aa;
    box-shadow: 0 0 0 3px rgba(0, 115, 170, 0.1);
}

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

.form-group select {
    cursor: pointer;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.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: #0073aa;
    font-weight: 500;
}

.form-submit {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.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: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.notice-error {
    background: #f8d7da;
    border-color: #dc3545;
    color: #721c24;
}

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

/* Footer Styles */
.site-footer {
    background-color: #333;
    color: #fff;
    margin-top: 4rem;
    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 #555;
}

.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;
}

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

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0073aa 0%, #005a87 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: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: white;
    color: #0073aa;
}

.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: #0073aa;
}

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

.btn-outline:hover {
    background-color: #0073aa;
    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: #0073aa;
}

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

.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: #0073aa;
}

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

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

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

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

.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;
}

.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 h3 {
    margin-bottom: 1rem;
}

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

.news-card h3 a:hover {
    color: #0073aa;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0073aa 0%, #005a87 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-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: 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: #f8f9fa;
    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, #667eea 0%, #764ba2 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;
}