/**
 * ITMedium Custom Theme - Professionelles Dunkelblau Design
 * Vollständig überarbeitetes Design mit optimalen Kontrasten
 */

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
    --theme-color: #1e3a5f !important;
    --theme-color2: #0f172a !important;
    --theme-color-rgb: 30, 58, 95 !important;
    --accent-color: #3b82f6;
    --accent-light: #60a5fa;
    --title-color: #0f172a !important;
    --body-color: #475569 !important;
    --light-color: #64748b !important;
    --smoke-color: #f8fafc !important;
    --white-color: #ffffff !important;
    --black-color: #0f172a !important;
    --success-color: #10b981 !important;
    --error-color: #ef4444 !important;
    --th-border-color: #e2e8f0 !important;
}

body, body.theme-blue3 {
    --theme-color: #1e3a5f !important;
    --theme-color2: #0f172a !important;
    background-color: #ffffff !important;
    color: #475569 !important;
}

/* ========================================
   HEADER - LOGO & PHONE BUTTON
   ======================================== */
.header-logo img {
    width: 220px !important;
    max-width: 220px !important;
    height: auto !important;
}

.mobile-logo img {
    width: 180px !important;
    max-width: 180px !important;
    height: auto !important;
}

.th-header {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px) !important;
}

/* Sticky Header */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.th-header.sticky-active {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    z-index: 99999 !important;
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
    animation: slideDown 0.4s ease-out forwards !important;
}

/* Header Phone Button - Weißer Text auf dunklem Hintergrund */
.header-button .th-btn,
.header-button a.th-btn {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
    color: #ffffff !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25) !important;
}

.header-button .th-btn:hover,
.header-button a.th-btn:hover {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
}

/* Navigation */
.main-menu > ul > li > a {
    color: #1e293b !important;
    font-weight: 600 !important;
    font-size: 15px !important;
}

.main-menu > ul > li > a:hover,
.main-menu > ul > li.active > a {
    color: #1e3a5f !important;
}

.main-menu ul.sub-menu {
    background: #ffffff !important;
    border-radius: 12px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.12) !important;
    padding: 8px !important;
}

.main-menu ul.sub-menu li a {
    color: #334155 !important;
    border-radius: 8px !important;
    padding: 12px 18px !important;
}

.main-menu ul.sub-menu li a:hover {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
    color: #ffffff !important;
}

/* ========================================
   BUTTONS
   ======================================== */
.th-btn {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 15px 32px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25) !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

.th-btn:hover {
    background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.35) !important;
    color: #ffffff !important;
}

.th-btn.style7 {
    background: transparent !important;
    border: 2px solid #1e3a5f !important;
    color: #1e3a5f !important;
    box-shadow: none !important;
}

.th-btn.style7:hover {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
    border-color: transparent !important;
    color: #ffffff !important;
}

.th-btn.style-radius {
    border-radius: 50px !important;
}

/* ========================================
   ACCORDION / FAQ - TEXT BLAU/DUNKEL
   ======================================== */
.accordion-card {
    background: #ffffff !important;
    border-radius: 12px !important;
    margin-bottom: 12px !important;
    border: 1px solid #e2e8f0 !important;
    overflow: hidden !important;
}

.accordion-card:hover,
.accordion-card.active {
    border-color: #1e3a5f !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1) !important;
}

/* Accordion Button Text - DUNKEL nicht weiß */
.accordion-button {
    background: #ffffff !important;
    color: #0f172a !important;
    font-weight: 600 !important;
    padding: 20px 24px !important;
    font-size: 1rem !important;
}

.accordion-button:not(.collapsed) {
    background: #f8fafc !important;
    color: #1e3a5f !important;
    box-shadow: none !important;
}

.accordion-button::after {
    filter: brightness(0) !important;
}

.accordion-button:not(.collapsed)::after {
    filter: none !important;
}

.accordion-button i {
    color: #1e3a5f !important;
}

.accordion-body {
    background: #ffffff !important;
    color: #475569 !important;
    padding: 0 24px 20px 24px !important;
}

.accordion-body p,
.faq-text {
    color: #0f172a !important;
    margin: 0 !important;
}

