/* =========================================================================
   Branchenseiten Styles - Mobile First
   ========================================================================= *//* Basis-Styles */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Branche Header */
.branche-header {
    padding: 2rem 0;
    text-align: center;
    background: linear-gradient(135deg, #faf9fb 0%, #f3f1f4 100%);
    border-bottom: 1px solid #e6d9e5;
}

.branche-icon {
    margin-bottom: 1rem;
}

.branche-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(153, 71, 149, 0.15);
}

.branche-title h1 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #994795;
    margin: 0;
    line-height: 1.2;
}

.branche-description {
    font-size: 1rem;
    color: #555;
    margin: 1rem 0 0 0;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Branche Intro & Footer */
.branche-intro h3,
.branche-footer-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #994795;
    margin: 0 0 1rem 0;
}

.branche-intro p,
.branche-footer-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.branche-intro p:last-child,
.branche-footer-content p:last-child {
    margin-bottom: 0;
}

.branche-intro {
	background: #f8f9fa;
    padding: 15px 0;
}

.branche-footer-content {
	background: #f8f9fa;
    padding: 15px 0;
}

/* Dienstleister Section */
.dienstleister-section {
    margin: 3rem 0;
}

.dienstleister-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #994795;
    margin:1rem 1rem;
    text-align: center;
}

.dienstleister-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
	align-items:stretch;
}

/* Dienstleister Cards */
.dienstleister-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #e9ecef;
	display:flex;
	flex-direction:column;
	height:100%;
	min-height:400px;
}

.dienstleister-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.dienstleister-header {
    padding: 1.5rem 1.5rem 1rem 1.5rem;
    border-bottom: 1px solid #f1f3f4;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dienstleister-icon {
    flex-shrink: 0;
}

.dienstleister-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 6px;
}

.dienstleister-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #994795;
    margin: 0;
    line-height: 1.3;
}

.dienstleister-content {
    padding: 1rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column; /* WICHTIG: Vertikale Anordnung */
    text-align: center; /* Zentriert den Inhalt */
}

.dienstleister-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
    margin:0;
    text-align: center;
	flex-grow:1;
	display:flex;
	align-items:flex-start;
}

.standard-address {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    margin: 0;
    text-align: center;
    flex-shrink: 0; /* ← Verhindert Schrumpfen */
}

.address-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.address-content {
    text-align: center;
}

.address-street {
    font-weight: 500;
    color: #333;
    display: block; /* Straße in eigener Zeile */
}

.address-city {
    color: #666;
    display: block; /* Stadt in eigener Zeile */
}

.dienstleister-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.detail-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.detail-content {
    flex: 1;
    min-width: 0;
}

.address-link,
.phone-link,
.website-link {
    color: #994795;
    text-decoration: none;
    transition: color 0.2s ease;
}

.address-link:hover,
.phone-link:hover,
.website-link:hover {
    color: #7a3a77;
    text-decoration: underline;
}

.address-street {
    font-weight: 500;
}

.address-city {
    color: #666;
}

.dienstleister-footer {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid #f1f3f4;
    background-color: #fafbfc;
	margin-top:auto;
	flex-shrink:0;
}

.dienstleister-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #994795;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: background-color 0.2s ease;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.action-btn:hover {
    background-color: #7a3a77;
    color: white;
    text-decoration: none;
}

.btn-call {
    background-color: #b85bb3;
}

.btn-call:hover {
    background-color: #a04a9c;
}

.btn-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

