/**
 * City Landing Page Styles
 *
 * Follows existing theme design patterns:
 * - Primary: #ffd600 (yellow)
 * - Secondary: #ffc107 (amber)
 * - Dark: #212529
 * - Font: Poppins
 */

/* ==========================================================================
   AOS Animation Override - Ensure all content is fully visible
   ========================================================================== */

.city-hero-section,
.city-hero-section *,
#trust-bar,
#trust-bar *,
#emergency-cta,
#emergency-cta *,
.section-content,
.section-content *,
.services-city-section,
.services-city-section *,
.reviews-section,
.reviews-section *,
.faq-section,
.faq-section *,
#nearby-locations,
#nearby-locations *,
.final-cta-section,
.final-cta-section * {
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

/* ==========================================================================
   City Hero Section - Premium Design
   ========================================================================== */

.city-hero-section {
    position: relative;
    padding: 80px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.city-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/stad-brussel-xl.jpg') center center no-repeat;
    background-size: cover;
    z-index: -2;
}

.city-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(33, 37, 41, 0.95) 0%, rgba(33, 37, 41, 0.85) 50%, rgba(255, 214, 0, 0.2) 100%);
    z-index: -1;
}

.city-hero-content {
    position: relative;
    z-index: 1;
}

/* Badge */
.city-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 200, 83, 0.15);
    border: 1px solid rgba(0, 200, 83, 0.3);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.city-hero-badge span {
    color: #00c853;
    font-size: 13px;
    font-weight: 600;
}

.city-hero-badge-dot {
    width: 10px;
    height: 10px;
    background: #00c853;
    border-radius: 50%;
    -webkit-animation: city-pulse-dot 2s ease-in-out infinite;
    animation: city-pulse-dot 2s ease-in-out infinite;
}

@-webkit-keyframes city-pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

@keyframes city-pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.city-hero-province {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-bottom: 15px;
}

/* Headings */
.city-hero-section h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.city-hero-city {
    display: block;
    background: linear-gradient(135deg, #ffd600, #ffc107);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.city-hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 500px;
}

/* Features */
.city-hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.city-hero-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 14px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.city-hero-features li i {
    color: #ffd600;
    font-size: 16px;
}

.city-hero-features li span {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

/* Actions */
.city-hero-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.city-hero-btn-primary {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #ffd600, #ffc107);
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 214, 0, 0.3);
}

.city-hero-btn-primary i {
    font-size: 24px;
    color: #212529;
}

.city-hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 214, 0, 0.4);
}

.city-hero-btn-text {
    display: flex;
    flex-direction: column;
}

.city-hero-btn-text small {
    font-size: 11px;
    color: rgba(33, 37, 41, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.city-hero-btn-text strong {
    font-size: 20px;
    font-weight: 700;
    color: #212529;
}

.city-hero-btn-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.city-hero-btn-whatsapp i {
    font-size: 22px;
}

.city-hero-btn-whatsapp:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-3px);
}

/* Info Card */
.city-hero-card {
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 28px;
    margin-left: 20px;
}

.city-hero-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.city-hero-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffd600, #ffc107);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-hero-card-icon i {
    font-size: 22px;
    color: #212529;
}

.city-hero-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 4px 0;
}

.city-hero-card-header p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.city-hero-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.city-hero-card-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.city-hero-card-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.city-hero-card-list-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 214, 0, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.city-hero-card-list-icon i {
    font-size: 16px;
    color: #ffd600;
}

.city-hero-card-list-text {
    display: flex;
    flex-direction: column;
}

.city-hero-card-list-text strong {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.city-hero-card-list-text small {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.city-hero-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #ffd600, #ffc107);
    color: #212529;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.city-hero-card-cta i {
    font-size: 18px;
}

.city-hero-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 214, 0, 0.4);
    color: #212529;
}

/* Responsive */
@media (max-width: 1199px) {
    .city-hero-card {
        margin-left: 0;
    }
}