/* FAQ Text im Contact-Bereich - Dunkelblau */
#contact-sec .accordion-body,
#contact-sec .accordion-body p,
#contact-sec .faq-text {
    color: #0f172a !important;
}

/* ========================================
   HERO SECTION
   ======================================== */
.th-hero-wrapper {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
}

.hero-title {
    color: #0f172a !important;
    font-weight: 800 !important;
}

.hero-title .text-theme {
    color: #1e3a5f !important;
    -webkit-text-fill-color: #1e3a5f !important;
}

.hero-text {
    color: #475569 !important;
}

.sub-title {
    color: #1e3a5f !important;
    font-weight: 700 !important;
    font-size: 0.875rem !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
}

/* ========================================
   SERVICE CARDS
   ======================================== */
.service_card3 {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 36px 28px !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
    transition: all 0.3s ease !important;
}

.service_card3:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12) !important;
    border-color: rgba(30, 58, 95, 0.3) !important;
}

.service_card3 .box-icon {
    width: 80px !important;
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(135deg, #e2e8f0 0%, #f1f5f9 100%) !important;
    border-radius: 16px !important;
    margin-bottom: 24px !important;
}

.service_card3 .box-icon i {
    color: #1e3a5f !important;
    font-size: 2rem !important;
}

.service_card3:hover .box-icon {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
}

.service_card3:hover .box-icon i {
    color: #ffffff !important;
}

.service_card3 .box-title {
    color: #0f172a !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
}

.service_card3 .box-title a {
    color: inherit !important;
}

.service_card3_text {
    color: #64748b !important;
    line-height: 1.7 !important;
}

/* ========================================
   SECTION TITLES
   ======================================== */
.sec-title {
    color: #0f172a !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
}

.title-area {
    margin-bottom: 50px !important;
}

/* ========================================
   CHOOSE FEATURE AREA - MIT ICONS
   ======================================== */
.choose-feature3 {
    display: flex !important;
    align-items: flex-start !important;
    padding: 20px !important;
    border-radius: 16px !important;
    margin-bottom: 16px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.3s ease !important;
}

.choose-feature3:hover {
    border-color: #1e3a5f !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08) !important;
    transform: translateX(5px) !important;
}

.choose-feature3_icon {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 20px !important;
}

.choose-feature3_icon i {
    color: #ffffff !important;
    font-size: 1.5rem !important;
}

.choose-feature3_icon img {
    display: none !important;
}

.choose-feature3 .box-title {
    color: #0f172a !important;
    font-weight: 700 !important;
    font-size: 1.1rem !important;
    margin-bottom: 8px !important;
}

.choose-feature3_text {
    color: #64748b !important;
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* ========================================
   BACKGROUND SECTIONS
   ======================================== */
.bg-smoke {
    background: #f8fafc !important;
}

/* Contact Section - Dunkler Hintergrund */
#contact-sec,
#contact-sec[data-bg-src] {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
}

#contact-sec .sec-title,
#contact-sec .sub-title,
#contact-sec h2,
#contact-sec p,
#contact-sec .contact-text {
    color: #ffffff !important;
}

#contact-sec .sub-title {
    color: #94a3b8 !important;
}

#contact-sec .header-info_label {
    color: #94a3b8 !important;
}

#contact-sec .header-info_link,
#contact-sec .header-info_link a,
#contact-sec .btn-title {
    color: #ffffff !important;
}

/* ========================================
   BREADCRUMB
   ======================================== */
.breadcumb-wrapper {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
    padding: 100px 0 70px !important;
}

.breadcumb-title {
    color: #ffffff !important;
    font-weight: 800 !important;
}

.breadcumb-menu li,
.breadcumb-menu li a {
    color: rgba(255, 255, 255, 0.75) !important;
}

.breadcumb-menu li a:hover {
    color: #ffffff !important;
}

/* ========================================
   PRICE BOXES - VERKAUFSSTARK PREMIUM DESIGN
   ======================================== */
