/*
Theme Name: Fach-Faktura Theme V3
Description: 100% exakte Nachbildung basierend auf Screenshots - WordPress 6.8.2
Version: 3.0
Author: Fach-Faktura GmbH
*/

/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    font-size: 16px;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header - basierend auf Screenshots */
.site-header {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #961981, #7e1569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #ffffff;
    font-weight: 800;
    font-size: 18px;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #961981;
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.main-nav a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #961981;
}

/* Hero Section - korrigiertes Layout basierend auf Screenshot */
.hero-section {
    background: linear-gradient(135deg, #961981 0%, #7a1465 100%);
    color: white;
    padding: 120px 0 60px;
    margin-top: 70px;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 400;
    opacity: 0.95;
}

.hero-services {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.service-tag {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: fit-content;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: #961981;
    color: #ffffff;
    border: 2px solid #961981;
}

.btn-primary:hover {
    background: #ffffff;
    color: #961981;
    border-color: #961981;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(150, 25, 129, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
    background: #ffffff;
    color: #961981;
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Hero Stats - vertikales Layout rechts - GRÖSSERE KREISE */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: #961981;
    border: 3px solid rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.stat-content h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 3px;
    opacity: 0.95;
}

.stat-description {
    font-size: 13px;
    opacity: 0.8;
    line-height: 1.4;
}

/* Owner Quote Section */
.owner-quote {
    background: #ffffff;
    padding: 80px 0;
}

.quote-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.quote-content h3 {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 800;
}

.quote-text {
    font-size: 24px;
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.5;
    font-weight: 400;
}

.quote-author {
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.quote-title {
    color: #666;
    font-weight: 400;
}

/* Services Section - mit Icons basierend auf Screenshot */
.services-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #961981, #7e1569);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 32px;
}

.service-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 800;
}

.service-tagline {
    color: #961981;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.service-description {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 16px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: #555;
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    font-size: 15px;
    line-height: 1.5;
}

.service-features li:before {
    content: "✓";
    color: #961981;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

/* Software Integration - mit Icons */
.software-section {
    background: #ffffff;
    padding: 100px 0;
}

.software-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.software-item {
    text-align: center;
    padding: 40px 20px;
    background: #f8f9fa;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.software-item:hover {
    background: #961981;
    color: #ffffff;
    transform: translateY(-5px);
    border-color: #961981;
}

.software-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #961981, #7e1569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    transition: all 0.3s ease;
}

.software-item:hover .software-logo {
    background: #ffffff;
    color: #961981;
}

.software-name {
    font-weight: 700;
    font-size: 18px;
    color: #333;
}

.software-item:hover .software-name {
    color: #ffffff;
}

/* Weitere Leistungen - mit Icons */
.additional-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin: 80px 0;
}

.additional-service {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 20px;
}

.additional-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #961981, #7e1569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #ffffff;
    font-size: 32px;
}

.additional-service h4 {
    color: #333;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.additional-service p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

.interest-section {
    text-align: center;
    margin-top: 60px;
    padding: 60px 40px;
    background: linear-gradient(135deg, #961981, #7e1569);
    border-radius: 25px;
    color: #ffffff;
}

.interest-section h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 800;
}

.interest-section p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* About Section - mit Icons */
.about-section {
    background: #ffffff;
    padding: 100px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-main h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 800;
}

.about-main h3 {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
    font-weight: 700;
}

.market-highlight {
    background: linear-gradient(135deg, #961981, #7e1569);
    color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
}

.market-highlight h4 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 800;
}

.market-highlight p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 50px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 15px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #961981, #7e1569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content h5 {
    color: #333;
    font-weight: 800;
    font-size: 20px;
    margin-bottom: 8px;
}

.feature-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 50px 0;
}

.location-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.location-item h4 {
    color: #333;
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 800;
}

.location-item h5 {
    color: #961981;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.location-item ul {
    list-style: none;
    padding: 0;
}