@media (max-width: 991px) {
    .city-hero-section {
        padding: 60px 0;
        min-height: auto;
    }

    .city-hero-background {
        background-image: url('../images/stad-brussel.jpg');
    }

    .city-hero-section h1 {
        font-size: 40px;
    }
}

@media (max-width: 767px) {
    .city-hero-section h1 {
        font-size: 34px;
    }

    .city-hero-features li {
        width: 100%;
    }

    .city-hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .city-hero-btn-primary,
    .city-hero-btn-whatsapp {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .city-hero-section {
        padding: 50px 0;
    }

    .city-hero-section h1 {
        font-size: 28px;
    }

    .city-hero-city {
        font-size: 24px;
    }

    .city-hero-subtitle {
        font-size: 15px;
    }
}

/* Hide legacy #hero on city pages */
#hero {
    display: none !important;
}

/* ==========================================================================
   Sticky CTA Bar (Mobile)
   ========================================================================== */

.sticky-cta-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #212529;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.sticky-cta-mobile a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.3s ease;
}

.sticky-cta-phone {
    background: #ffd600;
    color: #212529;
}

.sticky-cta-phone:hover {
    background: #ffc107;
    color: #212529;
}

.sticky-cta-phone i {
    font-size: 18px;
}

.sticky-cta-whatsapp {
    background: #25D366;
    color: #fff;
}

.sticky-cta-whatsapp:hover {
    background: #128C7E;
    color: #fff;
}

.sticky-cta-whatsapp i {
    font-size: 20px;
}

@media (max-width: 991px) {
    .sticky-cta-mobile.visible {
        display: flex;
    }

    /* Add padding to body when sticky CTA is visible */
    body.has-sticky-cta {
        padding-bottom: 60px;
    }
}

@media (min-width: 992px) {
    .sticky-cta-mobile {
        display: none !important;
    }
}

/* ==========================================================================
   Trust Bar - Premium Design
   ========================================================================== */

#trust-bar {
    background: #212529;
    padding: 0;
    position: relative;
    overflow: hidden;
}

#trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd600, #ffc107, #ffd600);
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px 0;
}

#trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 25px;
}

#trust-bar .trust-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #ffd600, #ffc107);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#trust-bar .trust-item:hover .trust-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 214, 0, 0.4);
}

#trust-bar .trust-icon i {
    font-size: 20px;
    color: #212529;
}

#trust-bar .trust-text {
    display: flex;
    flex-direction: column;
}

#trust-bar .trust-value {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

#trust-bar .trust-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 991px) {
    .trust-bar-inner {
        padding: 15px 0;
    }

    #trust-bar .trust-item {
        padding: 10px 15px;
    }

    #trust-bar .trust-icon {
        width: 42px;
        height: 42px;
    }

    #trust-bar .trust-icon i {
        font-size: 18px;
    }

    #trust-bar .trust-value {
        font-size: 16px;
    }

    .trust-divider:nth-child(6),
    .trust-divider:nth-child(8) {
        display: none;
    }
}

@media (max-width: 767px) {
    .trust-bar-inner {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        padding: 15px 10px;
    }

    .trust-divider {
        display: none;
    }

    #trust-bar .trust-item {
        padding: 15px 12px;
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }

    /* Top row border - items 1 and 3 (dividers are 2, 4, 6) */
    #trust-bar .trust-item:nth-child(1),
    #trust-bar .trust-item:nth-child(3) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    #trust-bar .trust-icon {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
        margin: 0 auto;
    }

    #trust-bar .trust-icon i {
        font-size: 16px;
    }

    #trust-bar .trust-text {
        text-align: center;
    }

    #trust-bar .trust-value {
        font-size: 14px;
    }

    #trust-bar .trust-label {
        font-size: 10px;
    }
}

/* ==========================================================================
   Emergency CTA
   ========================================================================== */

#emergency-cta {
    padding: 30px 0;
    background: #212529;
    color: #fff;
}

#emergency-cta h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #fff;
}