.price-box.style6 {
    background: #ffffff !important;
    border-radius: 24px !important;
    border: 2px solid #e2e8f0 !important;
    padding: 44px 36px !important;
    position: relative !important;
    overflow: visible !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.price-box.style6::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 6px !important;
    background: linear-gradient(90deg, #e2e8f0 0%, #cbd5e1 100%) !important;
    border-radius: 24px 24px 0 0 !important;
    transition: all 0.3s ease !important;
}

.price-box.style6:hover {
    border-color: #1e3a5f !important;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.2) !important;
    transform: translateY(-12px) !important;
}

.price-box.style6:hover::before {
    background: linear-gradient(90deg, #0f172a 0%, #1e3a5f 100%) !important;
}

/* Mittleres Paket hervorgehoben - Empfohlen */
.price_wrapp:nth-child(2) .price-box.style6 {
    border: 3px solid #1e3a5f !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.22) !important;
    transform: scale(1.03) !important;
}

.price_wrapp:nth-child(2) .price-box.style6::before {
    background: linear-gradient(90deg, #0f172a 0%, #1e3a5f 100%) !important;
    height: 8px !important;
}

.price_wrapp:nth-child(2) .price-box.style6:hover {
    transform: scale(1.05) translateY(-8px) !important;
    box-shadow: 0 35px 70px rgba(15, 23, 42, 0.28) !important;
}

.price-box_price {
    color: #0f172a !important;
    font-weight: 800 !important;
    font-size: 2.75rem !important;
    text-align: center !important;
}

.price-box_price .duration {
    color: #64748b !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
}

.price-box.style6 .box-title {
    color: #0f172a !important;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    text-align: center !important;
}

.price-box.style6 .price-box_text {
    color: #64748b !important;
    text-align: center !important;
}

.offer-feature {
    position: absolute !important;
    top: -14px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 10 !important;
}

.offer-feature .feature {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
    color: #ffffff !important;
    padding: 8px 24px !important;
    border-radius: 50px !important;
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.3) !important;
}

/* Preis-Features Liste */
.available-list ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.available-list ul li {
    position: relative !important;
    padding-left: 32px !important;
    margin-bottom: 14px !important;
    color: #334155 !important;
    font-size: 0.95rem !important;
}

.available-list ul li::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 4px !important;
    width: 20px !important;
    height: 20px !important;
    background: #dcfce7 !important;
    border-radius: 50% !important;
}

.available-list ul li::after {
    content: '✓' !important;
    position: absolute !important;
    left: 5px !important;
    top: 4px !important;
    color: #16a34a !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
}

.available-list ul li.unavailable {
    color: #94a3b8 !important;
}

.available-list ul li.unavailable::before {
    background: #fee2e2 !important;
}

.available-list ul li.unavailable::after {
    content: '✕' !important;
    color: #dc2626 !important;
}

/* ========================================
   PROJECT CARDS
   ======================================== */
.project-card3 {
    border-radius: 16px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06) !important;
    transition: all 0.4s ease !important;
}

.project-card3:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 24px 48px rgba(15, 23, 42, 0.15) !important;
}

.project-card3 .project-content {
    background: linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.95) 100%) !important;
}

.project-subtitle {
    color: #94a3b8 !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    font-size: 0.75rem !important;
}

.project-card3 .box-title,
.project-card3 .box-title a {
    color: #ffffff !important;
}

/* ========================================
   FOOTER
   ======================================== */
.footer-wrapper.bg-black {
    background: linear-gradient(180deg, #0f172a 0%, #020617 100%) !important;
}

.widget_title.style2 {
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1.15rem !important;
    margin-bottom: 24px !important;
    padding-bottom: 16px !important;
    position: relative !important;
}

.widget_title.style2::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 40px !important;
    height: 3px !important;
    background: #25D366 !important;
    border-radius: 2px !important;
}

.footer-wrapper p,
.footer-wrapper .about-text {
    color: #94a3b8 !important;
}

.footer-wrapper .menu a {
    color: #94a3b8 !important;
}

.footer-wrapper .menu a:hover {
    color: #ffffff !important;
}

.copyright-wrap {
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding-top: 24px !important;
    margin-top: 40px !important;
}

.copyright-text {
    color: #64748b !important;
}

/* WhatsApp Button im Footer */
.th-social a {
    width: 42px !important;
    height: 42px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #25D366 !important;
    border-radius: 10px !important;
    color: #ffffff !important;
    margin-right: 10px !important;
    transition: all 0.3s ease !important;
}

