/* ============================================
   UNI TAXI - ULTRA PREMIUM DESIGN SYSTEM
   Luxury Transportation Experience
   Inspired by: Blacklane, Wheely, Addison Lee
   ============================================ */

:root {
    /* Premium Color Palette */
    --primary-black: #0B0B0B;
    --secondary-black: #1C1C1C;
    --dark-gray: #2A2A2A;
    --medium-gray: #6B6B6B;
    --light-gray: #E8E8E8;
    --ultra-light: #F5F5F5;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    
    /* Subtle Luxury Accents */
    --gold: #C9A55A;
    --gold-light: #D4B06F;
    --champagne: #F0E6D2;
    
    /* Premium Shadows */
    --shadow-subtle: 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.16);
    
    /* Smooth Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Premium Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', sans-serif;
    color: var(--primary-black);
    background-color: var(--white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Font Awesome global rendering fix */
.fa-solid,
.fa-regular,
.fa-brands {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: auto;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
}
    -moz-osx-font-smoothing: grayscale;
    font-weight: 400;
}

/* Premium Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    color: var(--primary-black);
}

/* Performance: Lazy Loading */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded,
img[loading="lazy"]:not([loading]) {
    opacity: 1;
}

h1 { 
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

h2 { 
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
}

h3 { 
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
}

h4 { 
    font-size: 1.5rem;
    font-weight: 600;
}

h5 { 
    font-size: 1.25rem;
    font-weight: 600;
}

h6 { 
    font-size: 1.1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
    font-size: 1.0625rem;
    line-height: 1.8;
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Premium Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
}

.container-wide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Premium Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 3rem;
    max-width: 1440px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-black);
    letter-spacing: -0.03em;
    transition: var(--transition-fast);
    opacity: 1 !important;
    display: inline-block;
}

.logo span {
    color: var(--gold);
    opacity: 1 !important;
}

.logo:hover {
    opacity: 0.8 !important;
}

/* Footer logo - zorg voor zichtbaarheid */
footer .logo,
.footer-section .logo,
.footer-logo {
    color: var(--white) !important;
    opacity: 1 !important;
}

footer .logo span,
.footer-section .logo span,
.footer-logo span {
    color: var(--gold) !important;
    opacity: 1 !important;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--primary-black);
    font-weight: 500;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    position: relative;
    padding: 0.5rem 0;
}

/* Uitzondering voor nav-phone button */
.nav-links a.nav-phone {
    color: var(--white) !important;
    padding: 0.875rem 2rem !important;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-phone {
    background: var(--primary-black) !important;
    color: var(--white) !important;
    padding: 0.875rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9375rem;
    display: inline-flex !important;
    align-items: center;
    gap: 0.625rem;
    letter-spacing: 0.01em;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    white-space: nowrap;
    overflow: visible !important;
    text-overflow: clip !important;
}

.nav-phone:hover {
    background: var(--secondary-black) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Zorg dat tekst in nav-phone altijd wit en zichtbaar is */
.nav-phone,
.nav-phone * {
    color: var(--white) !important;
    opacity: 1 !important;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 26px;
    height: 2px;
    background: var(--primary-black);
    transition: var(--transition-fast);
    border-radius: 2px;
}

/* Ultra Premium Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(11, 11, 11, 0.88) 0%, rgba(28, 28, 28, 0.82) 100%),
                url('../images/hero-mercedes.jpg') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding: 10rem 3rem 8rem;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, 0.25) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 2rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    font-weight: 800;
}

.hero h1 .highlight {
    color: var(--gold-light);
}

.hero-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 3rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
    font-size: 1rem;
}

.hero-features span {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1.25rem 3rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 100px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary-black);
    box-shadow: 0 4px 16px rgba(201, 165, 90, 0.25);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201, 165, 90, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--primary-black);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-dark:hover {
    background: var(--secondary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Premium Sections */
section {
    padding: var(--spacing-xxl) 0;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
}

.section-title {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1875rem;
    color: var(--medium-gray);
    margin-top: 2rem;
    line-height: 1.7;
    font-weight: 400;
}

.bg-light {
    background: var(--ultra-light);
}

.bg-dark {
    background: var(--primary-black);
    color: var(--white);
}

.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
    color: var(--white);
}

.bg-dark p {
    color: rgba(255, 255, 255, 0.82);
}

/* Premium Cards */
.card {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    height: 100%;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 165, 90, 0.15);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 2rem;
    display: block;
}

.card-icon i {
    color: var(--gold) !important;
    opacity: 1 !important;
    font-size: 3rem !important;
}

