/* 
 * Klumpp Anlagentechnik - Custom CSS
 * Modernisiertes Design mit dem Farbschema Orange/Schwarz
 */

:root {
    --primary-color: #FF6600; /* Orange - Hauptfarbe aus dem Logo */
    --primary-light: #FF8533; /* Helleres Orange */
    --primary-dark: #CC5200; /* Dunkleres Orange */
    --secondary-color: #212529; /* Schwarz */
    --text-color: #333333;
    --light-color: #f8f9fa;
    --light-gray: #f5f5f5;
    --dark-color: #212529;
    --border-radius: 6px;
    --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
    --section-padding: 80px 0;
}

/* Base styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.7;
    background-color: #fafafa;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-light-gray {
    background-color: #f5f5f5;
    position: relative;
    z-index: 1;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.03);
    transition: background-color 0.3s ease;
}

.bg-light-gray::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, transparent 100%);
    z-index: -1;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.6s;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.15);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.2);
}

.btn-outline-light {
    border-width: 2px;
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1rem;
}

/* Section styles */
.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    transition: background-color 0.3s ease;
    background-color: #ffffff;
}

.section:not(.bg-light-gray, .bg-primary) {
    background-color: #ffffff;
}

.section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.05) 0%, rgba(255, 102, 0, 0) 70%);
    top: -150px;
    right: -150px;
    z-index: -1;
}

.section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.05) 0%, rgba(255, 102, 0, 0) 70%);
    bottom: -150px;
    left: -150px;
    z-index: -1;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
    color: var(--secondary-color);
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 70px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 1.1rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

/* Header styles */
#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 15px 0;
}

#header.header-scrolled {
    background: rgba(33, 37, 41, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.navbar-brand img {
    max-height: 50px;
    transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    margin: 0 5px;
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 5px;
    left: 15px;
    transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: calc(100% - 30px);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    padding: 100px 0;
    overflow: hidden;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(33, 37, 41, 0.7);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    margin-bottom: 30px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-btn {
    display: flex;
    gap: 15px;
}

.hero-image {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.hero-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Animierter Hero-Hintergrund (Fallback) */
.hero-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    background: linear-gradient(135deg, var(--secondary-color) 0%, #000000 100%);
}

.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-shapes .shape {
    position: absolute;
    background-color: rgba(255, 102, 0, 0.15);
    border-radius: 50%;
    animation: float 15s infinite ease-in-out;
}

.hero-shapes .shape:nth-child(1) {
    width: 250px;
    height: 250px;
    top: -50px;
    left: -100px;
    animation-delay: 0s;
    animation-duration: 18s;
}

.hero-shapes .shape:nth-child(2) {
    width: 150px;
    height: 150px;
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
    animation-duration: 12s;
}

.hero-shapes .shape:nth-child(3) {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: 15%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.hero-shapes .shape:nth-child(4) {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 5%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.hero-shapes .shape:nth-child(5) {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 5%;
    animation-delay: 5s;
    animation-duration: 14s;
}

.hero-shapes .shape:nth-child(6) {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
    animation-duration: 8s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.5;
    }
}

/* Responsive styles for hero section */
@media (max-width: 992px) {
    .hero-section {
        height: auto;
        padding: 120px 0 80px;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-btn {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

/* About section */
.about-img {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.about-img img {
    transition: var(--transition);
}

.about-img:hover img {
    transform: scale(1.05);
}

.about-content {
    padding: 20px 0;
}

.about-content h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-item {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.about-item i {
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 15px;
    margin-top: 3px;
}

/* Services section */
.service-card {
    transition: all 0.4s ease;
    border: none;
    overflow: hidden;
    position: relative;
    z-index: 1;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}

.service-card.show {
    opacity: 1;
    transform: translateY(0);
}

.service-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(to top, rgba(255, 102, 0, 0.08), transparent);
    transition: all 0.4s ease;
    z-index: -1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    background-color: rgba(255, 255, 255, 0.95);
}

.service-card:hover::before {
    height: 100%;
}

.service-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: all 0.4s ease;
}

.service-card:hover .card-img-top {
    transform: scale(1.05);
}

.service-card .card-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 15px;
    border-bottom: 2px solid transparent;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-card:hover .card-title {
    border-bottom-color: var(--primary-color);
}

.service-card .card-text {
    color: #666;
    margin-bottom: 20px;
}

.service-card .card-footer {
    padding: 15px 20px;
    background: transparent;
    border: none;
}

.service-card .btn-outline-primary {
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.service-card .btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 102, 0, 0.2);
    transition: all 0.6s;
    z-index: -1;
}

.service-card .btn-outline-primary:hover::before {
    left: 100%;
}

/* Pulsierender Effekt für Icons in Service-Karten */
.service-card .card-img-top i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Service Introduction Box */
.service-intro {
    margin-bottom: 50px;
    padding: 30px;
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-intro::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.1) 0%, rgba(255, 102, 0, 0) 70%);
    top: -75px;
    right: -75px;
    border-radius: 50%;
}

.service-intro .lead {
    font-size: 1.2rem;
    font-weight: 400;
    color: #555;
    text-align: center;
    margin-bottom: 0;
    line-height: 1.8;
}

/* Service-Info Box */
.service-info-card {
    background: linear-gradient(to right, #f9f9f9, #fff);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-color);
    overflow: hidden;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-info-card::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    top: -75px;
    right: -75px;
    border-radius: 50%;
    z-index: -1;
}

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

.service-info-card .card-body {
    padding: 30px;
}

.service-info-card h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-info-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-info-card .btn-primary {
    padding: 12px 25px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Modal */
#serviceModal .modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

#serviceModal .modal-header {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

#serviceModal .modal-title {
    font-weight: 600;
}

#serviceModal .modal-body {
    padding: 30px;
}

#serviceModal .lead {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

#serviceModal #modal-image {
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

#serviceModal .modal-footer {
    border-top: none;
}

/* Products section */
.product-card {
    background: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--secondary-color);
}

.product-info p {
    margin-bottom: 20px;
}

.product-info .btn {
    margin-top: 10px;
}

/* Testimonials section */
.testimonial-slider {
    margin-bottom: 40px;
}

.testimonial-item {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin: 15px;
    text-align: center;
    position: relative;
}

.testimonial-content {
    margin-bottom: 25px;
    position: relative;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.testimonial-content p::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--primary-color);
    font-size: 24px;
    position: absolute;
    left: -10px;
    top: -10px;
    opacity: 0.2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.2);
}