.th-social a:hover {
    background: #128C7E !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4) !important;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
    position: fixed !important;
    bottom: 100px !important;
    right: 24px !important;
    width: 60px !important;
    height: 60px !important;
    background: #25D366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4) !important;
    z-index: 999 !important;
    transition: all 0.3s ease !important;
}

.whatsapp-float:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5) !important;
}

.whatsapp-float i {
    color: #ffffff !important;
    font-size: 1.75rem !important;
}

.whatsapp-tooltip {
    position: absolute !important;
    right: 70px !important;
    background: #0f172a !important;
    color: #ffffff !important;
    padding: 8px 14px !important;
    border-radius: 8px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    opacity: 0 !important;
    visibility: hidden !important;
    transition: all 0.3s ease !important;
    pointer-events: none !important;
}

.whatsapp-tooltip::after {
    content: '' !important;
    position: absolute !important;
    right: -8px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    border: 4px solid transparent !important;
    border-left-color: #0f172a !important;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1 !important;
    visibility: visible !important;
    right: 75px !important;
}

/* ========================================
   CONTACT INFO CARDS
   ======================================== */
.contact-info {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 36px 28px !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.3s ease !important;
}

.contact-info:hover {
    border-color: #1e3a5f !important;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.1) !important;
    transform: translateY(-5px) !important;
}

.contact-info_icon {
    width: 64px !important;
    height: 64px !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 20px !important;
}

.contact-info_icon i {
    color: #ffffff !important;
    font-size: 1.5rem !important;
}

.contact-info .box-title {
    color: #0f172a !important;
    font-weight: 700 !important;
}

.contact-info_text {
    color: #475569 !important;
}

.contact-info_text a {
    color: #1e3a5f !important;
    font-weight: 600 !important;
}

/* ========================================
   FORMS
   ======================================== */
.form-control,
.form-select {
    border: 2px solid #e2e8f0 !important;
    border-radius: 10px !important;
    padding: 14px 20px !important;
    background-color: #ffffff !important;
    color: #334155 !important;
}

.form-control:focus,
.form-select:focus {
    border-color: #1e3a5f !important;
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1) !important;
}

.form-control::placeholder {
    color: #94a3b8 !important;
}

/* ========================================
   LINE BUTTONS
   ======================================== */
.line-btn {
    color: #1e3a5f !important;
    font-weight: 600 !important;
}

.line-btn:hover {
    color: #0f172a !important;
}

.line-btn i {
    margin-left: 8px !important;
}

.line-btn:hover i {
    transform: translateX(5px) !important;
}

/* ========================================
   FSMANAGER SECTION
   ======================================== */
.fsm-feature {
    display: flex !important;
    align-items: center !important;
    padding: 12px 16px !important;
    background: #f1f5f9 !important;
    border-radius: 10px !important;
}

.fsm-feature i {
    color: #1e3a5f !important;
    margin-right: 12px !important;
}

.fsm-feature span {
    color: #334155 !important;
    font-weight: 500 !important;
}

.fsm-showcase {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
    border-radius: 20px !important;
    padding: 48px 36px !important;
    text-align: center !important;
}

.fsm-icon-main {
    width: 90px !important;
    height: 90px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 20px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 24px !important;
}

.fsm-icon-main i {
    font-size: 2.5rem !important;
    color: #ffffff !important;
}

.fsm-title {
    color: #ffffff !important;
    font-size: 1.75rem !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
}

.fsm-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
    margin-bottom: 28px !important;
}

.fsm-features-grid {
    display: flex !important;
    justify-content: center !important;
    gap: 20px !important;
    flex-wrap: wrap !important;
}

.fsm-feature-item {
    text-align: center !important;
    padding: 14px 18px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    min-width: 85px !important;
    transition: all 0.3s ease !important;
}

.fsm-feature-item:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    transform: translateY(-3px) !important;
}

.fsm-feature-item i {
    display: block !important;
    color: #60a5fa !important;
    font-size: 1.5rem !important;
    margin-bottom: 8px !important;
}

.fsm-feature-item span {
    color: #ffffff !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
}