#emergency-cta p {
    margin: 0;
    opacity: 0.8;
    font-size: 16px;
}

#emergency-cta .btn-call-light {
    background: #ffd600;
    color: #212529;
    padding: 12px 30px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

#emergency-cta .btn-call-light:hover {
    background: #ffc107;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    #emergency-cta {
        text-align: center;
    }

    #emergency-cta .text-lg-end {
        text-align: center !important;
    }
}

/* ==========================================================================
   Main Content Section
   ========================================================================== */

.section-content {
    padding: 60px 0;
    background: #fff;
}

.section-content .site-main {
    padding-right: 30px;
}

@media (max-width: 991px) {
    .section-content .site-main {
        padding-right: 15px;
    }
}

/* ==========================================================================
   City Default Content
   ========================================================================== */

.city-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 20px;
}

.city-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #212529;
    margin-top: 30px;
    margin-bottom: 15px;
}

.city-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 10px;
}

.city-content h4 i {
    margin-right: 8px;
}

.city-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Process Steps */
.process-steps {
    margin: 25px 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.process-step:last-child {
    border-bottom: none;
}

.step-number {
    width: 36px;
    height: 36px;
    background: #ffd600;
    color: #212529;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step-content strong {
    display: block;
    color: #212529;
    margin-bottom: 5px;
}

.step-content p {
    margin: 0;
    font-size: 14px;
}

/* Pricing Table */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.pricing-table th,
.pricing-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.pricing-table th {
    background: #212529;
    color: #fff;
    font-weight: 600;
}

.pricing-table td:last-child {
    text-align: right;
    color: #212529;
}

.pricing-table tbody tr:hover {
    background: #f8f9fa;
}

.pricing-note {
    font-size: 13px;
    color: #666;
    background: #f8f9fa;
    padding: 12px 15px;
    margin-top: -10px;
}

.pricing-note i {
    margin-right: 8px;
}

/* Credentials List */
.credentials-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.credentials-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: #212529;
}

.credentials-list li i {
    font-size: 16px;
    flex-shrink: 0;
}

/* Payment Methods */
.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 20px 0;
}

.payment-method {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 12px 18px;
    font-size: 14px;
    color: #212529;
}

.payment-method i {
    color: #ffd600;
    font-size: 18px;
}

@media (max-width: 576px) {
    .payment-methods {
        flex-direction: column;
    }

    .payment-method {
        width: 100%;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 10px;
        font-size: 14px;
    }
}

/* ==========================================================================
   Sidebar - Premium Design
   ========================================================================== */

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

.sidebar-card {
    background: #fff;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: box-shadow 0.3s ease;
}

.sidebar-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.sidebar-card-header {
    background: #212529;
    color: #fff;
    padding: 16px 20px;
    position: relative;
}

.sidebar-card-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #ffd600, #ffc107);
}

.sidebar-card-header h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-card-header h3 i {
    color: #ffd600;
}

.sidebar-card-body {
    padding: 20px;
}

.sidebar-card-body p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* Emergency Contact Card */
.sidebar-card-emergency {
    border: 2px solid #ffd600;
    box-shadow: 0 5px 30px rgba(255, 214, 0, 0.15);
}

.sidebar-card-header-emergency {
    background: linear-gradient(135deg, #212529, #2c3136);
    color: #fff;
    padding: 18px 20px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-card-header-emergency::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #ffd600;
}

.sidebar-card-header-emergency h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card-header-emergency h3 i {
    color: #ffd600;
    font-size: 20px;
}

.emergency-pulse {
    width: 12px;
    height: 12px;
    background: #ffd600;
    border-radius: 50%;
    -webkit-animation: pulse 1.5s ease-in-out infinite;
    animation: pulse 1.5s ease-in-out infinite;
}

@-webkit-keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}

.emergency-text {
    text-align: center;
    font-weight: 600;
    color: #212529 !important;
    font-size: 13px !important;
    background: #f8f9fa;
    padding: 10px;
    margin: 0 0 15px 0 !important;
    border-radius: 4px;
}

