:root {
    --primary-color: #4864b8;
    --secondary-color: #4864b8;
    /*--secondary-color: #00a8ff;*/
    /*--accent-color: #ff6b6b;*/
    --accent-color: #F9DE1D;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --white: #ffffff;
    --gradient: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Exo 2", Sans-serif;
    color: var(--dark-color);
    overflow-x: hidden;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader {
    width: 80px;
    height: 80px;
    border: 8px solid var(--light-color);
    border-top: 8px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Scroll to Top Button */
#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    /*background: var(--gradient);*/
    background: var(--accent-color);
    /*color: var(--white);*/
    color: var(--dark-color);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

#scrollTopBtn.show {
    opacity: 1;
    visibility: visible;
}

#scrollTopBtn:hover {
    /*background: var(--primary-color);*/
    background: var(--accent-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.4);
}

/* Navigation */
.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 15px 0;
}

.navbar-brand .logo {
    max-height: 60px;
}

.navbar.scrolled {
    padding: 10px 0;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.navbar-brand {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color) !important;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    margin-right: 10px;
    font-size: 32px;
}

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero {
    background: var(--gradient);
    color: var(--white);
    padding: 220px 0 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
}

.btn-custom {
    background: var(--white);
    color: var(--primary-color);
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gradient);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-custom:hover::before {
    width: 100%;
}

.btn-custom:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Section Styles */
section {
    padding: 50px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-color);
    position: relative;
    display: block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--gradient);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Services Section */
