/* Enhanced Visual Elements */
.decorative-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffbb00, transparent);
    margin: 40px auto;
    width: 80%;
    max-width: 600px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced section backgrounds */
/* Removed background patterns for cleaner look */

/* Slideshow decorative elements */
/* Removed decorative elements for cleaner look */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Slideshow Container */
.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(0.25turn, rgba(56,2,155,0), rgb(255, 187, 0), rgba(56,2,155,0));
    border-image-slice: 1;
    background-color: #f4f3ee;
    z-index: 1;
}

/* Slideshow Content Wrapper */
.slideshow-wrapper {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

/* Slides Container */
.slides-container {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    width: 100%;
    will-change: transform;
}

/* Individual Slide */
.slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 20px;
}

/* Service Items Grid */
.services-grid {
    display: grid;
    width: 90%;
    margin: 0 auto;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Service Item */
.service-item {
    text-align: center;
    padding: 20px;
    background: #ecebe7;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(85, 64, 35, 0.1);
    animation: fadeInUp 0.6s ease-out;
}

.service-item:nth-child(1) { animation-delay: 0.1s; }
.service-item:nth-child(2) { animation-delay: 0.2s; }
.service-item:nth-child(3) { animation-delay: 0.3s; }
.service-item:nth-child(4) { animation-delay: 0.4s; }

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(85, 64, 35, 0.15);
    background: linear-gradient(135deg, #ecebe7 0%, #f4f3ee 100%);
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 187, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-item:hover::before {
    left: 100%;
}

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

.service-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    object-fit: contain;
}

.service-item h3 {
    font-family: "Montserrat", serif;
    font-weight: 500;
    color: #554023;
    font-size: 16px;
    margin: 0;
    line-height: 1.4;
}

/* Navigation Buttons */
.slideshow-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(85, 64, 35, 0.8);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slideshow-nav:hover {
    background: rgba(71, 54, 31, 0.8);
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 187, 0, 0.3);
}

.slideshow-nav.prev {
    left: 15px;
}

.slideshow-nav.next {
    right: 15px;
}

/* Slide Indicators */
.slideshow-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background: #ffbb00;
    border-color: white;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255,255,255,0.8);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 10px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .service-item {
        padding: 20px;
        margin: 10px auto;
        width: 90%;
        max-width: 300px;
        box-sizing: border-box;
    }
    
    .service-item img, .service-item svg {
        width: 50px;
        height: 50px;
    }
    
    .service-item h3 {
        font-size: 14px;
    }
    
    .slideshow-nav {
        width: 35px;
        height: 35px;
    }
    
    /* Mobile single item layout */
    .mobile-single-item .slide {
        min-width: 100%;
    }
    
    .mobile-single-item .services-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    
    .mobile-single-item .service-item {
        width: 85%;
        max-width: 280px;
        margin: 15px auto;
        padding: 25px 20px;
    }
    
    .slideshow-nav.prev {
        left: 10px;
    }
    
    .slideshow-nav.next {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .slide {
        padding: 15px 10px;
    }
    
    .services-grid {
        gap: 10px;
    }
    
    .service-item {
        padding: 12px;
    }
    
    .service-item h3 {
        font-size: 13px;
    }
}

/* Touch device optimizations */
@media (hover: none) {
    .slideshow-nav {
        opacity: 1;
    }
    
    .service-item:hover {
        transform: none;
    }
}

/* New Sections Styling */
.benefits-section, .process-section, .testimonials-section {

    position: relative;
}

.section-title {
    text-align: center;
    font-family: "Urbanist", serif;
    font-size: 2.5rem;
    color: #554023;
    max-width: 90%;
    margin: 0 auto;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-top: 100px;
    margin-bottom: 100px;
    font-weight: 500;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 25%;
    height: 3px;
    background: linear-gradient(90deg, #a7947c, #554023);
    border-radius: 2px;
}

/* Benefits Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.benefit-item {
    text-align: center;
    padding: 40px 30px;
    backdrop-filter: blur(5px);
    border-radius: 15px;
    border: 1px solid rgba(85, 64, 35, 0.2);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a7947c, #554023);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.benefit-icon {
    font-size: 3rem;
    color: #554023;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    display: inline-block;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
    color: rgb(207, 162, 47);
    text-shadow: 0 0 20px rgba(255, 187, 0, 0.3);
}

.benefit-item h3 {
    font-family: "Urbanist", serif;
    font-size: 1.3rem;
    color: #554023;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 500;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
      font-family: "Urbanist", serif;
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    position: relative;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    font-family: "Urbanist", serif;
    position: relative;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 70px;
    width: 2px;
    height: 50px;
    background: #554023;
    opacity: 0.3;
}

.process-step:last-child::before {
    display: none;
}

.step-number {
    width: 70px;
    height: 70px;
    background: #554023;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 30px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(85, 64, 35, 0.2);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(85, 64, 35, 0.3);
}

.step-content h3 {
    font-family: "Urbanist", serif;
    font-size: 1.4rem;
    color: #554023;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 500;
}

.step-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
    font-family: "Urbanist", serif;
}

/* Testimonials Section */
.testimonials-section {
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.testimonial-item::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: #ffbb00;
    opacity: 0.4;
    font-family: serif;
    transition: all 0.3s ease;
}

.testimonial-item:hover::before {
    opacity: 0.7;
    transform: scale(1.1);
}

.stars {
    margin-bottom: 20px;
    color: #ffbb00;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.testimonial-item:hover .stars {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(255, 187, 0, 0.4);
}

.testimonial-item p {
    color: #444;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.client-name {
    color: #554023;
    font-weight: 500;
    font-size: 0.9rem;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .benefit-item {
        padding: 30px 20px;
    }
    
    .benefit-icon {
        font-size: 2.5rem;
    }
    
    .benefit-item h3 {
        font-size: 1.2rem;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 20px;
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .process-step::before {
        left: 50%;
        transform: translateX(-50%);
        top: 60px;
        height: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 0 15px;
    }
    
    .testimonial-item {
        padding: 30px 20px;
    }
    
    .testimonial-item::before {
        font-size: 3rem;
        top: 15px;
        left: 15px;
    }
}

@media (max-width: 480px) {
    .benefits-section, .process-section, .testimonials-section {
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .benefit-item, .testimonial-item {
        padding: 25px 15px;
    }
}

/* Hide old slider styles during transition */
#slider-container-content,
.services-introduction {
    display: none;
}