.btn-call-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #ffd600, #ffc107);
    color: #212529;
    padding: 16px 20px;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 214, 0, 0.3);
}

.btn-call-sidebar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 214, 0, 0.4);
    color: #212529;
}

.btn-call-sidebar i {
    font-size: 22px;
}

.sidebar-divider {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.sidebar-divider::before,
.sidebar-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #e9ecef;
}

.sidebar-divider span {
    padding: 0 12px;
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
}

.btn-whatsapp-sidebar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 20px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-whatsapp-sidebar:hover {
    background: #128C7E;
    color: #fff;
    transform: translateY(-2px);
}

.btn-whatsapp-sidebar i {
    font-size: 20px;
}

/* Pricing Card */
.sidebar-card-pricing .sidebar-card-header {
    background: linear-gradient(135deg, #212529, #2c3136);
}

.pricing-quick-list {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

.pricing-quick-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
}

.pricing-quick-list li:last-child {
    border-bottom: none;
}

.price-service {
    font-size: 14px;
    color: #212529;
}

.price-amount {
    font-size: 14px;
    font-weight: 700;
    color: #212529;
    background: #f8f9fa;
    padding: 4px 10px;
    border-radius: 4px;
}

.pricing-note-small {
    font-size: 12px !important;
    color: #28a745 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
    gap: 6px;
}

.pricing-note-small i {
    color: #ffd600;
}

/* Sidebar Links - Enhanced */
.sidebar-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-links li {
    border-bottom: 1px solid #e9ecef;
}

.sidebar-links li:last-child {
    border-bottom: none;
}

.sidebar-links li a {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: #212529;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 12px;
}

.sidebar-links li a:hover {
    background: linear-gradient(90deg, #f8f9fa, #fff);
    padding-left: 25px;
}

.sidebar-links li a:hover .service-link-icon {
    background: #ffd600;
    transform: scale(1.1);
}

.sidebar-links li a:hover .service-link-icon i {
    color: #212529;
}

.service-link-icon {
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-link-icon i {
    font-size: 16px;
    color: #ffd600;
    transition: color 0.3s ease;
}

.service-link-text {
    flex: 1;
    font-weight: 500;
}

.sidebar-links .badge-24 {
    background: linear-gradient(135deg, #ffd600, #ffc107);
    color: #212529;
    font-size: 10px;
    padding: 4px 10px;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Werkgebied */
.werkgebied-intro {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500 !important;
    color: #212529 !important;
}

.werkgebied-intro i {
    color: #ffd600;
}

/* ==========================================================================
   WhatsApp Button
   ========================================================================== */

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 10px 20px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: #128C7E;
    color: #fff;
}

/* ==========================================================================
   Services City Section - Premium Design
   ========================================================================== */

.services-city-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #ffd600, #ffc107);
    color: #212529;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-radius: 20px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.section-header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffd600, #ffc107);
    margin: 0 auto;
    border-radius: 2px;
}

/* Services Grid */
.services-grid {
    margin-top: 20px;
}

/* Service Card */
.service-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 12px;
    padding: 30px 25px;
    text-decoration: none;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    transition: all 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd600, #ffc107);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: #ffd600;
}

.service-card:hover::before {
    transform: scaleX(1);
}

/* Primary Service Card (Noodopening) */
.service-card-primary {
    border: 2px solid #ffd600;
    background: linear-gradient(135deg, #fff 0%, #fffef5 100%);
}

.service-card-primary::before {
    transform: scaleX(1);
}

/* Service Badge */
.service-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd600, #ffc107);
    color: #212529;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(255, 214, 0, 0.3);
}

/* Service Icon */
.service-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.service-card-icon i {
    font-size: 32px;
    color: #ffd600;
    transition: all 0.4s ease;
}

.service-card:hover .service-card-icon {
    background: linear-gradient(135deg, #ffd600, #ffc107);
    transform: scale(1.1) rotate(-5deg);
}

.service-card:hover .service-card-icon i {
    color: #212529;
}

.service-card-primary .service-card-icon {
    background: linear-gradient(135deg, #ffd600, #ffc107);
}

.service-card-primary .service-card-icon i {
    color: #212529;
}

/* Service Content */
.service-card-content {
    flex: 1;
}

.service-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.service-card:hover .service-card-content h3 {
    color: #212529;
}

.service-card-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Service Footer */
.service-card-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #e9ecef;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.service-card:hover .service-card-footer {
    opacity: 1;
    transform: translateY(0);
}

.service-card-link-text {
    font-size: 13px;
    font-weight: 600;
    color: #212529;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card-footer i {
    font-size: 12px;
    color: #ffd600;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-footer i {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 991px) {
    .services-city-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-card-icon {
        width: 60px;
        height: 60px;
    }

    .service-card-icon i {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 24px;
    }

    .service-card {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .service-card-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
        margin-bottom: 15px;
    }

    .service-card-icon i {
        font-size: 22px;
    }

    .service-card-content h3 {
        font-size: 14px;
    }

    .service-card-content p {
        font-size: 12px;
        line-height: 1.5;
    }

    .service-card-badge {
        font-size: 9px;
        padding: 4px 8px;
        top: 10px;
        right: 10px;
    }

    .service-card-footer {
        display: none;
    }
}

/* ==========================================================================
   FAQ Section - Premium Design
   ========================================================================== */

#faq,
.faq-section {
    padding: 80px 0;
    background: #fff;
}

/* FAQ Accordion */
.faq-accordion {
    margin-top: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 35px rgba(0, 0, 0, 0.1);
}

.faq-item.active {
    border-color: #ffd600;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 25px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question:not(.collapsed) {
    background: linear-gradient(135deg, #212529, #2c3136);
}

.faq-question:not(.collapsed) .faq-icon {
    background: linear-gradient(135deg, #ffd600, #ffc107);
}

.faq-question:not(.collapsed) .faq-icon i {
    color: #212529;
}

.faq-question:not(.collapsed) .faq-question-text {
    color: #fff;
}

.faq-question:not(.collapsed) .faq-toggle {
    background: rgba(255, 255, 255, 0.1);
}

.faq-question:not(.collapsed) .faq-toggle i {
    color: #ffd600;
    transform: rotate(180deg);
}

.faq-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-icon i {
    font-size: 18px;
    color: #ffd600;
    transition: color 0.3s ease;
}

.faq-question-text {
    flex: 1;
    font-size: 16px;
    font-weight: 600;
    color: #212529;
    transition: color 0.3s ease;
}

.faq-toggle {
    width: 36px;
    height: 36px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-toggle i {
    font-size: 14px;
    color: #212529;
    transition: all 0.3s ease;
}

.faq-answer-content {
    padding: 0 25px 25px 84px;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}

/* FAQ CTA */
.faq-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #212529, #2c3136);
    border-radius: 12px;
    padding: 30px 35px;
    margin-top: 40px;
}

.faq-cta-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 5px 0;
}

.faq-cta-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.faq-cta-buttons {
    display: flex;
    gap: 12px;
}

.btn-faq-call {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ffd600, #ffc107);
    color: #212529;
    padding: 14px 24px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-faq-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 214, 0, 0.4);
    color: #212529;
}

.btn-faq-whatsapp {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-faq-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    color: #fff;
}

/* FAQ Responsive */
@media (max-width: 991px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-cta {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px;
    }

    .faq-cta-buttons {
        width: 100%;
        flex-direction: column;
    }

    .btn-faq-call,
    .btn-faq-whatsapp {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .faq-question {
        padding: 15px 18px;
        gap: 12px;
    }

    .faq-icon {
        width: 38px;
        height: 38px;
    }

    .faq-icon i {
        font-size: 16px;
    }

    .faq-question-text {
        font-size: 14px;
    }

    .faq-toggle {
        width: 30px;
        height: 30px;
    }

    .faq-toggle i {
        font-size: 12px;
    }

    .faq-answer-content {
        padding: 0 18px 20px 68px;
        font-size: 14px;
    }

    .faq-cta-content h3 {
        font-size: 18px;
    }
}

/* ==========================================================================
   Nearby Locations Section
   ========================================================================== */

#nearby-locations {
    padding: 60px 0;
    background: #f8f9fa;
}

#nearby-locations h2 {
    font-size: 32px;
    font-weight: 700;
    color: #212529;
}

#nearby-locations h3 {
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    margin-bottom: 15px;
}

#nearby-locations a {
    color: #212529;
    transition: color 0.3s ease;
}