.btn-text {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* No Entries Message */
.no-entries-message {
    text-align: center;
    padding: 3rem 1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
}

.no-entries-message p {
    color: #6c757d;
    font-style: italic;
    margin: 0;
}

/* Breadcrumb */
.breadcrumb {
    margin: 3rem 0 2rem 0;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.breadcrumb ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: "›";
    margin-left: 0.5rem;
    color: #999;
    font-weight: bold;
}

.breadcrumb a {
    color: #994795;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #7a3a77;
    text-decoration: underline;
}

.breadcrumb li[aria-current="page"] {
    color: #666;
    font-weight: 500;
}

/* =========================================================================
   Tablet Styles (768px+)
   ========================================================================= */
@media (min-width: 768px) {
    .container {
        padding: 0 2rem;
    }
    
    .branche-header {
        padding: 3rem 0;
        display: flex;
        align-items: center;
        text-align: left;
        gap: 2rem;
    }
    
    .branche-icon {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    .branche-icon img {
        width: 100px;
        height: 100px;
    }
    
    .branche-title h1 {
        font-size: 2.25rem;
    }
    
    .branche-description {
        font-size: 1.125rem;
    }
    
    .dienstleister-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .dienstleister-icon img {
        width: 48px;
        height: 48px;
    }
    
    .dienstleister-title {
        font-size: 1.25rem;
    }
    
    .action-btn {
        flex: none;
        min-width: 120px;
    }
    
    .breadcrumb ol {
        font-size: 1rem;
    }
}

/* =========================================================================
   Desktop Styles (1024px+)
   ========================================================================= */
@media (min-width: 1024px) {
    .branche-header {
        padding: 4rem 0;
    }
    
    .branche-icon img {
        width: 120px;
        height: 120px;
    }
    
    .branche-title h1 {
        font-size: 2.5rem;
    }
    
    .dienstleister-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .dienstleister-icon img {
        width: 52px;
        height: 52px;
    }
    
    .dienstleister-title {
        font-size: 1.375rem;
		margin:10px 0;
    }
    
    .dienstleister-description {
        font-size: 1rem;
    }
    
    .branche-intro,
    .branche-footer-content {
        margin-bottom: 4rem;
    }
    
    .dienstleister-section {
        margin: 4rem 0;
    }
}

/* =========================================================================
   Large Desktop Styles (1200px+)
   ========================================================================= */
@media (min-width: 1200px) {
    .dienstleister-grid {
        gap: 3rem;
    }
    
    .dienstleister-card {
        border-radius: 16px;
    }
    
    .dienstleister-header {
        padding: 2rem 2rem 1.25rem 2rem;
    }
    
    .dienstleister-content {
        padding: 1.25rem 2rem;
    }
    
    .dienstleister-footer {
        padding: 1.25rem 2rem 2rem 2rem;
    }
}

/* Force 3-column grid on desktop */
@media (min-width: 1024px) {
    .dienstleister-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 2.5rem !important;
    }
}

/* =========================================================================
   Action Icons - Nur Symbole ohne Text
   ========================================================================= */

.dienstleister-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}

.action-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: transparent;
    color: #994795;
    text-decoration: none;
    border: 2px solid #994795;
    border-radius: 50%;
    font-size: 1.25rem;
    transition: all 0.2s ease;
    position: relative;
}

.action-icon:hover {
    background-color: #994795;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(153, 71, 149, 0.3);
}

.action-icon:focus {
    outline: 2px solid #994795;
    outline-offset: 2px;
}

.icon-symbol {
    font-size: 1.125rem;
    line-height: 1;
}

/* Spezifische Button-Varianten */
.btn-call {
    border-color: #b85bb3;
    color: #b85bb3;
}

.btn-call:hover {
    background-color: #b85bb3;
    border-color: #b85bb3;
	color:#b85bb3!important;
}

.btn-website {
    border-color: #994795;
    color: #994795;
}

.btn-website:hover {
    background-color: #994795;
    border-color: #994795;
    color: white;
}

.btn-maps {
    border-color: #7a3a77;
    color: #7a3a77;
}

.btn-maps:hover {
    background-color: #7a3a77;
    border-color: #7a3a77;
    color: white;
}

