.breadcrumbs-wrapper {
    margin-top: 40px;
    margin-bottom: 10px;
}

.breadcrumbs {
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--dark-color);
}

.breadcrumbs a {
    color: var(--dark-color);
    text-decoration: none;
    padding: 2px 4px;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: var(--accent-color);
    background-color: rgba(232, 176, 32, 0.1);
    border-radius: 4px;
}

.breadcrumbs li {
    color: var(--dark-color);
}

.breadcrumbs li.active {
    color: var(--dark-color);
    font-weight: 700;
}

.breadcrumbs .separator {
    color: var(--gray-medium);
    padding: 0 2px;
}

.configuration-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.configuration-item {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.configuration-item h4 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.configuration-item p {
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.project-tabs {
    margin-bottom: 40px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.tabs-nav {
    display: flex;
    border-bottom: 1px solid var(--border-color);
    background: var(--secondary-color);
}

.tab-btn {
    padding: 16px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--gray-dark);
    position: relative;
    transition: var(--transition);
    border: none;
    background: none;
    font-size: 1rem;
}

.tab-btn:hover {
    color: var(--dark-color);
    background: rgba(255, 255, 255, 0.2);
}

.tab-btn.active {
    color: var(--dark-color);
    background: var(--light-color);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-color);
}

.tabs-content {
    padding: 30px;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.project-views-block {
    margin-bottom: 40px;
}

.project-views-block .section-title {
    margin-bottom: 15px;
}

.project-views-block .section-title h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0;
    position: relative;
    padding-bottom: 10px;
}

.project-views-block .section-title h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.project-views-image-wrapper {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.project-views-image-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .tabs-nav {
        overflow-x: auto;
        white-space: nowrap;
    }

    .tab-btn {
        padding: 14px 20px;
        min-width: 150px;
    }

    .tabs-content {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .project-views-image-wrapper {
        padding: 15px;
    }

    .project-views-image-wrapper img {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .configuration-item {
        padding: 16px;
    }

    .configuration-item h4 {
        font-size: 1rem;
    }

    .tabs-nav {
        flex-direction: column;
    }

    .tab-btn {
        width: 100%;
        padding: 12px 16px;
    }
}

.project-description-section {
    margin-bottom: 40px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 30px;
}

.project-description-section h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.project-description-section .description-content {
    line-height: 1.8;
    color: var(--gray-dark);
}

.project-gallery {
    margin-bottom: 40px;
}

.project-gallery .main-image {
    margin-bottom: 20px;
    cursor: pointer;
}

.project-gallery .main-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    transition: var(--transition);
}

.project-gallery .main-image:hover img {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.project-gallery .thumbnails {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
}

.project-gallery .thumbnail {
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.project-gallery .thumbnail:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.project-gallery .thumbnail img {
    width: 100%;
    height: 80px;
    object-fit: cover;
}

.project-complectation-section {
    margin-bottom: 40px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 30px;
}

.project-complectation-section h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.complectation-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.complectation-table th,
.complectation-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.complectation-table th {
    width: 25%;
    font-weight: 600;
    color: var(--dark-color);
    background: rgba(0, 0, 0, 0.03);
    vertical-align: top;
}

.complectation-table td {
    color: var(--gray-dark);
    line-height: 1.6;
}

.complectation-table tr:last-child th,
.complectation-table tr:last-child td {
    border-bottom: none;
}

.complectation-table tr:hover {
    background: rgba(0, 0, 0, 0.02);
}

.project-photo-reports-section {
    margin-bottom: 40px;
}

.project-photo-reports-section h3 {
    margin-bottom: 25px;
    color: var(--dark-color);
    font-size: 1.5rem;
}

.project-photo-reports-section .photo-gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

.project-photo-reports-section .photo-gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    aspect-ratio: 4/3;
    background: var(--secondary-color);
    border: 1px solid transparent;
    width: 100%;
}

.project-photo-reports-section .photo-gallery-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.project-photo-reports-section .photo-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-photo-reports-section .photo-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 10px 15px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.project-custom-options-section {
    margin: 60px 0;
}

.project-custom-options-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
}

.custom-options-intro {
    font-size: 1.1rem;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 35px;
    line-height: 1.6;
}

.custom-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.custom-option-item {
    background: var(--light-color);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid transparent;
    transition: var(--transition);
}

.custom-option-item:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.custom-option-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.custom-option-text {
    font-size: 1.05rem;
    color: var(--text-color);
    line-height: 1.5;
    font-weight: 500;
}

@media (max-width: 992px) {
    .custom-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .custom-options-grid {
        grid-template-columns: 1fr;
    }
    
    .project-custom-options-section {
        padding: 25px 20px;
    }
    
    .project-custom-options-section h3 {
        font-size: 1.5rem;
    }
    
    .custom-options-intro {
        font-size: 1rem;
    }
    
    .custom-option-icon {
        font-size: 2.5rem;
    }
}

@media (max-width: 1200px) {
    .project-photo-reports-section .photo-gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .project-photo-reports-section .photo-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .project-photo-reports-section .photo-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .project-photo-reports-section .photo-gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .project-description-section,
    .project-complectation-section {
        padding: 20px;
    }

    .complectation-table th,
    .complectation-table td {
        padding: 12px 15px;
        display: block;
        width: 100%;
    }

    .complectation-table th {
        background: rgba(0, 0, 0, 0.05);
        padding-bottom: 5px;
    }

    .complectation-table td {
        padding-top: 5px;
    }

    .complectation-table tr {
        display: block;
        margin-bottom: 15px;
        border-bottom: 2px solid var(--border-color) !important;
        padding-bottom: 15px;
    }

    .complectation-table tr:last-child {
        border-bottom: none !important;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

.complectation-table-3col {
    width: 100%;
    border-collapse: collapse;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.complectation-table-3col thead th {
    background: rgba(0, 0, 0, 0.05);
    padding: 18px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--dark-color);
    border-bottom: 2px solid var(--border-color);
}

.complectation-table-3col th,
.complectation-table-3col td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    vertical-align: top;
}

.complectation-table-3col tbody th {
    font-weight: 600;
    color: var(--dark-color);
    background: rgba(0, 0, 0, 0.03);
    width: 25%;
}

.complectation-table-3col td {
    color: var(--gray-dark);
    line-height: 1.6;
}

.complectation-table-3col tr:last-child th,
.complectation-table-3col tr:last-child td {
    border-bottom: none;
}

.complectation-table-3col tr:hover {
    background: rgba(0, 0, 0, 0.02);
}

@media (max-width: 992px) {
    .complectation-table-3col th,
    .complectation-table-3col td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .project-complectation-section {
        padding: 20px;
    }

    .complectation-table-3col thead {
        display: none;
    }

    .complectation-table-3col tbody {
        display: block;
    }

    .complectation-table-3col tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        padding: 15px;
        background: var(--secondary-color);
    }

    .complectation-table-3col th,
    .complectation-table-3col td {
        display: block;
        width: 100%;
        padding: 8px 0;
        border-bottom: 1px solid var(--border-color);
        text-align: left;
    }

    .complectation-table-3col th {
        background: none;
        font-size: 0.95rem;
        color: var(--dark-color);
        padding-top: 12px;
    }

    .complectation-table-3col th::after {
        content: ':';
        float: right;
    }

    .complectation-table-3col td {
        padding-left: 10px;
        color: var(--gray-dark);
    }

    .complectation-table-3col tr:last-child td {
        border-bottom: none;
    }
}

.contact-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--light-color) 100%);
}