#nearby-locations a:hover {
    color: #ffc107;
}

#nearby-locations a i {
    color: #ffd600;
    margin-right: 5px;
}

/* Compact nearby cities for sidebar */
.nearby-cities-compact .badge {
    font-weight: 500;
    padding: 6px 12px;
}

.nearby-cities-compact .badge.bg-secondary {
    background: #e9ecef !important;
    color: #212529 !important;
}

.nearby-cities-compact .badge:hover {
    background: #ffd600 !important;
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */

.reviews-section {
    padding: 60px 0;
    background: #fff;
}

.reviews-rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.reviews-rating-summary .stars {
    color: #ffd600;
    font-size: 20px;
}

.reviews-rating-summary .stars i {
    margin: 0 2px;
}

.reviews-rating-summary .rating-text {
    font-size: 16px;
    color: #666;
}

.reviews-rating-summary .rating-text strong {
    color: #212529;
}

@media (max-width: 576px) {
    .reviews-rating-summary {
        flex-direction: column;
        gap: 8px;
    }

    .reviews-rating-summary .stars {
        font-size: 18px;
    }
}

/* ==========================================================================
   Section Titles
   ========================================================================== */

.section-title {
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
}

.section-title p {
    color: #666;
    font-size: 16px;
    margin: 0;
}

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

.final-cta-section {
    padding: 60px 0;
    background: #212529;
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffd600, #ffc107);
}

.final-cta-content {
    text-align: center;
}

.final-cta-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.final-cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #ffd600, #ffc107);
    color: #212529;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    color: #212529;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 214, 0, 0.4);
}

