/* SafeTrips Shortcodes Styling */

.safetrips-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: #262626;
}

.section-header p {
    font-size: 1.125rem;
    color: #666666;
}

/* Services Section */
.safetrips-services {
    padding: 6rem 0;
    background: #FFFFFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 2px solid #E0E0E0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border-color: #FAB702;
}

.service-card.featured {
    border-color: #FAB702;
    border-width: 3px;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -42px;
    background: #FAB702;
    color: #262626;
    padding: 0.6rem 3.2rem;
    font-weight: 700;
    font-size: 0.75rem;
    transform: rotate(45deg);
    z-index: 10;
    text-transform: uppercase;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.service-image {
    height: 220px;
    overflow: hidden;
    background: #F5F5F5;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    color: #262626;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-intro {
    color: #333333;
    margin-bottom: auto;
    font-weight: 400;
    line-height: 1.7;
    padding-bottom: 2rem;
}

.service-content .btn {
    width: 100%;
    margin-top: 2rem;
}

/* Additional Services Section - List Style */
.additional-services {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #E0E0E0;
}

.additional-services h3 {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #262626;
    margin-bottom: 2rem;
}

.services-grid-small {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    max-width: 900px;
    margin: 0 auto;
}

.service-card-small {
    background: #F9F9F9;
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #E0E0E0;
    display: flex;
    flex-direction: column;
}

.service-card-small:hover {
    background: #FFFFFF;
    border-color: #FAB702;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.service-image-small {
    display: none;
}

.service-content-small {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-content-small h4 {
    color: #262626;
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-content-small h4::before {
    content: "→";
    color: #FAB702;
    font-size: 1.25rem;
    font-weight: 700;
}

.service-content-small p {
    color: #666666;
    margin: 0 0 auto 0;
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
}

.service-content-small .btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    margin-top: 1rem;
    align-self: flex-start;
}

/* How It Works Section */
.safetrips-how-it-works {
    padding: 6rem 0;
    background: #F5F5F5;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.step {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #FAB702;
    color: #262626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.step-icon {
    font-size: 3rem;
    margin: 2rem 0;
}

.step h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #262626;
}

.step p {
    color: #666666;
    margin-bottom: 0;
    line-height: 1.6;
}

.cta-center {
    text-align: center;
}

/* Buttons */
.safetrips-services .btn,
.safetrips-how-it-works .btn,
.safetrips-reviews .btn,
.safetrips-process .btn,
.safetrips-pricing .btn,
.safetrips-vliegveld-voordelen .btn,
.safetrips-autotransport-voordelen .btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.safetrips-services .btn-primary,
.safetrips-how-it-works .btn-primary,
.safetrips-reviews .btn-primary,
.safetrips-process .btn-primary,
.safetrips-pricing .btn-primary,
.safetrips-vliegveld-voordelen .btn-primary,
.safetrips-autotransport-voordelen .btn-primary {
    background: #FAB702;
    color: #262626;
    border-color: #FAB702;
}

.safetrips-services .btn-primary:hover,
.safetrips-how-it-works .btn-primary:hover,
.safetrips-reviews .btn-primary:hover,
.safetrips-process .btn-primary:hover,
.safetrips-pricing .btn-primary:hover,
.safetrips-vliegveld-voordelen .btn-primary:hover,
.safetrips-autotransport-voordelen .btn-primary:hover {
    background: #D4A420;
    border-color: #D4A420;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.safetrips-services .btn-outline,
.safetrips-how-it-works .btn-outline,
.safetrips-reviews .btn-outline,
.safetrips-process .btn-outline,
.safetrips-pricing .btn-outline,
.safetrips-vliegveld-voordelen .btn-outline,
.safetrips-autotransport-voordelen .btn-outline {
    background: transparent;
    color: #262626;
    border-color: #FAB702;
}

.safetrips-services .btn-outline:hover,
.safetrips-how-it-works .btn-outline:hover,
.safetrips-reviews .btn-outline:hover,
.safetrips-process .btn-outline:hover,
.safetrips-pricing .btn-outline:hover,
.safetrips-vliegveld-voordelen .btn-outline:hover,
.safetrips-autotransport-voordelen .btn-outline:hover {
    background: #FAB702;
    color: #262626;
}

.safetrips-services .btn-large,
.safetrips-how-it-works .btn-large,
.safetrips-reviews .btn-large,
.safetrips-process .btn-large,
.safetrips-pricing .btn-large,
.safetrips-vliegveld-voordelen .btn-large,
.safetrips-autotransport-voordelen .btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* Reviews Section */
.safetrips-reviews {
    padding: 6rem 0;
    background: #FFFFFF;
}

.safetrips-reviews .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.safetrips-reviews .review-card {
    background: #F5F5F5;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.safetrips-reviews .review-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.safetrips-reviews .review-stars {
    color: #FAB702;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.safetrips-reviews .review-text {
    font-style: italic;
    color: #333333;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.safetrips-reviews .review-author strong {
    display: block;
    color: #262626;
    margin-bottom: 0.25rem;
}

.safetrips-reviews .review-author span {
    font-size: 0.9rem;
    color: #666666;
}

.safetrips-reviews .review-summary {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 3rem;
    background: #F5F5F5;
    border-radius: 12px;
}

.safetrips-reviews .review-summary-item {
    text-align: center;
}

.safetrips-reviews .summary-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FAB702;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.safetrips-reviews .summary-label {
    font-size: 0.95rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Process Timeline Section */
.safetrips-process {
    padding: 6rem 0;
    background: #F5F5F5;
}

.safetrips-process .process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.safetrips-process .process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.safetrips-process .process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 39px;
    top: 80px;
    width: 2px;
    height: calc(100% + 1rem);
    background: linear-gradient(to bottom, #FAB702, #E0E0E0);
}

.safetrips-process .step-number {
    width: 80px;
    height: 80px;
    background: #FAB702;
    color: #262626;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
}

.safetrips-process .step-content {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.safetrips-process .step-content h3 {
    font-size: 1.5rem;
    color: #262626;
    margin-bottom: 1rem;
}

.safetrips-process .step-content > p {
    color: #333333;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.safetrips-process .step-details {
    list-style: none;
    display: grid;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-left: 0;
    margin-left: 0;
}

.safetrips-process .step-details li {
    color: #333333;
    font-size: 1rem;
    padding-left: 1.5rem;
    text-indent: -1.5rem;
    line-height: 1.6;
}

/* Pricing Section */
.safetrips-pricing {
    padding: 6rem 0;
    background: #FFFFFF;
}

.safetrips-pricing .pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.safetrips-pricing .pricing-card {
    background: #FFFFFF;
    border: 3px solid #FAB702;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.safetrips-pricing .pricing-header {
    background: linear-gradient(135deg, #FAB702 0%, #D4A420 100%);
    padding: 2.5rem;
    text-align: center;
}

.safetrips-pricing .pricing-header h3 {
    color: #262626;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.safetrips-pricing .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
}

.safetrips-pricing .price-amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: #262626;
    line-height: 1;
}

.safetrips-pricing .price-unit {
    font-size: 1.25rem;
    color: #262626;
    font-weight: 600;
}

.safetrips-pricing .pricing-body {
    padding: 2.5rem;
}

.safetrips-pricing .pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.safetrips-pricing .pricing-features li {
    padding: 0.75rem 0;
    color: #333333;
    font-size: 1rem;
    border-bottom: 1px solid #E0E0E0;
}

.safetrips-pricing .pricing-features li:last-child {
    border-bottom: none;
}

.safetrips-pricing .pricing-note {
    background: #F5F5F5;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 1.5rem;
}

.safetrips-pricing .pricing-note strong {
    display: block;
    color: #262626;
    margin-bottom: 0.75rem;
}

.safetrips-pricing .pricing-note ul {
    list-style: none;
    display: grid;
    gap: 0.5rem;
}

.safetrips-pricing .pricing-note li {
    color: #666666;
    font-size: 0.95rem;
}

.safetrips-pricing .pricing-footer {
    padding: 0 2.5rem 2.5rem;
}

.safetrips-pricing .pricing-example {
    background: #F5F5F5;
    padding: 2.5rem;
    border-radius: 16px;
}

.safetrips-pricing .pricing-example h4 {
    font-size: 1.5rem;
    color: #262626;
    margin-bottom: 1.5rem;
}

.safetrips-pricing .example-calc {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.safetrips-pricing .calc-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #E0E0E0;
}

.safetrips-pricing .calc-row:last-child {
    border-bottom: none;
}

.safetrips-pricing .calc-row span {
    color: #333333;
}

.safetrips-pricing .calc-row strong {
    color: #FAB702;
    font-size: 1.25rem;
}

.safetrips-pricing .calc-cta {
    text-align: center;
}

.safetrips-pricing .calc-cta p {
    margin-bottom: 1rem;
    color: #333333;
    font-weight: 600;
}

/* Responsive Design */

/* Tablets and smaller */
@media (max-width: 968px) {
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .safetrips-reviews .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    /* Process Section - Tablet */
    .safetrips-process .process-step {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
    }
    
    .safetrips-process .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .safetrips-process .process-step:not(:last-child)::after {
        left: 29px;
        top: 60px;
    }
    
    .safetrips-process .step-content {
        padding: 1.5rem;
    }
    
    .safetrips-process .step-content h3 {
        font-size: 1.25rem;
    }
    
    /* Pricing Section - Tablet */
    .safetrips-pricing .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .safetrips-pricing .pricing-header {
        padding: 2rem;
    }
    
    .safetrips-pricing .pricing-header h3 {
        font-size: 1.5rem;
    }
    
    .safetrips-pricing .price-amount {
        font-size: 3rem;
    }
    
    .safetrips-pricing .pricing-body {
        padding: 2rem;
    }
    
    .safetrips-pricing .pricing-footer {
        padding: 0 2rem 2rem;
    }
    
    .safetrips-pricing .pricing-example {
        padding: 2rem;
    }
    
    /* General Tablet */
    .safetrips-services,
    .safetrips-how-it-works,
    .safetrips-reviews,
    .safetrips-process,
    .safetrips-pricing {
        padding: 4rem 0;
    }
    
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .safetrips-container {
        padding: 0 1.5rem;
    }
    
    .safetrips-reviews .review-summary {
        flex-direction: column;
        gap: 2rem;
    }
    
    /* Services - Tablet: 1 kolom voor hoofddiensten */
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    /* Additional Services - Tablet */
    .services-grid-small {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Mobile Devices */
@media (max-width: 640px) {
    .safetrips-container {
        padding: 0 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Services - Mobile */
    .safetrips-services,
    .safetrips-how-it-works,
    .safetrips-reviews,
    .safetrips-process,
    .safetrips-pricing {
        padding: 3rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .service-content {
        padding: 1.5rem;
    }
    
    /* Services - Mobile: 1 kolom */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Additional Services - Mobile */
    .additional-services {
        margin-top: 2.5rem;
        padding-top: 2.5rem;
    }
    
    .additional-services h3 {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .services-grid-small {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card-small {
        padding: 1.25rem;
    }
    
    .service-content-small h4 {
        font-size: 1rem;
    }
    
    .service-content-small p {
        font-size: 0.85rem;
    }
    
    .service-content-small .btn-small {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Process Section - Mobile */
    .safetrips-process .process-step {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .safetrips-process .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .safetrips-process .process-step:not(:last-child)::after {
        left: 24px;
        top: 50px;
        height: calc(100% + 0.5rem);
    }
    
    .safetrips-process .step-content {
        padding: 1.25rem;
    }
    
    .safetrips-process .step-content h3 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }
    
    .safetrips-process .step-content > p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .safetrips-process .step-details li {
        font-size: 0.875rem;
    }
    
    /* Pricing Section - Mobile */
    .safetrips-pricing .pricing-grid {
        gap: 2rem;
    }
    
    .safetrips-pricing .pricing-card {
        border-width: 2px;
    }
    
    .safetrips-pricing .pricing-header {
        padding: 1.5rem;
    }
    
    .safetrips-pricing .pricing-header h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .safetrips-pricing .price-amount {
        font-size: 2.5rem;
    }
    
    .safetrips-pricing .price-unit {
        font-size: 1rem;
    }
    
    .safetrips-pricing .pricing-body {
        padding: 1.5rem;
    }
    
    .safetrips-pricing .pricing-features li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
    }
    
    .safetrips-pricing .pricing-note {
        padding: 1.25rem;
    }
    
    .safetrips-pricing .pricing-note strong {
        font-size: 0.95rem;
    }
    
    .safetrips-pricing .pricing-note li {
        font-size: 0.875rem;
    }
    
    .safetrips-pricing .pricing-footer {
        padding: 0 1.5rem 1.5rem;
    }
    
    .safetrips-pricing .pricing-example {
        padding: 1.5rem;
    }
    
    .safetrips-pricing .pricing-example h4 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .safetrips-pricing .example-calc {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .safetrips-pricing .calc-row {
        padding: 0.75rem 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .safetrips-pricing .calc-row span {
        font-size: 0.9rem;
    }
    
    .safetrips-pricing .calc-row strong {
        font-size: 1.1rem;
    }
    
    .safetrips-pricing .calc-cta p {
        font-size: 0.95rem;
    }
    
    /* Buttons - Mobile */
    .safetrips-services .btn,
    .safetrips-how-it-works .btn,
    .safetrips-reviews .btn,
    .safetrips-process .btn,
    .safetrips-pricing .btn,
    .safetrips-vliegveld-voordelen .btn,
    .safetrips-autotransport-voordelen .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .safetrips-services .btn-large,
    .safetrips-how-it-works .btn-large,
    .safetrips-reviews .btn-large,
    .safetrips-process .btn-large,
    .safetrips-pricing .btn-large,
    .safetrips-vliegveld-voordelen .btn-large,
    .safetrips-autotransport-voordelen .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}
/* ===========================================
   Vliegveld Voordelen Section
   =========================================== */

.safetrips-vliegveld-voordelen {
    padding: 6rem 0;
    background: #FFFFFF;
}

/* Voordelen Grid */
.voordelen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.voordeel-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid #E0E0E0;
    transition: all 0.3s ease;
}

.voordeel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: #FAB702;
}

.voordeel-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.voordeel-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #262626;
    margin-bottom: 1rem;
}

.voordeel-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666666;
}

/* Vliegveld Bestellen Section */
.vliegveld-bestellen {
    background: #F8F8F8;
    border-radius: 16px;
    padding: 3rem;
    margin-top: 3rem;
}

.vliegveld-bestellen h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #262626;
    margin-bottom: 1.5rem;
    text-align: center;
}

.bestellen-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 1.5rem;
}

.contact-opties {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #FAB702;
}

.contact-opties p strong {
    color: #262626;
    font-size: 1.125rem;
}

.contact-opties ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.contact-opties ul li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
    color: #444444;
}

.contact-opties .phone-link {
    color: #FAB702;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-opties .phone-link:hover {
    color: #E5A500;
    text-decoration: underline;
}

.contact-opties .beschikbaarheid {
    margin-top: 1rem;
    font-style: italic;
    color: #666666;
    font-size: 0.95rem;
}

.vliegveld-bestellen .cta-center {
    margin-top: 2.5rem;
}

/* Responsive - Vliegveld Voordelen */
@media (max-width: 1024px) {
    .voordelen-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .voordeel-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .safetrips-vliegveld-voordelen {
        padding: 4rem 0;
    }
    
    .voordelen-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .voordeel-icon {
        font-size: 3rem;
    }
    
    .voordeel-card h3 {
        font-size: 1.25rem;
    }
    
    .voordeel-card p {
        font-size: 0.95rem;
    }
    
    .vliegveld-bestellen {
        padding: 2rem 1.5rem;
    }
    
    .vliegveld-bestellen h3 {
        font-size: 1.5rem;
    }
    
    .bestellen-content p {
        font-size: 1rem;
    }
    
    .contact-opties {
        padding: 1.5rem;
    }
    
    .contact-opties ul li {
        font-size: 0.95rem;
    }
}
/* ===========================================
   Autotransport Voordelen Section
   =========================================== */

.safetrips-autotransport-voordelen {
    padding: 6rem 0;
    background: #FFFFFF;
}

.safetrips-autotransport-voordelen .voordelen-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.safetrips-autotransport-voordelen .voordeel-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 2px solid #E0E0E0;
    transition: all 0.3s ease;
}

.safetrips-autotransport-voordelen .voordeel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: #FAB702;
}

.safetrips-autotransport-voordelen .voordeel-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.safetrips-autotransport-voordelen .voordeel-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #262626;
    margin-bottom: 1rem;
}

.safetrips-autotransport-voordelen .voordeel-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666666;
}

.autotransport-bestellen {
    background: #F8F8F8;
    border-radius: 16px;
    padding: 3rem;
    margin-top: 3rem;
}

.autotransport-bestellen h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #262626;
    margin-bottom: 1.5rem;
    text-align: center;
}