.card h3 {
    margin-bottom: 1.25rem;
    color: var(--primary-black);
    font-size: 1.5rem;
}

.card p {
    color: var(--medium-gray);
    line-height: 1.75;
    font-size: 1.0625rem;
}

/* Premium Grid Layouts */
.grid {
    display: grid;
    gap: 2.5rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* USP Section */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: var(--spacing-lg);
}

.usp-item {
    text-align: center;
    padding: 2.5rem 1.5rem;
}

.usp-icon {
    width: 88px;
    height: 88px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.25rem;
    color: var(--white);
    box-shadow: 0 8px 24px rgba(201, 165, 90, 0.2);
}

.usp-icon i {
    color: var(--white) !important;
    font-size: 2.5rem !important;
    opacity: 1 !important;
    margin: 0 !important;
}
}

.usp-item h3 {
    margin-bottom: 1rem;
    font-size: 1.375rem;
}

.usp-item p {
    font-size: 1.0625rem;
    line-height: 1.75;
}

/* Premium Service Cards */
.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card-header {
    background: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 100%);
    color: var(--white);
    padding: 2.5rem;
    text-align: center;
}

.service-card-header h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.service-card-body {
    padding: 2.5rem;
}

.service-card-body ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-card-body li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--medium-gray);
    font-size: 1.0625rem;
}

.service-card-body li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.125rem;
}

/* Premium Reviews */
.review-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow-subtle);
    border-left: 4px solid var(--gold);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.review-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--ultra-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--medium-gray);
}

.review-info h4 {
    margin-bottom: 0.375rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.review-stars {
    color: var(--gold);
    font-size: 1.125rem;
}

.review-text {
    color: var(--medium-gray);
    font-style: italic;
    line-height: 1.8;
    font-size: 1.0625rem;
}

/* Premium Contact Bar */
.contact-bar {
    background: var(--primary-black);
    color: var(--white);
    padding: 1.25rem 0;
    position: sticky;
    bottom: 0;
    z-index: 999;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
}

.contact-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 3rem;
}

.contact-bar .btn {
    padding: 1rem 2.5rem;
}

/* Premium Forms */
.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: var(--primary-black);
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1.125rem 1.5rem;
    border: 1px solid var(--light-gray);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
    color: var(--primary-black);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(201, 165, 90, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Premium Footer */
footer {
    background: var(--primary-black);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    opacity: 1 !important;
}

/* Footer logo styling - als h4 gebruikt */
.footer-section h4:first-child {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 1rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition-fast);
    font-size: 0.9375rem;
}

.footer-section a:hover {
    color: var(--gold-light);
    padding-left: 6px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9375rem;
    position: relative;
    z-index: 1000;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--medium-gray);
    font-size: 0.9375rem;
}

.breadcrumb-list a {
    color: var(--primary-black);
    font-weight: 500;
}

.breadcrumb-list a:hover {
    color: var(--gold);
}

/* Location Badges */
.location-badge {
    display: inline-block;
    background: var(--primary-black);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9375rem;
    margin: 0.375rem;
    letter-spacing: 0.01em;
    transition: var(--transition);
    border: 1px solid transparent;
}

.location-badge:hover {
    background: var(--secondary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Stat Boxes */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin: var(--spacing-lg) 0;
}

.stat-box {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    display: block;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--medium-gray);
    font-size: 1.0625rem;
    font-weight: 500;
}