/* ========================================
   PROCESS CARDS - ZAHLEN WEIß BEI HOVER
   ======================================== */
.process-card {
    background: #ffffff !important;
    border-radius: 16px !important;
    padding: 32px 24px !important;
    border: 1px solid #e2e8f0 !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    height: 100% !important;
}

.process-card:hover {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
    border-color: transparent !important;
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2) !important;
}

.process-card .process-number {
    width: 60px !important;
    height: 60px !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 20px !important;
    color: #ffffff !important;
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    transition: all 0.3s ease !important;
}

.process-card:hover .process-number {
    background: #ffffff !important;
    color: #1e3a5f !important;
}

.process-card .box-title {
    color: #0f172a !important;
    font-weight: 700 !important;
    margin-bottom: 12px !important;
    transition: color 0.3s ease !important;
}

.process-card:hover .box-title {
    color: #ffffff !important;
}

.process-card p,
.process-card .process-text {
    color: #64748b !important;
    transition: color 0.3s ease !important;
}

.process-card:hover p,
.process-card:hover .process-text {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Alternative Process Styling */
.process-box,
.step-card {
    height: 100% !important;
}

.process-box:hover .process-box_num,
.step-card:hover .step-number {
    background: #ffffff !important;
    color: #1e3a5f !important;
}

/* ========================================
   YEAR COUNTER BOX
   ======================================== */
.year-counter {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
    border-radius: 16px !important;
    padding: 30px !important;
}

.year-counter_number {
    color: #ffffff !important;
    font-weight: 800 !important;
}

.year-counter_text {
    color: rgba(255, 255, 255, 0.9) !important;
}

.counter-number {
    color: #1e3a5f !important;
    font-weight: 800 !important;
}

/* ========================================
   CHECKLIST
   ======================================== */
.checklist.style2 ul li {
    position: relative !important;
    padding-left: 32px !important;
    margin-bottom: 14px !important;
    color: #334155 !important;
}

.checklist.style2 ul li::before {
    content: '✓' !important;
    position: absolute !important;
    left: 0 !important;
    color: #1e3a5f !important;
    font-weight: 700 !important;
}

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.3) !important;
}

.scroll-top:hover {
    transform: translateY(-5px) !important;
}

/* ========================================
   CONTACT SIDEBAR CARD
   ======================================== */
.contact-sidebar-card {
    background: #f8fafc !important;
    border-radius: 20px !important;
    padding: 32px 28px !important;
    height: 100% !important;
    border: 1px solid #e2e8f0 !important;
}

.sidebar-title {
    font-size: 1.35rem !important;
    font-weight: 800 !important;
    color: #0f172a !important;
    margin-bottom: 24px !important;
}

.sidebar-feature {
    display: flex !important;
    align-items: flex-start !important;
    margin-bottom: 20px !important;
    padding: 12px !important;
    border-radius: 12px !important;
    margin-left: -12px !important;
    margin-right: -12px !important;
}

.sidebar-feature:hover {
    background: #ffffff !important;
}

.sidebar-feature-icon {
    width: 44px !important;
    height: 44px !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    margin-right: 14px !important;
}

.sidebar-feature-icon i {
    color: #ffffff !important;
}

.sidebar-feature-content strong {
    display: block !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
}

.sidebar-feature-content span {
    color: #64748b !important;
    font-size: 0.875rem !important;
}

.sidebar-divider {
    height: 1px !important;
    background: #e2e8f0 !important;
    margin: 24px 0 !important;
}

.sidebar-cta {
    text-align: center !important;
}

.sidebar-cta p {
    color: #64748b !important;
    margin-bottom: 14px !important;
}

.sidebar-cta .th-btn {
    width: 100% !important;
}

/* ========================================
   MOBILE MENU
   ======================================== */
.th-menu-wrapper {
    background: #ffffff !important;
}

.th-mobile-menu ul li a {
    color: #1e293b !important;
    font-weight: 600 !important;
    padding: 12px 18px !important;
    border-radius: 8px !important;
}

.th-mobile-menu ul li a:hover {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
    color: #ffffff !important;
}

/* Pfeil am Anfang der Menüpunkte entfernen */
.th-mobile-menu ul li a:before {
    display: none !important;
}

