:root {
    --primary-color: #444927;
    --secondary-color: #71461c;
    --accent-color: #8a8f5f;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    padding-top: 80px;
}

.header {
    z-index: 1000;
}

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

.navbar-brand img {
    max-height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.nav-link {
    color: var(--dark-color) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.slider-section {
    position: relative;
    height: 700px;
    overflow: hidden;
}

#bannerCarousel {
    height: 100%;
}

#bannerCarousel .carousel-inner {
    height: 100%;
}

#bannerCarousel .carousel-item {
    height: 100%;
}

.slider-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    pointer-events: none;
}


.slider-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slider-subtitle {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.btn-slider {
    font-size: 1.2rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.about-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.advantage-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.advantage-icon {
    width: 60px;
    height: 60px;
    display: inline-block;
}

.advantage-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.advantage-text {
    color: #666;
}

.process-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.process-carousel {
    padding: 0 60px;
}

.process-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.process-track::-webkit-scrollbar {
    display: none;
}

.process-card {
    flex: 0 0 300px;
    scroll-snap-align: start;
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.process-card-number {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--primary-color);
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 20px rgba(68, 73, 39, 0.4);
}

.process-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.process-card-text {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.process-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: white;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

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

.process-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.process-btn-prev {
    left: 0;
}

.process-btn-next {
    right: 0;
}

.process-btn svg {
    width: 24px;
    height: 24px;
    stroke-width: 3;
}

@media (max-width: 768px) {
    .process-carousel {
        padding: 0 0;
    }
    
    .process-card {
        flex: 0 0 280px;
        padding: 2rem 1.5rem;
    }
    
    .process-btn {
        width: 40px;
        height: 40px;
    }
    
    .process-btn-prev {
        left: 10px;
    }
    
    .process-btn-next {
        right: 10px;
    }
}

.portfolio-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.portfolio-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.portfolio-item img {
    height: 300px;
    object-fit: cover;
}

.contacts-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.contact-info {
    height: 100%;
}

.contact-info a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.map-container {
    height: 100%;
    min-height: 400px;
}

.footer {
    margin-top: 0;
}

.cookie-banner {
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

@media (max-width: 992px) {
    .slider-title {
        font-size: 2.5rem;
    }
    
    .slider-subtitle {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 768px) {
    .slider-section {
        height: 500px;
    }
    
    .slider-image {
        height: 500px;
    }
    
    .slider-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .portfolio-item img {
    height: 250px;
}

.partner-logo {
    max-height: 80px; /* Adjust as needed */
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.partners-row {
    gap: 1.8rem;
}

.partner-logo:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

}

/* Custom styles for carousel captions */
.slider-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 0; 
    padding-bottom: 0;
    z-index: 10;
}

@media (max-width: 767px) {
    .slider-content {
        padding-top: 0; 
    }

    .slider-title {
        font-size: 1.8rem;
    }

    .slider-subtitle {
        font-size: 1rem !important;
    }

    .btn-slider {
        font-size: 0.9rem;
        padding: 10px 20px !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}