.testimonial-author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.testimonial-author-info span {
    font-size: 0.9rem;
    color: #777;
}

/* Slick Slider Custom Styles */
.slick-dots {
    bottom: -30px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: var(--primary-color);
    opacity: 0.3;
}

.slick-dots li.slick-active button:before {
    opacity: 1;
    color: var(--primary-color);
}

.slick-prev, 
.slick-next {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    z-index: 1;
    transition: all 0.3s ease;
}

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

.slick-prev:before, 
.slick-next:before {
    display: none;
}

.slick-prev i, 
.slick-next i {
    color: #fff;
    font-size: 16px;
}

.slick-prev:hover, 
.slick-next:hover {
    background: var(--primary-hover);
}

@media (max-width: 768px) {
    .slick-prev {
        left: -10px;
    }
    
    .slick-next {
        right: -10px;
    }
}

/* Counters section */
.counter-box {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 30px;
    transition: var(--transition);
}

.counter-box:hover {
    transform: translateY(-5px);
}

.counter-box i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.counter-value {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.counter-title {
    font-size: 18px;
    color: #777;
}

/* FAQ section */
.accordion-item {
    margin-bottom: 15px;
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    border: none;
    background-color: #fff;
}

.accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(255, 102, 0, 0.05);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 102, 0, 0.1);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23FF6600' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
}

/* Contact section */
.contact-info {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
    border-left: 3px solid var(--primary-color);
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.contact-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item p {
    margin-bottom: 0;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    height: 100%;
}

.form-control {
    height: 50px;
    border: 1px solid #eee;
    border-radius: var(--border-radius);
    padding: 10px 15px;
    font-size: 14px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 102, 0, 0.25);
}

textarea.form-control {
    height: 150px;
    resize: none;
}

/* Footer */
footer {
    background: var(--secondary-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

footer h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
    padding-bottom: 15px;
}

footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

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

footer ul li {
    margin-bottom: 12px;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

footer a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    margin-right: 10px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 60px;
}

.footer-bottom p {
    margin-bottom: 0;
    text-align: center;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: #fff;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(33, 37, 41, 0.95);
    color: #fff;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.cookie-text {
    flex: 1;
    padding-right: 20px;
}

.cookie-text h5 {
    margin-top: 0;
    margin-bottom: 10px;
}

.cookie-text p {
    margin-bottom: 0;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

/* Responsive Cookie Banner */
@media (max-width: 767px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-text {
        margin-bottom: 15px;
        padding-right: 0;
    }
}

/* Page Header for standalone pages */
.page-header {
    background-color: #f8f9fa;
    color: var(--text-color);
    padding: 80px 0 20px;
    margin-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.03);
}

.page-header h1 {
    margin-bottom: 10px;
    color: var(--secondary-color);
    font-size: 2.2rem;
    font-weight: 600;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    opacity: 0.8;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    opacity: 1;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--text-color);
}