.contact-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h2 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.contact-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
}

.contact-header p {
    color: var(--gray-dark);
    font-size: 1.1rem;
    margin-top: 15px;
}

.contact-form {
    background: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    color: var(--dark-color);
    transition: var(--transition);
    font-family: inherit;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="tel"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.contact-form input[readonly] {
    background: var(--secondary-color);
    cursor: not-allowed;
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--gray-dark);
    cursor: pointer;
}

.contact-form .checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.contact-form .checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-form .checkbox-label a:hover {
    text-decoration: none;
}

.contact-form .btn {
    width: 100%;
    padding: 16px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 40px 0;
    }

    .contact-form {
        padding: 25px;
    }

    .contact-header h2 {
        font-size: 1.5rem;
    }

    .contact-header p {
        font-size: 1rem;
    }
}

.project-delivery-section {
    margin-bottom: 40px;
    background: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    padding: 30px;
}

.project-delivery-section h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

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

.delivery-calculator-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.delivery-info-block {
    background: var(--secondary-color);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.delivery-rate-info {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.delivery-rate-info strong {
    color: var(--accent-color);
}

.delivery-hint {
    margin: 0;
    color: var(--gray-dark);
    font-size: 0.95rem;
    font-style: italic;
}

.delivery-map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.delivery-result {
    margin: 20px 0;
}

.delivery-info {
    display: block;
    padding: 12px 16px;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    margin-top: 15px;
}

.delivery-info:hover {
    background: rgba(232, 176, 32, 0.15);
    transform: translateY(-2px);
}

.delivery-info .delivery-icon {
    font-size: 1.5rem;
    margin-right: 8px;
    vertical-align: middle;
}

.delivery-info span {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .project-delivery-section {
        padding: 20px;
    }

    .project-delivery-section h3 {
        font-size: 1.3rem;
    }

    .delivery-map-container #delivery-map {
        height: 400px !important;
    }
}