.btn-cta-whatsapp {
    background: #25D366;
    color: #fff;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-cta-whatsapp:hover {
    background: #128C7E;
    color: #fff;
}

@media (max-width: 576px) {
    .final-cta-section h2 {
        font-size: 28px;
    }

    .final-cta-section p {
        font-size: 16px;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-whatsapp {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 991px) {
    .sidebar-sticky {
        position: static;
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    #emergency-cta h2 {
        font-size: 20px;
    }

    .section-title h2,
    #nearby-locations h2,
    .faq-section .section-title h2 {
        font-size: 24px;
    }
}

/* ==========================================================================
   Partners Section
   ========================================================================== */

.partners-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.partners-header {
    text-align: center;
    margin-bottom: 50px;
}

.partners-label {
    display: inline-block;
    background: linear-gradient(135deg, #ffd600, #ffc107);
    color: #212529;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-radius: 20px;
}

.partners-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
}

.partners-header p {
    color: #666;
    font-size: 16px;
    margin-bottom: 20px;
}

.partners-header-line {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffd600, #ffc107);
    margin: 0 auto;
    border-radius: 2px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: center;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100px;
}

.partner-item:hover {
    border-color: #ffd600;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.partner-item img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Partners Responsive */
@media (max-width: 1199px) {
    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 991px) {
    .partners-section {
        padding: 60px 0;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partners-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .partner-item {
        padding: 15px;
        height: 80px;
    }

    .partner-item img {
        max-height: 45px;
    }
}

@media (max-width: 480px) {
    .partners-header h2 {
        font-size: 24px;
    }

    .partners-header p {
        font-size: 14px;
    }
}
/*# sourceMappingURL=city-landing.css.map */