/* Handwerker-Plattform - Design inspiriert von blauarbeit.de */

:root {
    /* Hauptfarben - GELB/SCHWARZ SCHEMA */
    --primary-color: #000000;      /* Schwarz als Hauptfarbe */
    --primary-dark: #1a1a1a;       /* Dunkleres Schwarz */
    --secondary-color: #333333;    /* Dunkelgrau */
    --accent-color: #FFD700;       /* Goldgelb als Hauptakzent */
    --accent-dark: #FFC107;        /* Dunkleres Gelb */
    --success-color: #FFD700;      /* Gelb für Erfolg */
    --danger-color: #FF0000;       /* Rot für Warnungen */
    --warning-color: #FFD700;      /* Gelb für Warnungen */
    --info-color: #FFD700;         /* Gelb für Info */
    
    /* Neutrale Farben */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    
    /* Text Farben - GELB/SCHWARZ für bessere Lesbarkeit */
    --text-primary: #000000;       /* Schwarz für Haupttext */
    --text-secondary: #1a1a1a;     /* Dunkles Schwarz für Sekundärtext */
    --text-muted: #666666;         /* Mittleres Grau */
    --text-on-dark: #FFD700;       /* Gelb auf dunklem Hintergrund */
    --text-on-yellow: #000000;     /* Schwarz auf gelbem Hintergrund */
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Gradient Kombinationen */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    --gradient-light: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

/* =============================================
   BASE STYLES - wie blauarbeit.de
   ============================================= */

* {
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--white);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typography - inspiriert von blauarbeit */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-secondary);
}

/* Links */
a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    flex: 1 0 auto;
}

.container-fluid {
    padding: 0 1rem;
}

/* Main content area */
main {
    flex: 1 0 auto;
}

/* =============================================
   MOBILE RESPONSIVITÄT - blauarbeit.de Style
   ============================================= */

/* Mobile Navigation */
@media (max-width: 991px) {
    .navbar-nav {
        padding-top: 1rem;
        gap: 0.25rem;
    }
    
    .navbar-nav .nav-link {
        text-align: center;
        margin: 0.25rem 0;
    }
    
    .navbar .btn-primary {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
    }
}

/* =============================================
   MOBILE OPTIMIERUNG - Handy-freundlich
   ============================================= */