/* Doppeltes Plus-Symbol verhindern - nur das im span behalten */
.th-mobile-menu ul .th-item-has-children > a:after {
    display: none !important;
}

.th-menu-toggle {
    color: #ffffff !important;
}

/* ========================================
   CALL BUTTON
   ======================================== */
.call-btn {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.call-btn i {
    width: 48px !important;
    height: 48px !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #ffffff !important;
}

.call-btn .btn-text {
    color: #64748b !important;
    font-size: 0.85rem !important;
}

.call-btn a,
.call-btn .btn-title {
    color: #0f172a !important;
    font-weight: 700 !important;
}

/* ========================================
   ABOUT FEATURE STYLES
   ======================================== */
.about-feature.style4 {
    display: flex !important;
    align-items: flex-start !important;
    padding: 20px !important;
    border-radius: 16px !important;
    margin-bottom: 16px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    transition: all 0.3s ease !important;
}

.about-feature.style4:hover {
    border-color: #1e3a5f !important;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08) !important;
}

.about-feature_icon {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%) !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-right: 18px !important;
}

.about-feature_icon i {
    color: #ffffff !important;
    font-size: 1.25rem !important;
}

.about-feature_title {
    color: #0f172a !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
}

.about-feature_text {
    color: #64748b !important;
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

/* ========================================
   EQUAL HEIGHT CARDS
   ======================================== */
.contact-cards-equal .col-xl-4,
.contact-cards-equal .col-md-6 {
    display: flex !important;
}

.contact-cards-equal .contact-info {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

/* ========================================
   PRICE NOTE BOX
   ======================================== */
.price-note {
    max-width: 980px !important;
    margin: 20px auto 0 !important;
    padding: 16px 24px !important;
    border-radius: 12px !important;
    background: #f0f9ff !important;
    border: 1px solid #bae6fd !important;
    color: #0369a1 !important;
    font-size: 0.9rem !important;
    text-align: center !important;
}

/* ========================================
   BOX TITLE LINKS
   ======================================== */
.box-title a {
    color: inherit !important;
}

.box-title a:hover {
    color: #1e3a5f !important;
}

/* ========================================
   MAP SECTION
   ======================================== */
.map-sec {
    overflow: hidden !important;
    margin: 0 16px !important;
    border-radius: 16px 16px 0 0 !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1199px) {
    .price_wrapp:nth-child(2) .price-box.style6 {
        transform: translateY(0) !important;
    }
}

@media (max-width: 991px) {
    .th-btn {
        padding: 13px 26px !important;
    }

    .service_card3 {
        padding: 28px 22px !important;
    }

    .sec-title {
        font-size: 1.75rem !important;
    }

    .breadcumb-title {
        font-size: 2rem !important;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 1.75rem !important;
    }

    .sec-title {
        font-size: 1.5rem !important;
    }

    .breadcumb-wrapper {
        padding: 80px 0 50px !important;
    }

    .breadcumb-title {
        font-size: 1.5rem !important;
    }
}

/* ========================================
   LINK & SELECTION COLORS
   ======================================== */
a {
    transition: color 0.3s ease !important;
}

a:hover {
    color: #1e3a5f !important;
}

::selection {
    background: rgba(30, 58, 95, 0.15) !important;
    color: #0f172a !important;
}

/* ========================================
   PRICING SECTION - Toggle & Cards
   ======================================== */

/* Pricing Toggle Switch - Custom */
.pricing-toggle-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.pricing-switch {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f1f5f9;
    padding: 12px 28px;
    border-radius: 50px;
}

.switch-label {
    font-size: 15px;
    font-weight: 600;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.3s ease;
    user-select: none;
}

.switch-label.active {
    color: #1e3a5f;
}

.switch-box {
    position: relative;
    width: 50px;
    height: 26px;
    background: #1e3a5f;
    border-radius: 26px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.switch-circle {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.switch-box.active .switch-circle {
    transform: translateX(24px);
}

/* Pricing Tabs - wie im Original */
.pricing-tabs {
    position: relative;
    display: inline-block;
    margin-top: 31px;
    margin-bottom: 60px;
}

.switch-area {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background: #f1f5f9;
    padding: 12px 28px;
    border-radius: 50px;
}

.discount-tag {
    position: absolute;
    bottom: -3px;
    right: 0;
    transform: translate(110px, 100%);
    display: inline-flex;
    align-items: flex-end;
    gap: 10px;
    color: var(--theme-color);
    font-weight: 500;
    font-size: 16px;
    white-space: nowrap;
}

@media (max-width: 575px) {
    .pricing-tabs {
        margin-bottom: 20px;
    }
    .discount-tag {
        display: none;
    }
}

/* Pricing Cards - Style 2 */
.price-box.style2 {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid #e2e8f0;
}

.price-box.style2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(30, 58, 95, 0.15);
}

.price-box.style2 .offer-tag {
    position: absolute;
    top: 0;
    right: 0;
}

.price-box.style2 .offer-tag .tag {
    background: linear-gradient(135deg, #1e3a5f, #0f172a);
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.price-box.style2 .price-title-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.price-box.style2 .price-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a5f, #0f172a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
}

.price-box.style2 .subtitle {
    font-size: 12px;
    font-weight: 700;
    color: #1e3a5f;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.price-box.style2 .box-title {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.price-box.style2 .price-box_text {
    color: #64748b;
    font-size: 15px;
    margin-bottom: 20px;
}

.price-box.style2 .price-box_price {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 5px;
}

.price-box.style2 .price-box_price .duration {
    font-size: 16px;
    font-weight: 500;
    color: #64748b;
}

.price-box.style2 .yearly-note {
    font-size: 13px;
    color: #1e3a5f;
    font-weight: 500;
    margin-bottom: 20px;
}

.price-box.style2 .price-box_content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price-box.style2 .available-list {
    flex: 1;
    margin-bottom: 25px;
}

.price-box.style2 .available-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-box.style2 .available-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 15px;
    color: #475569;
}

/* Remove ::before bullets */
.price-box.style2 .available-list li::before {
    display: none !important;
    content: none !important;
}

.price-box.style2 .available-list li:last-child {
    border-bottom: none;
}

.price-box.style2 .available-list li i {
    font-size: 16px;
    flex-shrink: 0;
}

.price-box.style2 .available-list li .fa-circle-check {
    color: #10b981;
}

.price-box.style2 .available-list li.unavailable {
    color: #94a3b8;
}

.price-box.style2 .available-list li .fa-circle-xmark {
    color: #cbd5e1;
}

.price-box.style2 .th-btn.btn-fw {
    width: 100%;
    background: linear-gradient(135deg, #1e3a5f, #0f172a);
    border: none;
    padding: 15px 30px;
    font-weight: 600;
}

.price-box.style2 .th-btn.btn-fw:hover {
    background: linear-gradient(135deg, #0f172a, #1e3a5f);
    transform: translateY(-2px);
}

/* Wrapper Hide/Show */
.wrapper-full.hide {
    display: none;
}

/* Price Note */
.price-note {
    color: #64748b;
    font-size: 14px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-tabs {
        flex-direction: column;
        gap: 15px;
    }

    .price-box.style2 {
        padding: 30px 20px;
    }

    .price-box.style2 .price-box_price {
        font-size: 36px;
    }
}

/* ========================================
   ÜBER UNS PAGE STYLES
   ======================================== */

/* Stat-Box: Abstand zwischen Zahl und Text */
.stat-box.text-center p {
    margin-top: 15px !important;
}

/* Stat-Box: Gleiche Höhe */
.experience-stats {
    display: flex;
    flex-wrap: wrap;
}

.experience-stats .col-6 {
    display: flex;
}

.experience-stats .stat-box {
    width: 100%;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Service Cards: Gleiche Höhe im "Was uns auszeichnet" Bereich */
.bg-smoke .service_card3 {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bg-smoke .service_card3 .service_card3_text {
    flex-grow: 1;
}

/* Process Cards: Hover-Effekt für Zahlen */
.process-card {
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12) !important;
}

.process-card .process-number {
    transition: all 0.3s ease;
}

.process-card:hover .process-number {
    background: linear-gradient(135deg, #3b82f6 0%, #1e3a5f 100%) !important;
}

.process-card:hover .process-number span {
    color: #ffffff !important;
}