.autotransport-bestellen .bestellen-content p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666666;
    margin-bottom: 1.5rem;
}

.autotransport-bestellen .contact-opties {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid #FAB702;
}

.autotransport-bestellen .contact-opties p strong {
    color: #262626;
    font-size: 1.125rem;
}

.autotransport-bestellen .contact-opties ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.autotransport-bestellen .contact-opties ul li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
    color: #444444;
}

.autotransport-bestellen .contact-opties .phone-link {
    color: #FAB702;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.autotransport-bestellen .contact-opties .phone-link:hover {
    color: #E5A500;
    text-decoration: underline;
}

.autotransport-bestellen .contact-opties .beschikbaarheid {
    margin-top: 1rem;
    font-style: italic;
    color: #666666;
    font-size: 0.95rem;
}

.autotransport-bestellen .cta-center {
    margin-top: 2.5rem;
}

@media (max-width: 1024px) {
    .safetrips-autotransport-voordelen .voordelen-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .safetrips-autotransport-voordelen .voordeel-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .safetrips-autotransport-voordelen {
        padding: 4rem 0;
    }
    
    .safetrips-autotransport-voordelen .voordelen-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .safetrips-autotransport-voordelen .voordeel-icon {
        font-size: 3rem;
    }
    
    .safetrips-autotransport-voordelen .voordeel-card h3 {
        font-size: 1.25rem;
    }
    
    .safetrips-autotransport-voordelen .voordeel-card p {
        font-size: 0.95rem;
    }
    
    .autotransport-bestellen {
        padding: 2rem 1.5rem;
    }
    
    .autotransport-bestellen h3 {
        font-size: 1.5rem;
    }
    
    .autotransport-bestellen .bestellen-content p {
        font-size: 1rem;
    }
    
    .autotransport-bestellen .contact-opties {
        padding: 1.5rem;
    }
    
    .autotransport-bestellen .contact-opties ul li {
        font-size: 0.95rem;
    }
}