.service-card {
    background: var(--white);
    border-radius: 15px;
    padding: 0;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    /*background: var(--gradient);*/
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

.service-card:hover::before {
    transform: scaleX(1);
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.service-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-img {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 0;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-card:hover .service-icon {
    /*color: var(--secondary-color);*/
    color: var(--accent-color);
    transform: scale(1.1);
}

.service-card h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--dark-color);
    padding: 0 30px;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    padding: 0 30px 40px;
}

/* Pricing Section */
.pricing-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
    opacity: 0;
    transform: scale(0.9);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.animate {
    opacity: 1;
    transform: scale(1);
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.pricing-card.featured {
    background: var(--gradient);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card.featured h3,
.pricing-card.featured .price {
    color: var(--white);
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 20px 0;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.pricing-features li::before {
    content: '\f26a';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.pricing-card.featured .pricing-features li::before {
    color: var(--white);
}

.pricing-card.featured .pricing-features li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

/* Why Choose Us */
.feature-box {
    background: var(--light-color);
    border-radius: 15px;
    padding: 0;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    opacity: 0;
    transform: translateX(-30px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    z-index: 2;
}

.feature-box:hover::before {
    transform: scaleX(1);
}

.feature-box.animate {
    opacity: 1;
    transform: translateX(0);
}

.feature-box:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.feature-img {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 0;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.feature-box:hover .feature-img img {
    transform: scale(1.1);
}

.feature-box h4 {
    padding: 0 30px;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.feature-box p {
    padding: 0 30px 40px;
    color: #666;
    line-height: 1.6;
}

/* Gallery Section */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 30px;
    opacity: 0;
    transform: scale(0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item.animate {
    opacity: 1;
    transform: scale(1);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 102, 204, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--white);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: var(--white);
    transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-img {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.stars {
    color: #ffc107;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-form {
    background: var(--white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    border-radius: 10px;
    padding: 12px;
    border: 2px solid #eee;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

.map-container {
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    background: var(--light-color);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.map-container:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 80px 0 20px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    /*background: var(--gradient);*/
}

.footer-wave {
    position: absolute;
    top: -5px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.footer-wave .shape-fill {
    fill: var(--white);
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer-logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--white);
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 32px;
}

.footer-about {
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.footer-links li {
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a i {
    margin-right: 10px;
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 168, 255, 0.4);
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
    flex-direction: column;
}

.newsletter-form input {
    flex: 1;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    outline: none;
    width: 100%;
    margin-bottom: 10px;
}

.newsletter-form button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
    width: 100%;
    margin-bottom: 10px;
}

.newsletter-form button:hover {
    background: var(--secondary-color);
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 0;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Process Steps */
.process-step {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 50px;
    margin-bottom: 20px;
}

.process-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.process-step h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.process-step p {
    color: #666;
    line-height: 1.6;
}

/* Benefits Section */
.benefit-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.benefit-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.benefit-card h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.benefit-card p {
    color: #666;
    line-height: 1.6;
}

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

.accordion-button {
    background: var(--white);
    color: var(--dark-color);
    font-weight: 600;
    padding: 20px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--white);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230066cc'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px;
    background: var(--light-color);
}


/* Services Grid */
.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

.service-item {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    /*background: var(--gradient);*/
    background: var(--accent-color);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-item:hover::before {
    transform: scaleX(1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.service-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.service-item:hover i {
    /*color: var(--secondary-color);*/
    color: var(--accent-color);
    transform: scale(1.1);
}

.service-item h4 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--gradient);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    margin-bottom: 20px;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Before-After Section */
.comparison-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.comparison-image {
    display: block;
    width: 100%;
    height: auto;
}

.comparison-slider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: var(--white);
    cursor: ew-resize;
    transform: translateX(-50%);
}

.comparison-slider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    background: var(--gradient);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.comparison-slider::after {
    content: '\f137 \f138';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--white);
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: bold;
}

.comparison-label {
    position: absolute;
    top: 20px;
    padding: 8px 15px;
    background: rgba(0, 0, 0, 0.7);
    color: var(--white);
    border-radius: 5px;
    font-weight: bold;
}

.comparison-label.before {
    left: 20px;
}

.comparison-label.after {
    right: 20px;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
}


.section-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.booking-form-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.form-control {
    padding: 12px 15px;
    border: 1px solid #e1e5eb;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.btn-custom {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-custom:hover {
    background-color: #2980b9;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-option {
    border: 2px solid #e1e5eb;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option:hover {
    border-color: var(--primary-color);
}

.service-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(52, 152, 219, 0.05);
}

.service-name {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.service-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.service-duration {
    color: #666;
    font-size: 0.9rem;
}

.service-features {
    margin-top: 10px;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.summary-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.summary-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
    border-bottom: 1px solid #e1e5eb;
    padding-bottom: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-total {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
    border-top: 1px solid #e1e5eb;
    padding-top: 10px;
    margin-top: 15px;
}

.time-slot {
    display: inline-block;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e1e5eb;
}

.time-slot:hover {
    background-color: #e9ecef;
}

.time-slot.selected {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #2c3e50 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgZmlsbD0idXJsKCNwYXR0ZXJuKSIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIvPjwvc3ZnPg==');
}


.section-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.booking-form-container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.form-control {
    padding: 12px 15px;
    border: 1px solid #e1e5eb;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

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

.form-label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.btn-custom {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-custom:hover {
    background-color: #2980b9;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-option {
    border: 2px solid #e1e5eb;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-option:hover {
    border-color: var(--primary-color);
}

.service-option.selected {
    border-color: var(--primary-color);
    background-color: rgba(52, 152, 219, 0.05);
}

.service-name {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.service-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.service-duration {
    color: #666;
    font-size: 0.9rem;
}

.service-features {
    margin-top: 10px;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.summary-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.summary-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--secondary-color);
    border-bottom: 1px solid #e1e5eb;
    padding-bottom: 10px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.summary-total {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--primary-color);
    border-top: 1px solid #e1e5eb;
    padding-top: 10px;
    margin-top: 15px;
}

.time-slot {
    display: inline-block;
    padding: 10px 15px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e1e5eb;
}

.time-slot:hover {
    background-color: #e9ecef;
}

.time-slot.selected {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}



#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    /*background-color: var(--primary-color);*/
    background-color: var(--accent-color);
    /*color: white;*/
    color: var(--dark-color);
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 99;
}

#scrollTopBtn.show {
    opacity: 1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }

    100% {
        transform: translateY(0) rotate(360deg);
    }
}

.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.booking-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e1e5eb;
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #e1e5eb;

    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background-color: var(--primary-color);
    color: white;
}

.step.completed .step-number {
    background-color: var(--accent-color);
    color: white;
}

.step-label {
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.step.active .step-label {
    color: var(--primary-color);
}

.step.completed .step-label {
    color: var(--accent-color);
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.confirmation-icon {
    font-size: 5rem;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.confirmation-message {
    text-align: center;
    padding: 50px 0;
}

.booking-id {
    background-color: #f8f9fa;
    padding: 10px 20px;
    border-radius: 8px;
    display: inline-block;
    margin: 20px 0;
    font-weight: 700;
    color: var(--secondary-color);
}


.booking-steps .step-number {
    color: #000000;
}

.number-center {
    display: inline-flex !important;
}

/* Blog Posts */
.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 25px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.blog-card-meta span {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.blog-card-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-card-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: var(--dark-color);
    line-height: 1.4;
}

.blog-card-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-card-category {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Sidebar */
.sidebar-widget {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

/* Search Widget */
.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 2px solid #eee;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
}

.search-form input:focus {
    border-color: var(--primary-color);
}

.search-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.categories-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories-list a {
    color: var(--dark-color);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.categories-list a:hover {
    color: var(--primary-color);
}

.categories-list span {
    background: var(--light-color);
    color: var(--dark-color);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

/* Recent Posts Widget */
.recent-post {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-content h4 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.recent-post-content h4 a:hover {
    color: var(--primary-color);
}

.recent-post-content span {
    font-size: 0.8rem;
    color: #666;
}

/* Tags Widget */
.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-list a {
    background: var(--light-color);
    color: var(--dark-color);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tags-list a:hover {
    background: var(--gradient);
    color: var(--white);
}



/* Pagination */
.pagination {
    justify-content: center;
    margin-top: 50px;
}

.page-link {
    color: var(--dark-color);
    border: none;
    padding: 10px 18px;
    margin: 0 5px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.page-link:hover {
    background: var(--gradient);
    color: var(--white);
}

.page-item.active .page-link {
    background: var(--gradient);
    border-color: var(--primary-color);
}

/* Hero Section */
.blog-hero {
    background: var(--gradient);
    color: var(--white);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.blog-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    line-height: 1.3;
}

.blog-hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease;
    opacity: 0.9;
}

.btn-custom {
    background: var(--white);
    color: var(--primary-color);
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gradient);
    transition: all 0.3s ease;
    z-index: -1;
}

.btn-custom:hover::before {
    width: 100%;
}

.btn-custom:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Blog Content */
.blog-content {
    padding: 80px 0;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-size: 1rem;
    color: #666;
    flex-wrap: wrap;
}

.blog-meta span {
    margin-right: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.blog-meta i {
    margin-right: 8px;
    color: var(--primary-color);
}

.blog-category {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.blog-featured-image {
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-body {
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-body h2 {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 40px 0 20px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.blog-body h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.blog-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--dark-color);
}

.blog-body p {
    margin-bottom: 20px;
}

.blog-body ul,
.blog-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.blog-body li {
    margin-bottom: 10px;
}

.blog-body blockquote {
    background: var(--light-color);
    border-left: 4px solid var(--primary-color);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 10px 10px 0;
    font-style: italic;
    position: relative;
}

.blog-body blockquote::before {
    content: '\f6a5';
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.blog-body blockquote p {
    margin-bottom: 0;
    font-size: 1.2rem;
    color: #555;
}

.info-box {
    background: var(--light-color);
    border-radius: 10px;
    padding: 25px;
    margin: 30px 0;
    border-left: 4px solid var(--primary-color);
}

.info-box h4 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--dark-color);
    display: flex;
    align-items: center;
}

.info-box h4 i {
    margin-right: 10px;
    color: var(--primary-color);
}

/* Author Section */
.author-section {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    margin: 50px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
}

.author-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 25px;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h3 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.author-info .author-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.author-info p {
    margin-bottom: 0;
    color: #666;
}

/* Share Section */
.share-section {
    display: flex;
    align-items: center;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.share-label {
    font-weight: 600;
    margin-right: 15px;
    color: var(--dark-color);
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.pinterest {
    background: #bd081c;
}

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Comments Section */
.comments-section {
    margin: 50px 0;
}

.comments-section h3 {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.comments-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.comment {
    display: flex;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.comment:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px;
    flex-shrink: 0;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content h4 {
    font-size: 1.1rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.comment-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 10px;
}

.comment-content p {
    margin-bottom: 0;
    color: #555;
}

.comment-form {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-top: 40px;
}

.comment-form h4 {
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    border-radius: 10px;
    padding: 12px;
    border: 2px solid #eee;
    transition: all 0.3s ease;
}

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

/* Related Posts */
.related-posts {
    margin: 50px 0;
}

.related-posts h3 {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.related-posts h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.blog-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.2);
}

.blog-card-img {
    height: 200px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.1);
}

.blog-card-content {
    padding: 20px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: #666;
}

.blog-card-meta span {
    margin-right: 15px;
    display: flex;
    align-items: center;
}

.blog-card-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

.blog-card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--dark-color);
    line-height: 1.4;
}

.blog-card-excerpt {
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.blog-card-category {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Sidebar */
.sidebar-widget {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

/* Search Widget */
.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 2px solid #eee;
    border-radius: 50px;
    outline: none;
    transition: all 0.3s ease;
}

.search-form input:focus {
    border-color: var(--primary-color);
}

.search-form button {
    position: absolute;
    right: 5px;
    top: 5px;
    background: var(--gradient);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background: var(--primary-color);
    transform: scale(1.05);
}

/* Categories Widget */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.categories-list li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.categories-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.categories-list a {
    color: var(--dark-color);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.categories-list a:hover {
    color: var(--primary-color);
}

.categories-list span {
    background: var(--light-color);
    color: var(--dark-color);
    padding: 3px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
}

/* Recent Posts Widget */
.recent-post {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.recent-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.recent-post-img {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}

.recent-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 5px;
    line-height: 1.4;
}

.recent-post-content h4 a {
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.recent-post-content h4 a:hover {
    color: var(--primary-color);
}

.recent-post-content span {
    font-size: 0.8rem;
    color: #666;
}

.twitter {
    text-decoration: none;
}

/* Comparison Table */
.comparison-table {
    font-size: 0.9rem;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table .table {
    margin-bottom: 0;
}

.comparison-table thead th {
    background: var(--gradient);
    color: var(--white);
    border: none;
    padding: 20px;
    text-align: center;
    font-weight: 600;
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--light-color);
}

.comparison-table tbody td {
    padding: 15px 20px;
    border: none;
    vertical-align: middle;
}

.comparison-table .feature-name {
    font-weight: 600;
}

.comparison-table .check {
    color: #28a745;
    font-size: 1.2rem;
}

.comparison-table .cross {
    color: #dc3545;
    font-size: 1.2rem;
}

/* Team-specific styles */
.team-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-img {
    height: 280px;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.team-info {
    padding: 25px;
    text-align: center;
}

.team-name {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.team-desc {
    color: var(--text-color);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-color);
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.values-section {
    background: var(--light-color);
    padding: 80px 0;
}

.value-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
}

.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
}

.stat-item {
    text-align: center;
}

.stat-item:hover {
    color: var(--accent-color);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.faq-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
}

.accordion-button {
    font-weight: 600;
    padding: 20px;
    border: none;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
    border-radius: 10px !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(var(--primary-color-rgb), 0.25);
}

.accordion-body {
    padding: 20px;
    background-color: var(--light-color);
    border-radius: 0 0 10px 10px;
}

.search-box {
    max-width: 600px;
    margin: 0 auto 50px;
}

.search-box .form-control {
    border-radius: 50px;
    padding: 15px 25px;
    border: 2px solid var(--light-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.search-box .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(var(--primary-color-rgb), 0.1);
}

.contact-prompt {
    background: var(--light-color);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
}

.quick-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
}

.quick-link {
    background: white;
    border: 2px solid var(--light-color);
    border-radius: 50px;
    padding: 10px 20px;
    font-weight: 600;
    color: var(--dark-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.quick-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.services-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.service-category {
    margin-bottom: 80px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card-large {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.service-desc {
    color: var(--text-color);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features {
    margin-bottom: 25px;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: var(--text-color);
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.9rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-outline-custom {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

.btn-outline-custom:hover {
    background: var(--primary-color);
    color: white;
}

.package-comparison {
    background: var(--light-color);
    border-radius: 15px;
    padding: 20px;
    margin-top: 50px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

.comparison-table th,
.comparison-table td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.feature-check {
    color: var(--success-color);
    font-size: 1.2rem;
}

.feature-na {
    color: var(--text-muted);
}

.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

.more-service {
    margin: auto;
    display: block;
    width: 20%;
}

.odor-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.fabric-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.protection-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.protection-type {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.protection-type:hover {
    transform: translateY(-10px);
}

.protection-type i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.list-unstyled i {
    font-size: 1rem;
}

.stain-resistance {
    background: var(--light-color);
    border-radius: 15px;
    padding: 40px;
    margin-top: 50px;
}

.resistance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.resistance-item {
    text-align: center;
    padding: 20px;
}

.resistance-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.resistance-yes {
    color: var(--success-color);
}

.resistance-no {
    color: var(--danger-color);
}

.maintenance-tips {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
}

.tip-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.tip-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tip-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.list-unstyled {
    text-align: left;
    margin-bottom: 20px;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    margin-left: 2px;
}

.privacy-content {
    padding: 100px 0 50px;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.privacy-section ul {
    padding-left: 20px;
}

.privacy-section li {
    margin-bottom: 10px;
}

.last-updated {
    font-style: italic;
    color: #666;
    margin-bottom: 30px;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.info-table th,
.info-table td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

.info-table th {
    background-color: #f8f9fa;
}

.info-table tr:nth-child(even) {
    background-color: #f2f2f2;
}

.terms-content {
    padding: 100px 0 50px;
}

.terms-section {
    margin-bottom: 40px;
}

.terms-section h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.terms-section ul {
    padding-left: 20px;
}

.terms-section li {
    margin-bottom: 10px;
}

.last-updated {
    font-style: italic;
    color: #666;
    margin-bottom: 30px;
}
.timeline-section {
    overflow: hidden;
    position: relative;
}

.timeline-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-color);
}

.timeline-viewport {
    width: 100%;
    position: relative;
    cursor: default;
}

.timeline-container {
    position: relative;
    height: 650px;
    width: 100%;
    display: flex;
    align-items: center;
    --connector-length: 50px;
}

/* Slider Arrows für Mobil */
.timeline-nav {
    display: flex;
    position: absolute;
    top: var(--line-center, 50%);
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    justify-content: space-between;
    padding: 0;
    z-index: 20;
    pointer-events: none;
}

.timeline-nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--accent-color);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    pointer-events: auto;
    margin: 0 0.5rem;
}

.timeline-nav-btn:hover {
    background: var(--accent-color);
    color: var(--white);
}

.timeline-line {
    position: absolute;
    top: var(--line-center, 50%);
    left: 0;
    width: 100%;
    height: 6px;
    background: #e9ecef;
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 3px;
}

.timeline-line-progress {
    position: absolute;
    top: var(--line-center, 50%);
    left: 0;
    width: 0%;
    height: 6px;
    background: var(--gradient);
    transform: translateY(-50%);
    z-index: 2;
    border-radius: 3px;
    transition: width 0.1s ease-out;
}

.timeline-track {
    display: flex;
    gap: 0;
    padding-left: 0;
    padding-right: 0;
    position: relative;
    z-index: 3;
    will-change: transform;
    height: 100%;
    align-items: center;
}

.timeline-item {
    position: relative;
    width: 100vw;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
    height: 100%;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.slide-out-left {
    opacity: 0;
    transform: translateX(-100vw);
    transition: all 0.3s ease-in;
}

.timeline-item.slide-out-right {
    opacity: 0;
    transform: translateX(100vw);
    transition: all 0.3s ease-in;
}

.timeline-item.slide-in-from-right {
    animation: slideInFromRight 0.3s ease-out forwards;
}

.timeline-item.slide-in-from-left {
    animation: slideInFromLeft 0.3s ease-out forwards;
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100vw);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100vw);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.timeline-dot {
    width: 24px;
    height: 24px;
    background: var(--white);
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: var(--line-center, 50%);
    transform: translate(-50%, -50%);
    z-index: 10;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 1);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: translate(-50%, -50%) scale(1.3);
    background: var(--accent-color);
    border-color: var(--white);
}

.timeline-content-wrapper {
    width: 100%;
    padding: 0 1rem;
    height: var(--wrapper-height, 200px);
    position: absolute;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.timeline-item.top .timeline-content-wrapper,
.timeline-item.bottom .timeline-content-wrapper {
    top: calc(var(--line-center, 50%) + 40px);
    bottom: auto;
    justify-content: flex-start;
}

.timeline-content {
    background: var(--white);
    padding: 15px;
    border-radius: 15px;
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
    box-sizing: border-box;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background: var(--accent-color);
    left: 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.timeline-item.top .timeline-content::before,
.timeline-item.bottom .timeline-content::before {
    top: 0;
    bottom: auto;
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15);
}

.timeline-item.top:hover .timeline-content-wrapper,
.timeline-item.bottom:hover .timeline-content-wrapper {
    transform: translateY(10px);
}

.timeline-item:hover .timeline-content::before {
    transform: scaleX(1);
}

.timeline-connector {
    width: 2px;
    background: var(--accent-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.5;
    z-index: 5;
}

.timeline-item.top .timeline-connector,
.timeline-item.bottom .timeline-connector {
    top: var(--line-center, 50%);
    bottom: auto;
    height: var(--connector-length);
}

.timeline-content h3 {
    margin: 0 0 10px 0;
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: bold;
}

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

.timeline-scroll-hint {
    text-align: center;
    margin-top: 50px;
    color: #999;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@keyframes bounceX {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

.timeline-scroll-hint i {
    animation: bounceX 1.5s infinite;
}

.timeline-restart-wrapper {
    display: none;
}

.timeline-restart {
    width: 60px;
    height: 60px;
    background: var(--white);
    border: 4px solid var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.timeline-restart:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translate(-50%, -50%) scale(1.1) rotate(180deg);
    box-shadow: 0 8px 25px rgba(249, 222, 29, 0.4);
}