/* Content Box for Legal Pages */
.content-box {
    background-color: #fff;
    border-radius: 6px;
    padding: 35px 40px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}

.content-box h2:first-child {
    margin-top: 0;
}

.content-box h2 {
    color: var(--secondary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 22px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.content-box h3 {
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 19px;
}

.content-box h4 {
    font-size: 17px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #444;
    font-weight: 600;
}

.content-box p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #555;
}

.content-box ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: #555;
}

/* Footer adjustments */
footer .social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
    transition: all 0.3s;
}

footer .social-links a:hover {
    background-color: var(--primary-color);
}

footer address p {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

footer address p i {
    position: absolute;
    left: 0;
    top: 5px;
}

/* Responsive styles for footer */
@media (max-width: 767px) {
    footer h4 {
        margin-top: 30px;
    }
    
    footer .col-md-4:first-child h4 {
        margin-top: 0;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.fade-in.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive styles */
@media (max-width: 1199px) {
    .hero-section h1 {
        font-size: 48px;
    }
}

@media (max-width: 991px) {
    .section {
        padding: 80px 0;
    }
    
    .hero-section h1 {
        font-size: 42px;
    }
    
    .hero-section p {
        font-size: 20px;
    }
    
    .about-content {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .hero-section p {
        font-size: 18px;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .hero-section h1 {
        font-size: 30px;
    }
    
    .hero-section p {
        font-size: 16px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
}

/* Logo Styles */
.logo-container {
    display: flex;
    align-items: center;
}

.logo-text {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
    line-height: 1.1;
}

.logo-brand {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
}

.logo-tagline {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 500;
}

/* Navbar Styles */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-dark {
    background-color: rgba(33, 37, 41, 0.95) !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    margin: 0 5px;
    font-weight: 500;
    position: relative;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    bottom: 5px;
    left: 15px;
    transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    width: calc(100% - 30px);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .navbar-brand img {
        max-height: 40px;
    }
    
    .logo-brand {
        font-size: 1.2rem;
    }
    
    .logo-tagline {
        font-size: 0.7rem;
    }
}

/* Feature box enhancements */
.feature-box {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--primary-color);
    transition: var(--transition);
    z-index: -1;
}

.feature-box:hover::before {
    width: 100%;
    opacity: 0.05;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 3px solid var(--primary-color);
}

/* Hero section animations */
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

.hero-btn .btn {
    position: relative;
    overflow: hidden;
}

.hero-btn .btn-primary {
    animation: pulse 3s infinite;
}

/* Card hover effects */
.service-box, .product-card, .testimonial-item, .contact-info, .contact-form {
    transition: all 0.4s ease-in-out;
}

.service-box:hover, .product-card:hover {
    transform: translateY(-10px);
}

/* Modern scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 102, 0, 0.6);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Zusätzliche Animation für Service-Info-Card */
.service-info-card {
    position: relative;
    overflow: hidden;
}

.service-info-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    border-radius: 50%;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
    100% {
        transform: translateY(0) rotate(360deg);
    }
}

/* Service-Karten Animationen */
.service-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.4s ease, background-color 0.4s ease;
}

.service-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* Pulsierender Effekt für Icons in Service-Karten */
.service-card .card-img-top i {
    animation: pulse 2s infinite;
}

/* Service-Karten Hover-Effekt mit Schatten und Farbe */
.service-card:hover {
    background-color: rgba(255, 255, 255, 0.95);
}

/* Zusätzliche Animation für Service-Info-Card */
.service-info-card {
    position: relative;
    overflow: hidden;
}

.service-info-card::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 102, 0, 0.05) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    border-radius: 50%;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

/* Sticky Kontakt-Buttons */
.sticky-contact-buttons {
    position: fixed;
    right: 20px;
    bottom: 80px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sticky-contact-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    animation: pulse-light 2s infinite;
}

.sticky-contact-button:hover {
    transform: scale(1.1);
    color: #fff;
    animation: none;
}

.sticky-contact-button i {
    font-size: 24px;
}

.sticky-contact-button.phone {
    background-color: var(--primary-color);
}

.sticky-contact-button.whatsapp {
    background-color: #25D366;
}

@keyframes pulse-light {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
} 