/* Navigation für Mobile */
@media (max-width: 991px) {
    .navbar-nav {
        padding-top: 1rem;
        gap: 0.25rem;
    }
    
    .navbar-nav .nav-link {
        text-align: center;
        margin: 0.25rem 0;
        padding: 0.75rem 1rem !important;
        font-size: 1rem;
    }
    
    .navbar .btn-primary {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .navbar-toggler {
        padding: 0.5rem;
        font-size: 1.5rem;
        border: 2px solid var(--gray-300);
    }
}

/* Hero Section für Mobile */
@media (max-width: 768px) {
    .hero-section {
        padding: 1.5rem 0;
        min-height: auto;
    }
    
    .hero-form-container {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border-radius: 12px;
    }
    
    .hero-form-container h1 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
        text-align: center;
        line-height: 1.3;
    }
    
    .hero-form .form-control,
    .hero-form .form-select {
        padding: 1rem;
        font-size: 16px; /* Verhindert Zoom auf iOS */
        border-radius: 8px;
        border: 2px solid var(--gray-300);
    }
    
    .hero-form .btn-primary {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        border-radius: 8px;
        margin-top: 1.5rem;
    }
    
    .hero-image-container {
        height: 250px;
        margin-top: 1.5rem;
        border-radius: 12px;
    }
    
    .trust-badge {
        position: static;
        margin-top: 1rem;
        width: 100%;
        min-width: auto;
        padding: 1rem;
        border-radius: 8px;
        text-align: center;
    }
    
    .trust-badge .trust-text {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Sehr kleine Handys */
@media (max-width: 576px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-form-container {
        padding: 1rem;
        margin: 0 -0.5rem 1rem -0.5rem;
    }
    
    .hero-form-container h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-form .form-control,
    .hero-form .form-select {
        padding: 0.875rem;
        font-size: 16px;
    }
    
    .hero-form .btn-primary {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-image-container {
        height: 250px;
        margin-top: 1.5rem;
        border-width: 2px;
    }
    
    .hero-image-container img {
        object-fit: cover;
        border-radius: 6px;
    }
    
    .trust-badge {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .navbar-brand img {
        height: 32px;
    }
    
    .logo-text {
        font-size: 1.25rem;
    }
}

/* Mobile Process Section */
@media (max-width: 768px) {
    .process-section {
        padding: 3rem 0;
    }
    
    .process-step {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .process-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* Mobile Categories */
@media (max-width: 768px) {
    .categories-section {
        padding: 3rem 0;
    }
    
    .category-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Mobile Testimonials */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .testimonial-card::before {
        font-size: 3rem;
        top: -5px;
        left: 1rem;
    }
}

/* Mobile Stats */
@media (max-width: 768px) {
    .stats-section {
        padding: 2rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .search-hero {
        padding: 1rem;
        border-radius: 8px;
    }
    
    .process-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .btn-lg {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* =============================================
   TOPBAR - blauarbeit.de Style
   ============================================= */

.topbar {
    background: var(--accent-color);
    border-bottom: 3px solid var(--primary-color);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-links {
    display: flex;
    gap: 1.5rem;
}

.topbar-link {
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.topbar-link:hover {
    color: var(--white) !important;
    text-decoration: none;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.topbar-auth {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.topbar-welcome {
    color: var(--primary-color);
    font-size: 0.85rem;
    margin-right: 0.5rem;
    font-weight: 600;
}

/* Mobile Topbar */
@media (max-width: 768px) {
    .topbar {
        padding: 0.75rem 0;
    }
    
    .topbar-content {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .topbar-links {
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .topbar-auth {
        gap: 0.75rem;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .topbar-link {
        font-size: 0.85rem;
        padding: 0.25rem 0.5rem;
    }
    
    .topbar-welcome {
        font-size: 0.8rem;
        text-align: center;
        width: 100%;
        margin-bottom: 0.25rem;
    }
}

/* =============================================
   HEADER & NAVIGATION - wie blauarbeit.de
   ============================================= */

.navbar {
    background: var(--primary-color) !important;
    box-shadow: var(--shadow-sm);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--accent-color);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--accent-color) !important;
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--white) !important;
    text-decoration: none;
}

.navbar-brand img {
    height: 40px;
    width: auto;
    margin-right: 0.75rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color) !important;
    margin: 0;
}

/* Navigation Links */
.navbar-nav {
    gap: 0.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--accent-color) !important;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    border-radius: 6px;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: var(--accent-color) !important;
}

/* CTA Button in Navigation */
.navbar .btn-primary {
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    margin-left: 0.5rem;
}

.navbar .btn-primary:hover {
    background: var(--accent-dark) !important;
    border-color: var(--accent-dark) !important;
    transform: translateY(-1px);
}

/* Mobile Navigation */
.navbar-toggler {
    border: 2px solid var(--accent-color) !important;
    padding: 0.5rem 0.75rem;
    background: var(--accent-color) !important;
    font-size: 1.2rem;
    border-radius: 6px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.5) !important;
    outline: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    width: 1.5rem;
    height: 1.5rem;
}

/* =============================================
   FOOTER - blauarbeit.de Style
   ============================================= */

.footer {
    background: var(--primary-color) !important;
    color: var(--accent-color) !important;
    padding: 3rem 0 1rem !important;
    margin-top: auto;
    flex-shrink: 0;
    border-top: 3px solid var(--accent-color);
}

.footer h5 {
    color: var(--accent-color) !important;
    font-weight: 600 !important;
    margin-bottom: 1.5rem !important;
    font-size: 1.1rem !important;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--accent-color) !important;
    text-decoration: none !important;
    font-size: 0.95rem !important;
    transition: color 0.2s ease;
    font-weight: 400 !important;
}

.footer-links a:hover {
    color: var(--white) !important;
    text-decoration: underline !important;
}

.footer-description {
    color: var(--accent-color) !important;
    line-height: 1.4 !important;
    margin-bottom: 2rem !important;
    font-size: 0.8rem !important;
    margin-top: 1rem !important;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo img,
.footer-logo-img {
    height: 45px;
    width: auto;
    margin-right: 0.75rem;
    filter: brightness(0) invert(1);
    display: block;
    max-width: 45px;
    object-fit: contain;
}

/* Logo Icon as text */
.footer-logo-icon {
    width: 45px;
    height: 45px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 900;
    margin-right: 0.75rem;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

/* Fallback if logo doesn't load */
.footer-logo-img:not([src]),
.footer-logo-img[src=""],
.footer-logo img:not([src]),
.footer-logo img[src=""] {
    display: none;
}

.footer-logo-text {
    font-size: 1.4rem !important;
    font-weight: 700 !important;
    color: var(--white) !important;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    transform: translateY(-2px);
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 2rem 0 1rem;
}

.footer-bottom {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-top: 1rem !important;
    border-top: 1px solid rgba(255, 255, 255, 0.2) !important;
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.9) !important;
}

.footer-legal {
    display: flex !important;
    gap: 1.5rem !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.9) !important;
    text-decoration: none !important;
    font-size: 0.9rem !important;
    font-weight: 400 !important;
}

.footer-legal a:hover {
    color: var(--white) !important;
    text-decoration: none !important;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 0.9rem !important;
    margin: 0 !important;
}

/* Mobile Footer - Erweiterte Optimierung */
@media (max-width: 768px) {
    .footer {
        padding: 1.5rem 0 1rem;
        text-align: center;
    }
    
    .footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .footer .row > div {
        margin-bottom: 1.5rem;
    }
    
    .footer .row > div:last-child {
        margin-bottom: 0;
    }
    
    .footer h5 {
        font-size: 1rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .footer-links li {
        margin-bottom: 0.4rem;
    }
    
    .footer-links a {
        font-size: 0.9rem !important;
        padding: 0.25rem 0;
        display: block;
    }
    
    .footer-description {
        font-size: 0.75rem !important;
        line-height: 1.4;
        margin-bottom: 1.5rem;
        margin-top: 1rem;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-logo img,
    .footer-logo-img {
        height: 38px !important;
        width: auto !important;
        max-width: 38px !important;
        display: block !important;
        filter: brightness(0) invert(1) !important;
    }
    
    .footer-logo-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 20px !important;
        margin-right: 0.5rem !important;
    }
    
    .footer-logo-text {
        font-size: 1.1rem !important;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding-top: 1rem;
        margin-top: 1.5rem;
    }
    
    .footer-legal {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .footer-legal a {
        font-size: 0.85rem !important;
        padding: 0.25rem 0.5rem;
    }
    
    .footer-copyright {
        font-size: 0.85rem !important;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
        gap: 0.75rem;
    }
    
    .social-links a {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 1rem 0 0.75rem;
    }
    
    .footer .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .footer .row > div {
        margin-bottom: 1rem;
    }
    
    .footer h5 {
        font-size: 0.95rem !important;
    }
    
    .footer-links a,
    .footer-description {
        font-size: 0.85rem !important;
    }
    
    .footer-legal a {
        font-size: 0.8rem !important;
    }
    
    .footer-copyright {
        font-size: 0.8rem !important;
    }
    
    .social-links a {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

/* =============================================
   HANDWERKER SEITE KOMPONENTEN
   ============================================= */

.benefits-section {
    background: var(--white);
}

.benefit-card {
    padding: 2rem 1.5rem;
    border-radius: 12px;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--gray-200);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), var(--dark-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.benefit-card h4 {
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 1rem;
}

.how-it-works {
    background: var(--gray-50) !important;
}

.step-card {
    padding: 2rem 1.5rem;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.step-card h4 {
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 1rem;
}

.pricing-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 3px solid var(--primary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--accent-color);
    background: var(--accent-color);
    color: var(--primary-color);
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
    border-color: var(--accent-color);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 215, 0, 0.4);
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: var(--primary-color);
    color: var(--accent-color);
    padding: 0.5rem 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    transform: rotate(45deg);
    width: 130px;
    text-align: center;
    border: 2px solid var(--accent-color);
    text-shadow: none;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.price .currency {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price .period {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

/* Featured Card spezielle Farben */
.pricing-card.featured .pricing-header h4,
.pricing-card.featured .price .currency,
.pricing-card.featured .price .amount,
.pricing-card.featured .price .period {
    color: var(--primary-color) !important;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-300);
    display: flex;
    align-items: center;
    color: var(--text-primary);
    font-weight: 500;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--accent-color) !important;
    font-weight: 700;
}

/* Featured Card Features */
.pricing-card.featured .pricing-features li {
    color: var(--primary-color);
    border-bottom-color: rgba(0, 0, 0, 0.2);
    font-weight: 600;
}

.pricing-card.featured .pricing-features li i {
    color: var(--primary-color) !important;
}

.cta-section {
    background: var(--primary-color) !important;
    color: var(--accent-color) !important;
    border-top: 5px solid var(--accent-color);
}

.cta-section h2 {
    color: var(--accent-color) !important;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section p,
.cta-section .lead {
    color: var(--accent-color) !important;
    font-weight: 500;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.cta-section .btn {
    background: var(--accent-color) !important;
    color: var(--primary-color) !important;
    border: 3px solid var(--primary-color) !important;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    text-shadow: none;
}

.cta-section .btn:hover {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border-color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.3);
}

/* Mobile Optimierung für Handwerker Seite */
@media (max-width: 768px) {
    .benefit-card,
    .step-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-card.featured {
        transform: none;
        margin-top: 0;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .price .amount {
        font-size: 2.5rem;
    }
    
    .pricing-badge {
        top: 15px;
        right: -25px;
        padding: 0.4rem 1.5rem;
        font-size: 0.8rem;
    }
}

/* =============================================
   ALLGEMEINE MOBILE OPTIMIERUNG
   ============================================= */

/* Touch-freundliche Elemente */
@media (max-width: 768px) {
    /* Basis-Container */
    .container-fluid {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    /* Touch-Targets mindestens 44px */
    a, button, .btn, input[type="submit"], input[type="button"] {
        min-height: 44px;
        min-width: 44px;
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    /* Verbesserte Lesbarkeit */
    body {
        font-size: 16px;
        line-height: 1.6;
    }
    
    h1, h2, h3, h4, h5, h6 {
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    p {
        margin-bottom: 1rem;
        line-height: 1.6;
    }
    
    /* Cards und Komponenten */
    .card {
        margin-bottom: 1rem;
        border-radius: 8px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        background: var(--white) !important;
        color: var(--text-primary) !important;
        border: 2px solid var(--accent-color);
    }
    
    .card-body {
        padding: 1rem;
        background: var(--white) !important;
        color: var(--text-primary) !important;
    }
    
    .card-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        color: var(--text-primary) !important;
        font-weight: 600;
    }
    
    .card-text {
        color: var(--text-secondary) !important;
    }
    
    /* Listen */
    .list-group-item {
        padding: 0.75rem 1rem;
        border-radius: 6px;
        margin-bottom: 0.25rem;
    }
    
    /* Tabellen responsive */
    .table-responsive {
        border: none;
        border-radius: 8px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .table {
        font-size: 0.9rem;
    }
    
    .table th,
    .table td {
        padding: 0.75rem 0.5rem;
        white-space: nowrap;
    }
    
    /* Alerts */
    .alert {
        padding: 1rem;
        margin-bottom: 1rem;
        border-radius: 8px;
        font-size: 0.95rem;
    }
    
    /* Breadcrumbs */
    .breadcrumb {
        padding: 0.75rem 1rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
        background-color: var(--gray-100);
        border-radius: 8px;
    }
    
    /* Pagination */
    .pagination {
        justify-content: center;
        margin-top: 2rem;
    }
    
    .page-link {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Modals */
    .modal-dialog {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .modal-content {
        border-radius: 12px;
        border: none;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 1rem;
    }
    
    .modal-title {
        font-size: 1.1rem;
    }
}

/* Sehr kleine Bildschirme */
@media (max-width: 576px) {
    .container-fluid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .card-body {
        padding: 0.75rem;
    }
    
    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .modal-header,
    .modal-body,
    .modal-footer {
        padding: 0.75rem;
    }
}

/* iOS Safari spezifische Fixes */
@supports (-webkit-touch-callout: none) {
    .form-control,
    .form-select {
        font-size: 16px !important; /* Verhindert Zoom */
    }
    
    .btn {
        -webkit-appearance: none;
        -webkit-border-radius: 8px;
    }
}

/* Android spezifische Fixes */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .form-control:focus,
    .form-select:focus {
        outline: none !important;
        -webkit-appearance: none;
    }
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.d-flex { display: flex; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-none { display: none; }

.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.justify-content-around { justify-content: space-around; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

/* Grid System */
.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -0.5rem;
}

.col,
.col-1, .col-2, .col-3, .col-4, .col-5, .col-6,
.col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6,
.col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12,
.col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6,
.col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12,
.col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6,
.col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    padding: 0 0.5rem;
    margin-bottom: 1rem;
}

.col { flex: 1 0 0%; }
.col-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
.col-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.col-3 { flex: 0 0 25%; max-width: 25%; }
.col-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.col-6 { flex: 0 0 50%; max-width: 50%; }
.col-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
.col-9 { flex: 0 0 75%; max-width: 75%; }
.col-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
.col-12 { flex: 0 0 100%; max-width: 100%; }

@media (min-width: 576px) {
    .col-sm-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-sm-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-sm-3 { flex: 0 0 25%; max-width: 25%; }
    .col-sm-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-sm-6 { flex: 0 0 50%; max-width: 50%; }
    .col-sm-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-sm-9 { flex: 0 0 75%; max-width: 75%; }
    .col-sm-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 768px) {
    .col-md-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-md-3 { flex: 0 0 25%; max-width: 25%; }
    .col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-md-6 { flex: 0 0 50%; max-width: 50%; }
    .col-md-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-md-9 { flex: 0 0 75%; max-width: 75%; }
    .col-md-12 { flex: 0 0 100%; max-width: 100%; }
}

@media (min-width: 992px) {
    .col-lg-1 { flex: 0 0 8.333333%; max-width: 8.333333%; }
    .col-lg-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
    .col-lg-3 { flex: 0 0 25%; max-width: 25%; }
    .col-lg-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
    .col-lg-6 { flex: 0 0 50%; max-width: 50%; }
    .col-lg-8 { flex: 0 0 66.666667%; max-width: 66.666667%; }
    .col-lg-9 { flex: 0 0 75%; max-width: 75%; }
    .col-lg-10 { flex: 0 0 83.333333%; max-width: 83.333333%; }
    .col-lg-12 { flex: 0 0 100%; max-width: 100%; }
}

.g-1 > * { padding: 0.125rem; }
.g-2 > * { padding: 0.25rem; }
.g-3 > * { padding: 0.5rem; }
.g-4 > * { padding: 0.75rem; }
.g-5 > * { padding: 1rem; }

/* =============================================
   CARDS & ALERTS - Bootstrap-like
   ============================================= */

.card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.card-header {
    background: var(--gray-50);
    border-bottom: 1px solid var(--gray-200);
    padding: 1rem 1.25rem;
    font-weight: 600;
}

.card-body {
    padding: 1.25rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.card-text {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.card-footer {
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
    padding: 0.75rem 1.25rem;
}

/* Alerts */
.alert {
    border: none;
    border-radius: 8px;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #065f46;
    border-left-color: var(--success-color);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    color: #991b1b;
    border-left-color: var(--danger-color);
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    color: #92400e;
    border-left-color: var(--warning-color);
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    color: #1e3a8a;
    border-left-color: var(--info-color);
}

.alert-dismissible .btn-close {
    background: none;
    border: none;
    font-size: 1.2rem;
    opacity: 0.6;
    padding: 0;
    margin: 0;
}

.alert-dismissible .btn-close:hover {
    opacity: 1;
}

/* =============================================
   TABLES
   ============================================= */

.table {
    width: 100%;
    margin-bottom: 1rem;
    background: var(--white);
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-bottom: 1px solid var(--gray-200);
}

.table th {
    background: var(--gray-50);
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid var(--gray-200);
}

.table-responsive {
    overflow-x: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
}

/* =============================================
   MODALS
   ============================================= */

.modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.modal-header {
    border-bottom: 1px solid var(--gray-200);
    border-radius: 12px 12px 0 0;
    padding: 1.5rem;
}

.modal-title {
    font-weight: 600;
    color: var(--text-primary);
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    border-top: 1px solid var(--gray-200);
    border-radius: 0 0 12px 12px;
    padding: 1rem 1.5rem;
}

/* =============================================
   BADGES & LABELS
   ============================================= */

.badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1;
    color: var(--white);
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 6px;
}

.badge-primary {
    background: var(--primary-color);
}

.badge-secondary {
    background: var(--gray-600);
}

.badge-success {
    background: var(--success-color);
}

.badge-danger {
    background: var(--danger-color);
}

.badge-warning {
    background: var(--warning-color);
    color: var(--gray-900);
}

.badge-info {
    background: var(--info-color);
}

/* =============================================
   DROPDOWN MENUS
   ============================================= */

.dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    margin-top: 0.25rem;
    background: var(--white);
}

.dropdown-item {
    padding: 0.5rem 1rem;
    color: var(--text-primary);
    text-decoration: none;
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    background: var(--gray-100);
    color: var(--text-primary);
    text-decoration: none;
}

.dropdown-item.active {
    background: var(--primary-color);
    color: var(--white);
}

.dropdown-divider {
    height: 0;
    margin: 0.5rem 0;
    overflow: hidden;
    border-top: 1px solid var(--gray-200);
}

/* =============================================
   PROGRESS BARS
   ============================================= */

.progress {
    display: flex;
    height: 1rem;
    overflow: hidden;
    background: var(--gray-200);
    border-radius: 6px;
}

.progress-bar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    text-align: center;
    white-space: nowrap;
    background: var(--primary-color);
    transition: width 0.6s ease;
}

/* =============================================
   PAGINATION
   ============================================= */

.pagination {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-radius: 8px;
}

.page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    color: var(--primary-color);
    text-decoration: none;
    background: var(--white);
    border: 1px solid var(--gray-300);
    transition: all 0.2s ease;
}

.page-link:hover {
    color: var(--primary-dark);
    background: var(--gray-100);
    border-color: var(--gray-300);
    text-decoration: none;
}

.page-item.active .page-link {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.page-item.disabled .page-link {
    color: var(--gray-400);
    background: var(--white);
    border-color: var(--gray-300);
    cursor: not-allowed;
}

.page-item:first-child .page-link {
    border-radius: 6px 0 0 6px;
}

.page-item:last-child .page-link {
    border-radius: 0 6px 6px 0;
}

/* =============================================
   HERO SECTION - exakt wie blauarbeit.de
   ============================================= */

.hero-section {
    background: var(--gray-50);
    padding: 4rem 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--accent-color);
    position: relative;
    z-index: 10;
}

.hero-form-container h1 {
    color: var(--text-primary) !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-form-container p,
.hero-form-container .lead {
    color: var(--text-secondary) !important;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.hero-form-container h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.hero-form .form-group {
    margin-bottom: 0;
}

.hero-form .form-control,
.hero-form .form-select {
    border: 2px solid var(--gray-300);
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
    transition: border-color 0.2s ease;
    background: var(--white);
}

.hero-form .form-control:focus,
.hero-form .form-select:focus {
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1) !important;
    outline: none;
}

.hero-form .form-control::placeholder {
    color: var(--text-muted);
    font-weight: 400;
}

.hero-form textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.hero-form .form-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    display: block;
}

.hero-form .btn-primary {
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: var(--white) !important;
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.hero-form .btn-primary:hover {
    background: var(--accent-dark) !important;
    border-color: var(--accent-dark) !important;
    transform: translateY(-1px);
}

.form-disclaimer {
    text-align: center;
    margin-top: 1rem;
}

.form-disclaimer hr {
    margin: 1rem 0 0.5rem 0;
    border-color: var(--gray-300);
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--accent-color);
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Trust Badge */
.trust-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    min-width: 200px;
}

.trust-badge .rating-stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.trust-badge .trust-text {
    font-size: 0.9rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.trust-badge .trust-text strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* =============================================
   MOBILE HERO SECTION
   ============================================= */

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-section .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.75rem;
    }
    
    .hero-section .btn:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
}

/* =============================================
   CARDS & SECTIONS - blauarbeit.de Style
   ============================================= */

/* Process Steps - "So funktioniert es" */
.process-section {
    background: var(--gray-50);
    padding: 4rem 0;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    height: 100%;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    position: relative;
}

.process-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.process-step:hover .process-icon::before {
    opacity: 1;
}

.process-step h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

/* Service Categories */
.categories-section {
    padding: 4rem 0;
    background: var(--white);
}

.category-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
    text-decoration: none;
    color: inherit;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-100);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.category-card:hover .category-icon {
    background: var(--primary-color);
    color: var(--white);
}

.category-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.category-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.5;
}

/* Statistics Section */
.stats-section {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    padding: 4rem 0 !important;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%) !important;
    z-index: 1;
}

.stats-section .container {
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center !important;
    padding: 2rem 1rem !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15) !important;
}

.stat-number {
    font-size: 3rem !important;
    font-weight: 800 !important;
    color: var(--white) !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.stat-label {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.95) !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--gray-50);
    padding: 4rem 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    line-height: 1;
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--text-primary);
}

.author-info h6 {
    margin: 0;
    font-weight: 600;
    color: var(--text-primary);
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* =============================================
   MOBILE CARD OPTIMIZATIONS
   ============================================= */

@media (max-width: 768px) {
    .card {
        border-radius: 15px;
        margin-bottom: 1.5rem;
    }
    
    .card:hover {
        transform: translateY(-4px);
    }
    
    .card-body {
        padding: 1.25rem;
    }
    
    .card-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .card-text {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    /* Card actions */
    .card .btn-group {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .card .btn-group .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .card-body {
        padding: 1rem;
    }
    
    .card-title {
        font-size: 1rem;
    }
    
    .card-text {
        font-size: 0.85rem;
    }
}

.card-header {
    background: var(--gradient-primary);
    color: white;
    border-radius: 20px 20px 0 0 !important;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
}

/* =============================================
   MOBILE FORM OPTIMIZATIONS
   ============================================= */

@media (max-width: 768px) {
    /* Form groups */
    .form-group, .mb-3 {
        margin-bottom: 1rem;
    }
    
    /* Form controls */
    .form-control, .form-select {
        padding: 0.75rem;
        font-size: 16px; /* Prevents zoom on iOS */
        border-radius: 8px;
    }
    
    /* Form labels */
    .form-label {
        font-size: 0.9rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }
    
    /* Input groups */
    .input-group {
        flex-direction: column;
    }
    
    .input-group .form-control {
        border-radius: 8px !important;
        margin-bottom: 0.5rem;
    }
    
    .input-group .btn {
        border-radius: 8px !important;
        width: 100%;
    }
    
    /* File uploads */
    .form-control[type="file"] {
        padding: 0.5rem;
    }
    
    /* Checkboxes and radios */
    .form-check {
        margin-bottom: 0.75rem;
    }
    
    .form-check-label {
        font-size: 0.9rem;
        padding-left: 0.5rem;
    }
}

/* =============================================
   MOBILE TABLE OPTIMIZATIONS
   ============================================= */

@media (max-width: 768px) {
    .table-responsive {
        border: none;
        font-size: 0.8rem;
    }
    
    .table th, .table td {
        padding: 0.5rem 0.25rem;
        vertical-align: middle;
    }
    
    .table th {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    /* Stack table for very small screens */
    @media (max-width: 576px) {
        .table-stack {
            display: block;
        }
        
        .table-stack thead {
            display: none;
        }
        
        .table-stack tbody,
        .table-stack tr,
        .table-stack td {
            display: block;
            width: 100%;
        }
        
        .table-stack tr {
            border: 1px solid #ddd;
            margin-bottom: 1rem;
            border-radius: 8px;
            padding: 0.75rem;
            background: white;
        }
        
        .table-stack td {
            border: none;
            padding: 0.25rem 0;
            text-align: left !important;
        }
        
        .table-stack td:before {
            content: attr(data-label) ": ";
            font-weight: bold;
            color: var(--primary-color);
        }
    }
}

.card-body {
    padding: 2rem;
}

/* =============================================
   MOBILE DASHBOARD OPTIMIZATIONS
   ============================================= */

@media (max-width: 768px) {
    .card-body {
        padding: 1.25rem;
    }
    
    /* Dashboard stats */
    .stats-card {
        margin-bottom: 1rem;
        text-align: center;
    }
    
    .stats-card h3 {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .stats-card p {
        font-size: 0.85rem;
        margin-bottom: 0;
    }
    
    /* Action buttons */
    .action-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .action-buttons .btn {
        width: 100%;
        margin-bottom: 0;
    }
    
    /* Sidebar adjustments */
    .sidebar {
        position: static;
        width: 100%;
        margin-bottom: 2rem;
    }
    
    /* Admin panel adjustments */
    .admin-header {
        padding: 1rem;
        text-align: center;
    }
    
    .admin-header h1 {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    /* Filter forms */
    .filter-form {
        background: white;
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .filter-form .row .col-md-3,
    .filter-form .row .col-md-4,
    .filter-form .row .col-md-6 {
        margin-bottom: 0.75rem;
    }
}

/* =============================================
   DARK BACKGROUND TEXT FIXES
   ============================================= */

/* Ensure text is readable on dark backgrounds */
.bg-dark, .bg-black, [style*="background:black"], [style*="background:#000"] {
    color: var(--accent-color) !important;
}

.bg-dark *, .bg-black *, [style*="background:black"] *, [style*="background:#000"] * {
    color: var(--accent-color) !important;
}

/* Dashboard and form specific fixes */
.dashboard-section, .form-section, .content-section {
    background-color: #fff !important;
    color: var(--primary-color) !important;
}

.dashboard-section *, .form-section *, .content-section * {
    color: var(--primary-color) !important;
}

/* Text on primary color backgrounds */
.bg-primary, [style*="background-color:var(--primary-color)"] {
    color: var(--accent-color) !important;
}

.bg-primary *, [style*="background-color:var(--primary-color)"] * {
    color: var(--accent-color) !important;
}

/* Form elements on dark backgrounds */
.form-control, .form-select, .form-check-label {
    background-color: #fff !important;
    color: var(--primary-color) !important;
    border: 1px solid var(--accent-color) !important;
}

/* =============================================
   MOBILE UTILITY CLASSES
   ============================================= */

@media (max-width: 768px) {
    /* Hide on mobile */
    .d-mobile-none {
        display: none !important;
    }
    
    /* Show only on mobile */
    .d-mobile-block {
        display: block !important;
    }
    
    /* Full width on mobile */
    .w-mobile-100 {
        width: 100% !important;
    }
    
    /* Text center on mobile */
    .text-mobile-center {
        text-align: center !important;
    }
    
    /* Margin adjustments */
    .mb-mobile-2 {
        margin-bottom: 0.5rem !important;
    }
    
    .mb-mobile-3 {
        margin-bottom: 1rem !important;
    }
    
    /* Padding adjustments */
    .p-mobile-2 {
        padding: 0.5rem !important;
    }
    
    .p-mobile-3 {
        padding: 1rem !important;
    }
}

/* Feature Icons */
.feature-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
    transition: transform 0.3s ease;
}

.feature-icon:hover {
    transform: scale(1.1) rotate(5deg);
}

/* Job Cards */
.job-card {
    border-left: 5px solid var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.job-card:hover {
    border-left-color: var(--accent-color);
}

.job-card .card-header {
    background: rgba(44, 85, 48, 0.05);
    color: var(--dark-color);
    border-radius: 0;
    border-bottom: 1px solid rgba(44, 85, 48, 0.1);
}

.urgency-high {
    border-left-color: var(--danger-color) !important;
}

.urgency-high .card-header {
    background: rgba(231, 76, 60, 0.05);
}

.urgency-medium {
    border-left-color: var(--warning-color) !important;
}

.urgency-medium .card-header {
    background: rgba(243, 156, 18, 0.05);
}

.urgency-low {
    border-left-color: var(--success-color) !important;
}

.urgency-low .card-header {
    background: rgba(39, 174, 96, 0.05);
}

/* Craftsman Profile Cards */
.craftsman-card {
    text-align: center;
}

.craftsman-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--light-color);
    margin: 0 auto 1rem;
}

.rating-stars {
    color: var(--warning-color);
    margin-bottom: 1rem;
}

/* =============================================
   BUTTONS - blauarbeit.de Style
   ============================================= */

.btn {
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 6px;
    padding: 0.75rem 1.5rem;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    cursor: pointer;
    font-weight: 700;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-primary:hover,
.btn-primary:focus {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--accent-color) !important;
    transform: translateY(-1px);
    outline: none;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.3);
}

.btn-primary:active {
    background: var(--accent-dark) !important;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(243, 156, 18, 0.3);
}

.btn-secondary {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--white) !important;
}

.btn-secondary:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: var(--white) !important;
    transform: translateY(-1px);
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

.btn-outline-secondary {
    background: transparent;
    border-color: var(--gray-300);
    color: var(--text-primary);
}

.btn-outline-secondary:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
    color: var(--text-primary);
}

.btn-light {
    background: var(--white);
    border-color: var(--gray-300);
    color: var(--text-primary);
}

.btn-light:hover {
    background: var(--gray-50);
    border-color: var(--gray-400);
    color: var(--text-primary);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* =============================================
   FORMS - blauarbeit.de Style
   ============================================= */

.form-label {
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-control,
.form-select {
    border: 2px solid var(--gray-200);
    border-radius: 6px;
    padding: 0.75rem;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
    background: var(--white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--accent-color) !important;
    box-shadow: 0 0 0 3px rgba(243, 156, 18, 0.1) !important;
    outline: none !important;
    background: var(--white);
}

.form-control::placeholder {
    color: var(--gray-400);
}

/* Mobile Form Optimization */
@media (max-width: 768px) {
    .form-control,
    .form-select {
        padding: 1rem;
        font-size: 16px !important; /* Verhindert Zoom auf iOS */
        border-radius: 8px;
        border-width: 2px;
        min-height: 48px; /* Touch-freundlich */
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        -webkit-tap-highlight-color: transparent;
    }
    
    .form-control:focus,
    .form-select:focus {
        border-color: var(--accent-color) !important;
        box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.25) !important;
    }
    
    .form-label {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 0.75rem;
        color: var(--gray-900);
    }
    
    .form-text {
        font-size: 0.875rem;
        margin-top: 0.5rem;
        color: var(--gray-600);
    }
    
    /* Input Groups für Mobile */
    .input-group {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .input-group .form-control,
    .input-group .form-select {
        width: 100% !important;
        border-radius: 8px !important;
        border: 2px solid var(--gray-200) !important;
    }
    
    .input-group .btn {
        width: 100% !important;
        border-radius: 8px !important;
        margin-top: 0.5rem;
        border: none !important;
    }
}

.input-group .form-control {
    border-right: none;
}

.input-group .btn {
    border-left: none;
    border-radius: 0 6px 6px 0;
}

/* Form validation */
.is-invalid {
    border-color: var(--danger-color);
}

.is-valid {
    border-color: var(--success-color);
}

.invalid-feedback,
.valid-feedback {
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.invalid-feedback {
    color: var(--danger-color);
}

.valid-feedback {
    color: var(--success-color);
}

/* Search Bar */
.search-container {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 15px 50px rgba(44, 85, 48, 0.15);
    margin-top: -60px;
    position: relative;
    z-index: 10;
    border: 1px solid rgba(44, 85, 48, 0.1);
}

.search-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.search-container:hover::before {
    opacity: 0.1;
}

/* Statistics */
.stat-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: none;
    box-shadow: 0 10px 30px rgba(44, 85, 48, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(44, 85, 48, 0.15);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Navigation */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 5px;
    border-radius: 20px;
    padding: 8px 16px !important;
    transition: background-color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Alerts */
.alert {
    border: none;
    border-radius: 10px;
    border-left: 4px solid;
}

.alert-success {
    border-left-color: var(--success-color);
}

.alert-danger {
    border-left-color: var(--danger-color);
}

.alert-warning {
    border-left-color: var(--warning-color);
}

.alert-info {
    border-left-color: var(--info-color);
}

/* Badge */
.badge {
    padding: 8px 12px;
    border-radius: 20px;
    font-weight: 500;
}

/* Progress Bars */
.progress {
    height: 10px;
    border-radius: 5px;
    background-color: #e9ecef;
}

.progress-bar {
    border-radius: 5px;
}

/* Modal */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    border-bottom: 1px solid #e9ecef;
    border-radius: 15px 15px 0 0;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    border-radius: 0 0 15px 15px;
}

/* File Upload */
.file-upload-area {
    border: 2px dashed #e9ecef;
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    transition: border-color 0.3s ease;
    cursor: pointer;
}

.file-upload-area:hover {
    border-color: var(--primary-color);
    background-color: rgba(13, 110, 253, 0.05);
}

.file-upload-area.drag-over {
    border-color: var(--primary-color);
    background-color: rgba(13, 110, 253, 0.1);
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    .search-container {
        margin-top: -30px;
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Loading Spinner */
.spinner-border-custom {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
}

/* Utilities */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-accent {
    color: var(--accent-color);
}

.bg-gradient-primary {
    background: var(--gradient-primary);
}

.bg-gradient-accent {
    background: var(--gradient-accent);
}

.shadow-custom {
    box-shadow: 0 15px 40px rgba(44, 85, 48, 0.15);
}

.shadow-hover {
    transition: box-shadow 0.3s ease;
}

.shadow-hover:hover {
    box-shadow: 0 20px 50px rgba(44, 85, 48, 0.2);
}

/* Page Sections */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-accent);
    border-radius: 2px;
}

/* Craftsman Profile Cards Enhanced */
.craftsman-card {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.craftsman-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.craftsman-card:hover::before {
    transform: scaleX(1);
}

.craftsman-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--accent-color);
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.craftsman-card:hover .craftsman-avatar {
    transform: scale(1.05);
    border-color: var(--primary-color);
}

.rating-stars {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Enhanced Dropdown */
.dropdown-menu {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(44, 85, 48, 0.15);
    padding: 1rem 0;
    margin-top: 10px;
}

.dropdown-item {
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-item:hover {
    background: var(--gradient-primary);
    color: white;
    padding-left: 2rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 4rem 0 2rem;
    margin-top: auto;
    position: relative;
    flex-shrink: 0;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.footer .logo-container {
    margin-bottom: 1.5rem;
}

.footer .logo-img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer .logo-text {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-title {
    color: var(--accent-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent-color);
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    left: 0;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.4);
}

/* WhatsApp specific styling */
.whatsapp-link {
    background: #25D366 !important;
    color: white !important;
}

.whatsapp-link:hover {
    background: #128C7E !important;
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4) !important;
}

.contact-info {
    color: rgba(255, 255, 255, 0.8);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    gap: 12px;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 2px;
    min-width: 20px;
}

.contact-item span {
    line-height: 1.5;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 3rem 0 2rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-legal {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
    }
}

/* =============================================
   FLOATING ACTION BUTTONS
   ============================================= */

.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    transform: scale(1);
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    color: white;
    text-decoration: none;
}

/* Instagram Button */
.instagram-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.instagram-btn:hover {
    background: linear-gradient(45deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #8b0a50 100%);
}

/* WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

/* Email Button */
.email-btn {
    background: #3498db;
}

.email-btn:hover {
    background: #2980b9;
}

/* Mobile optimizations for floating buttons */
@media (max-width: 768px) {
    .floating-buttons {
        right: 15px;
        bottom: 15px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}