/* Responsive Anpassungen */
@media (min-width: 768px) {
    .action-icon {
        width: 48px;
        height: 48px;
        font-size: 1.375rem;
    }
    
    .icon-symbol {
        font-size: 1.25rem;
    }
    
    .dienstleister-actions {
        gap: 1rem;
    }
}

@media (min-width: 1024px) {
    .action-icon {
        width: 52px;
        height: 52px;
        font-size: 1.5rem;
    }
    
    .icon-symbol {
        font-size: 1.375rem;
    }
    
    .dienstleister-actions {
        gap: 1.25rem;
    }
}

/* Tooltip-Effekt für bessere UX */
.action-icon::after {
    content: attr(title);
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #333;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 10;
}

.action-icon:hover::after {
    opacity: 1;
}

/* Für Premium-Einträge - mehr Icons */
.premium-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 300px;
    margin: 0 auto;
}

.premium-actions .action-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
}

.premium-actions .icon-symbol {
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .premium-actions {
        gap: 0.75rem;
    }
    
    .premium-actions .action-icon {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }
    
    .premium-actions .icon-symbol {
        font-size: 1rem;
    }
}

/* Zusätzliche Icon-Varianten für Premium */
.btn-email {
    border-color: #6c757d;
    color: #6c757d;
}

.btn-email:hover {
    background-color: #6c757d;
    border-color: #6c757d;
    color: white;
}

.btn-whatsapp {
    border-color: #25d366;
    color: #25d366;
}

.btn-whatsapp:hover {
    background-color: #25d366;
    border-color: #25d366;
    color: white;
}

.btn-facebook {
    border-color: #1877f2;
    color: #1877f2;
}

.btn-facebook:hover {
    background-color: #1877f2;
    border-color: #1877f2;
    color: white;
}

.btn-instagram {
    border-color: #e4405f;
    color: #e4405f;
}

.btn-instagram:hover {
    background-color: #e4405f;
    border-color: #e4405f;
    color: white;
}


/* =========================================================================
   PREMIUM HIERARCHIE STYLES - hochzeit24.bayern
   Gold Premium: Volle Breite, Silber Premium: 3-spaltig, Standard: 3-spaltig
   ========================================================================= */

/* =========================================================================
   SECTION BADGES
   ========================================================================= */

.section-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 2rem 0 1.5rem 0;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #994795 0%, #b85bb3 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(153, 71, 149, 0.3);
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.section-badge .badge-icon {
    font-size: 1.2em;
}

.section-badge .badge-text {
    letter-spacing: 0.5px;
}

/* =========================================================================
   GOLD PREMIUM SECTION (Volle Breite)
   ========================================================================= */

.premium-gold-section {
    margin: 1rem 0;
}

.dienstleister-card.gold-premium {
    background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
    border: 3px solid #FFD700;
    border-radius: 20px;
    padding: 0;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.dienstleister-card.gold-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
}

.premium-card-inner {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 2rem;
    padding: 2rem;
    min-height: 200px;
}