.location-item li {
    color: #666;
    font-size: 15px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.location-item li:before {
    content: "•";
    color: #961981;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Owner Section */
.owner-image {
    text-align: center;
}

.owner-image img {
    width: 100%;
    max-width: 350px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
}

.owner-info h4 {
    color: #333;
    font-size: 24px;
    margin-bottom: 8px;
    font-weight: 800;
}

.owner-info p {
    color: #961981;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 30px;
}

.expertise-section {
    text-align: left;
    margin-top: 40px;
}

.expertise-section h4 {
    color: #333;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 800;
}

.expertise-quote {
    font-style: italic;
    color: #555;
    margin: 25px 0;
    padding: 25px;
    background: #f8f9fa;
    border-left: 4px solid #961981;
    font-size: 18px;
    line-height: 1.6;
    border-radius: 8px;
}

.expertise-list h5 {
    color: #961981;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.expertise-list ul {
    list-style: none;
    padding: 0;
}

.expertise-list li {
    color: #666;
    font-size: 15px;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    line-height: 1.4;
}

.expertise-list li:before {
    content: "•";
    color: #961981;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Testimonials Section - funktionierend mit Navigation */
.testimonials-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.testimonials-container {
    position: relative;
}

.testimonial-main {
    background: #ffffff;
    padding: 60px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.testimonial-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #961981, #7e1569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #ffffff;
    font-size: 32px;
}

.testimonial-company {
    color: #961981;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.testimonial-details {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 22px;
    font-style: italic;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text:before {
    content: '';
    width: 40px;
    height: 4px;
    background: #961981;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 2px;
}

.testimonial-text:after {
    content: '';
    width: 4px;
    height: 40px;
    background: #961981;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 2px;
}

.testimonial-highlight {
    background: linear-gradient(135deg, #961981, #7e1569);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 18px;
    margin: 30px 0;
    display: inline-block;
}

/* Testimonial Clients Grid */
.testimonial-clients {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.client-item {
    text-align: center;
    padding: 25px 15px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.client-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.client-name {
    color: #333;
    font-weight: 800;
    font-size: 16px;
    margin-bottom: 8px;
}

.client-type {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.client-software {
    color: #961981;
    font-size: 14px;
    font-weight: 700;
}

/* Testimonial Navigation Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cccccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #961981;
    transform: scale(1.2);
}

.testimonial-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-cta h3 {
    color: #333;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.testimonial-cta p {
    color: #666;
    font-size: 18px;
    margin-bottom: 30px;
}

/* Contact Section - mit Icons basierend auf Screenshot */
.contact-section {
    background: #ffffff;
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info {
    background: #f8f9fa;
    padding: 50px 40px;
    border-radius: 25px;
}

.contact-info h3 {
    color: #333;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-info .tagline {
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 20px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #961981, #7e1569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-content h4 {
    color: #333;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 5px;
}

.contact-content p {
    color: #666;
    font-size: 15px;
    line-height: 1.5;
    margin: 0;
}

.contact-content a {
    color: #961981;
    text-decoration: none;
    font-weight: 600;
}

.contact-content a:hover {
    text-decoration: underline;
}

/* Krystyna Contact Card */
.owner-contact {
    background: linear-gradient(135deg, #961981, #7e1569);
    color: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    margin: 40px 0;
}

.owner-contact img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.owner-contact h5 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.owner-contact .position {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    opacity: 0.9;
}

.owner-contact .quote {
    font-style: italic;
    font-size: 15px;
    line-height: 1.5;
    opacity: 0.9;
}

.owner-contact-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.owner-contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.owner-contact-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
    color: #ffffff;
}

/* Why Us Section */
.why-us {
    margin-top: 40px;
}

.why-us h4 {
    color: #333;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 25px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
}

.why-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #961981, #7e1569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 16px;
    flex-shrink: 0;
}

.why-content strong {
    color: #333;
    font-size: 16px;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.why-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
}

.contact-form {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    color: #333;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 15px;
}

.contact-form .form-description {
    color: #666;
    font-size: 18px;
    margin-bottom: 40px;
}

/* Footer - dunkler Hintergrund mit 4 Spalten basierend auf Screenshot */
.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 25px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #961981;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #961981, #7e1569);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: #ffffff;
    font-weight: 800;
    font-size: 20px;
}

.footer-logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
}

.footer-krystyna {
    text-align: center;
}

.footer-krystyna img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid rgba(150, 25, 129, 0.3);
}

.footer-krystyna h5 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.footer-krystyna p {
    color: #961981;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Footer Social Media Icons */
.footer-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.footer-social-icon {
    width: 40px;
    height: 40px;
    background: rgba(150, 25, 129, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon:hover {
    background: #961981;
    transform: scale(1.1);
    color: #ffffff;
}

.copyright {
    text-align: center;
    color: #999999;
    font-size: 14px;
    line-height: 1.6;
    padding-top: 40px;
    border-top: 1px solid #333333;
}

/* Cookie Notice - funktionierend */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: #ffffff;
    padding: 25px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
}

.cookie-text h4 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cookie-text p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 12px;
    color: #dddddd;
}

.cookie-text strong {
    font-weight: 800;
    color: #ffffff;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
}

.cookie-btn-essential {
    background: transparent;
    color: #ffffff;
    border: 2px solid #666666;
}

.cookie-btn-essential:hover {
    border-color: #961981;
    color: #961981;
}

.cookie-btn-manage {
    background: transparent;
    color: #ffffff;
    border: 2px solid #961981;
}

.cookie-btn-manage:hover {
    background: #961981;
    color: #ffffff;
}

.cookie-btn-all {
    background: #961981;
    color: #ffffff;
    border: 2px solid #961981;
}

.cookie-btn-all:hover {
    background: #7e1569;
    border-color: #7e1569;
}

/* Contact Form 7 Styles */
.wpcf7-form {
    display: grid;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.form-row.full-width {
    grid-template-columns: 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form select,
.wpcf7-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: #ffffff;
}

.wpcf7-form input:focus,
.wpcf7-form select:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: #961981;
    box-shadow: 0 0 0 4px rgba(150, 25, 129, 0.1);
}

.wpcf7-form textarea {
    min-height: 150px;
    resize: vertical;
}

.wpcf7-form .wpcf7-submit {
    background: #961981;
    color: #ffffff;
    border: 2px solid #961981;
    padding: 16px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.wpcf7-form .wpcf7-submit:hover {
    background: #7e1569;
    border-color: #7e1569;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(150, 25, 129, 0.3);
}

.wpcf7-response-output {
    margin-top: 20px;
    padding: 18px;
    border-radius: 10px;
    font-size: 15px;
}

.wpcf7-mail-sent-ok {
    background: #d4edda;
    color: #155724;
    border: 2px solid #c3e6cb;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    background: #f8d7da;
    color: #721c24;
    border: 2px solid #f5c6cb;
}

.wpcf7-not-valid {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1) !important;
}

.wpcf7-validation-error {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .software-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .stat-item {
        flex-direction: column;
        text-align: center;
    }
    
    .features-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }
    
    .software-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .additional-services {
        grid-template-columns: 1fr;
    }
    
    .testimonial-clients {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .service-card,
    .testimonial-main,
    .contact-form,
    .contact-info {
        padding: 30px 20px;
    }
    
    .software-grid,
    .testimonial-clients {
        grid-template-columns: 1fr;
    }
}

/* =====================================
   MOBILE MENU FUNCTIONALITY
   ===================================== */

/* Mobile Menu Toggle Button - Verbessert */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    border-radius: 6px;
    position: relative;
    z-index: 1001;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(150, 25, 129, 0.1);
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background-color: #961981;
    margin: 4px 0;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 3px;
    transform-origin: center;
}

.mobile-menu-toggle.active {
    background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    background-color: #ffffff;
    width: 32px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
    background-color: #ffffff;
    width: 32px;
}

/* Desktop Navigation - Updated */
.main-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.main-nav .nav-menu li a {
    color: #333333;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.main-nav .nav-menu li a:hover {
    color: #961981;
}

/* Mobile Navigation Styles - Optimiert */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: linear-gradient(135deg, #961981, #7e1569);
        transition: right 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 1000;
        padding-top: 80px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
        overflow-y: auto;
    }
    
    .main-nav.mobile-menu-open {
        right: 0;
    }
    
    .main-nav .nav-menu {
        flex-direction: column;
        gap: 0;
        padding: 30px 20px;
        list-style: none;
        margin: 0;
    }
    
    .main-nav .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
    }
    
    .main-nav .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .main-nav .nav-menu li a {
        color: #ffffff;
        font-size: 20px;
        font-weight: 500;
        padding: 20px 0;
        display: block;
        transition: all 0.3s ease;
        text-decoration: none;
        position: relative;
    }
    
    .main-nav .nav-menu li a:hover {
        color: #ffffff;
        background: rgba(255, 255, 255, 0.1);
        padding-left: 15px;
        transform: translateX(5px);
    }
    
    .main-nav .nav-menu li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 0;
        height: 2px;
        background: #ffffff;
        transition: width 0.3s ease;
        transform: translateY(-50%);
    }
    
    .main-nav .nav-menu li a:hover::before {
        width: 30px;
    }
    
    /* Header adjustments for mobile */
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }
    
    /* Improved overlay for mobile menu */
    .main-nav.mobile-menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.6);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
}

/* Smaller mobile devices */
@media (max-width: 480px) {
    .main-nav {
        width: 100%;
        right: -100%;
    }
    
    .main-nav .nav-menu {
        padding: 20px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}