/* Responsive Design - Mobile First */
@media (max-width: 968px) {
    :root {
        --spacing-xl: 4rem;
        --spacing-xxl: 5rem;
    }

    .container,
    .container-wide {
        padding: 0 2rem;
    }

    nav {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 2.5rem;
        box-shadow: var(--shadow-xl);
        display: none;
        gap: 2rem;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-bar-content {
        flex-direction: column;
        gap: 1.25rem;
        text-align: center;
        padding: 0 2rem;
    }

    .hero {
        min-height: 85vh;
        padding: 8rem 2rem 6rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1.25rem;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .grid {
        gap: 2rem;
    }

    .usp-grid {
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 3.5rem;
        --spacing-xxl: 4rem;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .container,
    .container-wide {
        padding: 0 1.5rem;
    }

    nav {
        padding: 1.25rem 1.5rem;
    }

    section {
        padding: var(--spacing-lg) 0;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .card,
    .service-card-body {
        padding: 2rem;
    }

    .service-card-header {
        padding: 2rem;
    }

    .contact-bar-content {
        padding: 0 1.5rem;
    }

    .footer-content {
        gap: 3rem;
    }
}

/* Premium Scroll Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-1 { margin-top: var(--spacing-xs); }
.mt-2 { margin-top: var(--spacing-sm); }
.mt-3 { margin-top: var(--spacing-md); }
.mb-1 { margin-bottom: var(--spacing-xs); }
.mb-2 { margin-bottom: var(--spacing-sm); }
.mb-3 { margin-bottom: var(--spacing-md); }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.gold-text { color: var(--gold); }
.bold { font-weight: 700; }

/* ===================================
   FONT AWESOME ICON STYLING
   Premium minimal icons for luxury taxi service
   =================================== */

/* Base icon styling */
.fa-solid, .fa-regular {
    font-size: 0.9em;
    margin-right: 0.5rem;
    vertical-align: baseline;
    color: var(--gold);
    opacity: 1 !important;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Icon-only containers (large decorative icons) */
.icon-lg {
    font-size: 2.5rem !important;
    margin: 0;
    display: inline-block;
}

.icon-xl {
    font-size: 3.5rem !important;
    margin: 0;
    display: inline-block;
}

/* Navigation phone icon */
.nav-phone i {
    font-size: 0.95em;
    margin-right: 0.4rem;
    color: var(--white) !important;
    opacity: 1 !important;
}

/* Button icons */
.btn i {
    font-size: 1em;
    margin-right: 0.5rem;
    opacity: 1 !important;
}

.btn-primary i,
.btn-gold i {
    color: var(--white) !important;
}

.btn-secondary i {
    color: var(--gold) !important;
}

/* Hero feature icons */
.hero-features i {
    font-size: 0.85em;
    margin-right: 0.35rem;
    color: var(--gold) !important;
    opacity: 1 !important;
}

/* USP icons - large decorative in golden circles */
/* Icon styling moved to .usp-icon declaration above */

/* Card icons - medium decorative */
/* Icon styling moved to .card-icon declaration above */

/* Service card icons - extra large */
.service-icon i {
    font-size: 5rem !important;
    color: var(--gold) !important;
    margin: 0;
    opacity: 1 !important;
    filter: none !important;
}

/* List item icons */
li i.fa-check,
li i.fa-circle {
    font-size: 0.5em;
    margin-right: 0.75rem;
    color: var(--gold);
    vertical-align: middle;
}

/* Review stars */
.review-stars i {
    font-size: 1em;
    color: var(--gold);
    margin-right: 0.15rem;
}

/* Footer icons */
footer i {
    font-size: 0.9em;
    margin-right: 0.4rem;
    color: var(--gold) !important;
    opacity: 1 !important;
}

/* Subtle gray icons for secondary elements */
.icon-subtle i {
    color: var(--medium-gray);
}

/* Sticky contact bar icon */
.contact-bar i {
    font-size: 1em;
    margin-right: 0.5rem;
    color: var(--white) !important;
    opacity: 1 !important;
}

/* Icon alignment fix */
i.fa-solid, i.fa-regular {
    display: inline-block;
    text-align: center;
}

/* ===================================
   ICON RENDERING FIXES - KRITIEK
   Zorg voor maximale zichtbaarheid
   =================================== */

/* Verwijder alle filters en blend modes die iconen kunnen verbergen */
i, i.fa-solid, i.fa-regular, .fa-solid, .fa-regular {
    mix-blend-mode: normal !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
    filter: none !important;
    backface-visibility: visible !important;
}

/* Zorg dat iconen nooit transparant worden */
.hero i,
.hero-features i,
.service-card i,
.usp-card i,
.feature-item i,
.contact-method i {
    opacity: 1 !important;
    visibility: visible !important;
}

/* Wit iconen op donkere achtergronden */
.hero i,
.hero-content i,
.hero-features i,
.cta i,
.cta-section i,
.contact-bar i,
.nav-phone i,
.btn-primary i,
.btn-gold i {
    color: var(--white) !important;
}

/* Goud iconen op lichte achtergronden */
.service-card i,
.usp-card i,
.feature-item i,
.card-icon i,
.service-icon i {
    color: var(--gold) !important;
}

/* UITZONDERING: USP icons in gouden cirkel zijn WIT */
.usp-icon i {
    color: var(--white) !important;
}

/* Lijst iconen altijd zichtbaar */
li i,
ul i {
    opacity: 1 !important;
    color: var(--gold) !important;
}

/* Footer iconen wit/goud combinatie */
footer i,
footer .fa-solid,
footer .fa-regular {
    color: var(--gold) !important;
    opacity: 1 !important;
}

/* Z-index fix voor iconen */
i {
    z-index: 1;
    position: relative;
}