.premium-left {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.premium-header {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.premium-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #FFD700;
    flex-shrink: 0;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.premium-logo.fallback {
    background: linear-gradient(135deg, #994795 0%, #b85bb3 100%);
    padding: 12px;
}

.premium-logo.fallback img {
    filter: brightness(0) invert(1);
}

.premium-title-area {
    flex: 1;
}

.premium-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.5rem 0;
    line-height: 1.2;
}

.premium-badge .badge-gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.premium-content {
    flex: 1;
}

.premium-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.premium-details {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.premium-details h3 {
    color: #994795;
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem 0;
}

.premium-details ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.premium-details li {
    margin: 0.3rem 0;
}

.premium-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.premium-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.contact-icon {
    font-size: 1.2em;
    width: 24px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-content {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.4;
}

.contact-content a {
    color: #994795;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-content a:hover {
    color: #7a3a77;
    text-decoration: underline;
}

.premium-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.premium-cta {
    text-align: center;
}

.btn-premium-details {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #994795 0%, #b85bb3 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(153, 71, 149, 0.3);
}

.btn-premium-details:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(153, 71, 149, 0.4);
    text-decoration: none;
    color: white;
}

.btn-premium-details .cta-arrow {
    transition: transform 0.3s ease;
}

.btn-premium-details:hover .cta-arrow {
    transform: translateX(3px);
}

/* =========================================================================
   SILBER PREMIUM SECTION (3-spaltig)
   ========================================================================= */

.premium-silber-section {
    margin: 3rem 0;
}

.premium-silber-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.dienstleister-card.silber-premium {
    background: linear-gradient(135deg, #fff 0%, #fefefe 100%);
    border: 2px solid #C0C0C0;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 6px 25px rgba(192, 192, 192, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dienstleister-card.silber-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(192, 192, 192, 0.4);
}

.dienstleister-card.silber-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C0C0C0 0%, #E5E5E5 50%, #C0C0C0 100%);
}

.premium-card-header {
    position: relative;
    padding: 1.5rem 1.5rem 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.silber-premium .premium-logo {
    width: 60px;
    height: 60px;
    border: 2px solid #C0C0C0;
}

.premium-badge .badge-silber {
    background: linear-gradient(135deg, #C0C0C0 0%, #E5E5E5 100%);
    color: #333;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(192, 192, 192, 0.4);
}

.silber-premium .dienstleister-header {
    padding: 0 1.5rem;
}

.silber-premium .dienstleister-content {
    padding: 1rem 1.5rem;
}

.silber-premium .dienstleister-footer {
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    border-top: 1px solid #f0f0f0;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
}

.premium-cta-small {
    text-align: center;
    margin-top: 1rem;
}

.btn-details-small {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #994795 0%, #b85bb3 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-details-small:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(153, 71, 149, 0.3);
    text-decoration: none;
    color: white;
}

/* =========================================================================
   STANDARD SECTION (3-spaltig)
   ========================================================================= */

.standard-section {
    margin: 3rem 0;
}

.standard-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
    align-items: stretch;
    grid-auto-rows: 1fr; /* ← DAS ist der entscheidende Fix! */
}

.standard-grid .dienstleister-card {
    min-height: 500px; /* Mindesthöhe für einheitliches Aussehen */
}

.dienstleister-card.standard {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.dienstleister-card.standard:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* =========================================================================
   ACTION ICONS ERWEITERT FÜR PREMIUM
   ========================================================================= */

.action-icon.btn-email {
    background-color: #6c757d;
    color: white;
}

.action-icon.btn-email:hover {
    background-color: #5a6268;
    transform: translateY(-2px);
}

.action-icon.btn-whatsapp {
    background-color: #25D366;
    color: white;
}

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

.action-icon.btn-facebook {
    background-color: #1877F2;
    color: white;
}

.action-icon.btn-facebook:hover {
    background-color: #166FE5;
    transform: translateY(-2px);
}

.action-icon.btn-instagram {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
    color: white;
}

.action-icon.btn-instagram:hover {
    transform: translateY(-2px) scale(1.05);
}

/* =========================================================================
   RESPONSIVE DESIGN
   ========================================================================= */

/* Tablet */
@media (min-width: 768px) {
    .premium-silber-grid,
    .standard-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .premium-card-inner {
        grid-template-columns: 1fr 300px;
    }
    
    .premium-title {
        font-size: 2rem;
    }
    
    .premium-description {
        font-size: 1.15rem;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .premium-silber-grid,
    .standard-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
    
    .premium-card-inner {
        grid-template-columns: 1fr 350px;
        gap: 3rem;
        padding: 2.5rem;
    }
    
    .premium-title {
        font-size: 2.2rem;
    }
    
    .premium-description {
        font-size: 1.2rem;
    }
    
    .premium-actions {
        justify-content: flex-start;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .premium-card-inner {
        grid-template-columns: 1fr 400px;
        gap: 3.5rem;
        padding: 3rem;
    }
    
    .premium-right {
        padding: 2rem;
    }
}

/* Mobile Optimierungen */
@media (max-width: 767px) {
    .premium-card-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .premium-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .premium-logo {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    
    .premium-title {
        font-size: 1.5rem;
        text-align: center;
    }
    
    .premium-right {
        padding: 1rem;
    }
    
    .premium-actions {
        justify-content: center;
    }
    
    .section-badge {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
        margin: 1.5rem 0 1rem 0;
    }
}

/* Branche Hero Header */
.branche-hero-header {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #f8f9fa;
    margin-bottom: 3rem;
    overflow: hidden;
}

/* Fallback Gradient wenn kein Bild */
.branche-hero-header:not([style*="background-image"]) {
    background: linear-gradient(135deg, #994795 0%, #b85bb3 50%, #994795 100%);
}

/* Overlay entfernt - kein Overlay mehr */
.branche-hero-overlay {
    display: none;
}

/* Content Container */
.branche-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
    color: white;
    padding: 2rem 0;
}

.branche-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Icon */
.branche-hero-icon {
    margin-bottom: 1.5rem;
}

.branche-hero-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* Hero Text */
.branche-hero-text {
    margin-bottom: 2rem;
}

.branche-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.branche-hero-description {
    font-size: 1.2rem;
    margin: 0 0 1.5rem 0;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Statistiken */
.branche-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.stat-divider {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    margin: 0 0.5rem;
}

/* Scroll Indikator */
.branche-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-arrow:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.arrow-down {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* =========================================================================
   RESPONSIVE DESIGN
   ========================================================================= */

/* Tablet */
@media (max-width: 768px) {
    .branche-hero-header {
        min-height: 350px;
        margin-bottom: 2rem;
    }
    
    .branche-hero-icon img {
        width: 60px;
        height: 60px;
    }
    
    .branche-hero-title {
        font-size: 2rem;
    }
    
    .branche-hero-description {
        font-size: 1.1rem;
    }
    
    .branche-hero-stats {
        gap: 0.75rem;
        padding: 0.75rem 1.25rem;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 1.25rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .branche-hero-header {
        min-height: 300px;
        margin-bottom: 1.5rem;
    }
    
    .branche-hero-inner {
        padding: 0 0.75rem;
    }
    
    .branche-hero-icon img {
        width: 50px;
        height: 50px;
    }
    
    .branche-hero-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .branche-hero-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .branche-hero-stats {
        gap: 0.5rem;
        padding: 0.5rem 1rem;
        margin-top: 1rem;
    }
    
    .stat-item {
        gap: 0.125rem;
    }
    
    .stat-number {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .branche-scroll-indicator {
        bottom: 1.5rem;
    }
    
    .scroll-arrow {
        width: 35px;
        height: 35px;
    }
    
    .arrow-down {
        font-size: 1rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .branche-hero-header {
        min-height: 450px;
    }
    
    .branche-hero-icon img {
        width: 100px;
        height: 100px;
    }
    
    .branche-hero-title {
        font-size: 3rem;
    }
    
    .branche-hero-description {
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

/* =========================================================================
   ACCESSIBILITY & PERFORMANCE
   ========================================================================= */

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .scroll-arrow {
        animation: none;
    }
    
    .scroll-arrow:hover {
        transform: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .branche-hero-overlay {
        background: rgba(0, 0, 0, 0.8);
    }
    
    .branche-hero-stats {
        background: rgba(0, 0, 0, 0.8);
        border-color: white;
    }
}

/* Print Styles */
@media print {
    .branche-hero-header {
        min-height: auto;
        background: none !important;
        color: black;
        padding: 1rem 0;
    }
    
    .branche-hero-overlay,
    .branche-scroll-indicator {
        display: none;
    }
    
    .branche-hero-title,
    .branche-hero-description {
        color: black;
        text-shadow: none;
    }
}
