.sliding-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: #222;
    overflow: hidden;
        padding: 50px 0;
}
.sliding-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.sliding-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.sliding-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg,rgba(34,34,34,0.7) 0%,rgba(34,34,34,0.2) 60%,rgba(255,255,255,0.0) 100%);
    z-index: 2;
}
.sliding-hero-content {
    position: relative;
    z-index: 3;
    background: rgba(255,255,255,0.85);
    border-radius: 18px;
    padding: 38px 44px 32px 44px;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    text-align: center;
}
.sliding-hero-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 18px;
}
.sliding-hero-desc {
    font-size: 1.08rem;
    color: #444;
    margin-bottom: 28px;
}
.sliding-hero-cta {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 700;
    background: #ff9800;
    color: #fff;
    border-radius: 10px;
    padding: 16px 38px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
}
.sliding-hero-cta:hover {
    background: #e67c00;
    color: #fffbe6;
}
@media (max-width: 900px) {
    .sliding-hero-content {
        max-width: 98vw;
        margin: 0 auto;
        padding: 28px 12px 22px 12px;
        text-align: center;
    }
    .sliding-hero {
        min-height: 280px;
    }
}
.exterior-promo {
    background: linear-gradient(90deg,#184c36 0%,#6b1a1a 100%);
    padding: 44px 0 36px 0;
    text-align: center;
    margin-bottom: 32px;
}
.exterior-promo-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}
.exterior-promo-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.exterior-promo-cta {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    background: #fff;
    color: #184c36;
    border-radius: 10px;
    padding: 18px 44px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
    margin-top: 8px;
}
.exterior-promo-cta:hover {
    background: #e0f2e9;
    color: #6b1a1a;
}
.exterior-calculator {
    background: #fff;
    padding: 48px 0 32px 0;
}
.exterior-calculator-inner {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 24px;
}
.exterior-calculator-title {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: #2d2d2d;
}
.exterior-calculator-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #f7f7fa;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 28px 20px 20px 20px;
}
.exterior-calculator-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.exterior-calculator-row label {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}
.exterior-calculator-row select {
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #e0e0e7;
    font-size: 1rem;
    background: #fff;
    color: #333;
    outline: none;
    transition: border 0.2s;
}
.exterior-calculator-row select:focus {
    border-color: #ff9800;
}
.exterior-calculator-row input[type="checkbox"] {
    accent-color: #ff9800;
    margin-right: 8px;
}
.exterior-calculator-btn {
    margin-top: 12px;
    padding: 12px 0;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    background: #ff9800;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
}
.exterior-calculator-btn:hover {
    background: #e67c00;
}
.exterior-calculator-result {
    margin-top: 18px;
    background: #fffbe6;
    border-radius: 8px;
    padding: 18px 14px;
    font-size: 1.15rem;
    color: #333;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.sliding-categories {
    background: #f7f7fa;
    padding: 54px 0 38px 0;
    margin-bottom: 32px;
}
.sliding-categories-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.sliding-categories-title {
    font-size: 2rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 38px;
    text-align: center;
}
.sliding-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.sliding-category-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: box-shadow 0.2s;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
}
.sliding-category-card:hover {
    box-shadow: 0 6px 32px rgba(0,0,0,0.16);
}
.sliding-category-img-wrap {
    width: 100%;
    height: 140px;
    position: relative;
    overflow: hidden;
}
.sliding-category-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.2s;
}
.sliding-category-card:hover .sliding-category-img-wrap img {
    filter: brightness(0.65);
}
.sliding-category-name {
    font-size: 1.18rem;
    font-weight: 700;
    color: #184c36;
    margin: 22px 0 10px 0;
    text-align: center;
}
.sliding-category-desc {
    font-size: 1rem;
    color: #444;
    text-align: center;
    margin-bottom: 18px;
    padding: 0 12px;
}
@media (max-width: 1100px) {
    .sliding-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 700px) {
    .sliding-categories-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .sliding-category-card {
        min-height: 240px;
    }
}
.exterior-tips {
    background: #f7f7fa;
    padding: 48px 0 32px 0;
}
.exterior-tips-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}
.exterior-tips-title {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2d2d2d;
}
.exterior-tips-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-left: 32px;
}

.exterior-tip {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: box-shadow 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 18px 22px 18px;
}
.sliding-advantages {
    background: #f7f7fa;
    padding: 54px 0 38px 0;
    margin-bottom: 32px;
}
.sliding-advantages-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.sliding-advantages-title {
    font-size: 2rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 38px;
    text-align: center;
}
.sliding-advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.sliding-adv-card {
    border-top: 4px solid transparent;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.18s;
}
.sliding-adv-card.modern {
    border-top: 4px solid #ff9800;
}
.sliding-adv-card.modern:nth-child(2) {
    border-top: 4px solid #184c36;
}
.sliding-adv-card.modern:nth-child(3) {
    border-top: 4px solid #6b1a1a;
}
.sliding-adv-card.modern:nth-child(4) {
    border-top: 4px solid #009688;
}
.sliding-adv-card.modern:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
    transform: translateY(-4px) scale(1.03);
    border-top-color: #ff9800;
}
.sliding-adv-card.modern:hover:nth-child(2) {
    border-top-color: #184c36;
}
.sliding-adv-card.modern:hover:nth-child(3) {
    border-top-color: #6b1a1a;
}
.sliding-adv-card.modern:hover:nth-child(4) {
    border-top-color: #009688;
}
.sliding-adv-title {
    font-size: 1.22rem;
    font-weight: 800;
    color: #222;
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 0.01em;
}
.sliding-gallery {
    background: #f7f7fa;
    padding: 54px 0 38px 0;
    margin-bottom: 32px;
}
.sliding-gallery-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.sliding-gallery-title {
    font-size: 2rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 38px;
    text-align: center;
}
.sliding-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.sliding-gallery-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.18s;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
}
.sliding-gallery-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
    transform: translateY(-4px) scale(1.03);
}
.sliding-gallery-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.sliding-gallery-info {
    padding: 22px 16px 12px 16px;
    text-align: center;
}
.sliding-gallery-name {
    font-size: 1.18rem;
    font-weight: 700;
    color: #184c36;
    margin-bottom: 10px;
}
.sliding-gallery-desc {
    font-size: 1rem;
    color: #444;
    margin-bottom: 0;
}
@media (max-width: 1100px) {
    .sliding-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 700px) {
    .sliding-gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .sliding-gallery-card {
        min-height: 220px;
    }
    .sliding-gallery-img {
        height: 120px;
    }
}
.sliding-gallery-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(34,34,34,0.75);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sliding-gallery-modal-content {
    background: #fff;
    border-radius: 18px;
    max-width: 420px;
    width: 98vw;
    padding: 38px 28px 28px 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    position: relative;
    text-align: center;
}
.sliding-gallery-modal-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 2.2rem;
    color: #ff9800;
    cursor: pointer;
    font-weight: 700;
    transition: color 0.2s;
}
.sliding-gallery-modal-close:hover {
    color: #184c36;
}
.sliding-gallery-modal-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
}
.sliding-gallery-modal-details {
    list-style: none;
    padding: 0;
    margin: 18px 0 0 0;
    text-align: left;
    font-size: 1rem;
    color: #444;
}
.sliding-gallery-modal-details li {
    margin-bottom: 8px;
}
.sliding-tips {
    background: #f7f7fa;
    padding: 54px 0 38px 0;
    margin-bottom: 32px;
}
.sliding-tips-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.sliding-tips-title {
    font-size: 2rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 38px;
    text-align: center;
}
.sliding-tips-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.sliding-tip {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 24px 18px;
    gap: 24px;
    position: relative;
    transition: box-shadow 0.2s, transform 0.18s;
}
.sliding-tip:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
    transform: translateY(-2px) scale(1.02);
}
.sliding-tip-img-wrap {
    flex: 0 0 90px;
    width: 90px;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    margin-right: 8px;
}
.sliding-tip-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.sliding-tip-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.sliding-tip-number {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ff9800;
    background: #fffbe6;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    margin-bottom: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.sliding-tip-title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #184c36;
    margin-bottom: 2px;
}
.sliding-tip-desc {
    font-size: 1rem;
    color: #444;
}
@media (max-width: 700px) {
    .sliding-tips-list {
        gap: 18px;
    }
    .sliding-tip {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        padding: 16px 8px;
    }
    .sliding-tip-img-wrap {
        margin-right: 0;
        margin-bottom: 8px;
    }
}
.sliding-configurator {
    background: #f7f7fa;
    padding: 54px 0 38px 0;
    margin-bottom: 32px;
}
.sliding-configurator-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.sliding-configurator-title {
    font-size: 2rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 38px;
    text-align: center;
}
.sliding-configurator-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    padding: 32px 24px 18px 24px;
    margin-bottom: 32px;
}
.sliding-configurator-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.sliding-configurator-row label {
    font-size: 1rem;
    color: #184c36;
    font-weight: 600;
}
.sliding-configurator-row select {
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #e0e0e7;
    font-size: 1rem;
    background: #fff;
    color: #333;
    outline: none;
    transition: border 0.2s;
}
.sliding-configurator-row select:focus {
    border-color: #ff9800;
}
.sliding-configurator-btn {
    grid-column: 1 / -1;
    margin-top: 12px;
    padding: 14px 0;
    width: 100%;
    font-size: 1.15rem;
    font-weight: 700;
    background: #ff9800;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s;
}
.sliding-configurator-btn:hover {
    background: #e67c00;
    color: #fffbe6;
}
.sliding-configurator-preview {
    display: flex;
    gap: 32px;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}
.sliding-configurator-room {
    position: relative;
    width: 320px;
    height: 180px;
    background: #e0e0e7;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
#config-room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}
.config-door-preview {
    position: absolute;
    left: 60px;
    top: 38px;
    width: 60px;
    height: 104px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    border: 2px solid #ff9800;
    transition: background 0.2s, border-color 0.2s;
    z-index: 2;
}
.sliding-configurator-price-result {
    min-width: 180px;
    background: #fffbe6;
    border-radius: 10px;
    padding: 18px 14px;
    font-size: 1.15rem;
    color: #184c36;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-top: 18px;
    font-weight: 700;
}
@media (max-width: 900px) {
    .sliding-configurator-form {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px 8px 12px 8px;
    }
    .sliding-configurator-preview {
        gap: 18px;
    }
}
.sliding-promo {
    background: linear-gradient(90deg,#1e293b 0%,#232a3d 100%);
    padding: 54px 0 38px 0;
    margin-bottom: 32px;
    text-align: center;
}
.sliding-promo-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}
.sliding-promo-title {
    font-size: 2.3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 28px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
    letter-spacing: 0.03em;
}
.sliding-promo-discount {
    color: #ff9800;
    font-size: 2.5rem;
    font-weight: 900;
    margin-left: 8px;
    text-shadow: 0 2px 12px rgba(255,152,0,0.18);
}
.sliding-promo-cta {
    display: inline-block;
    font-size: 1.35rem;
    font-weight: 800;
    background: #ff9800;
    color: #fff;
    border-radius: 12px;
    padding: 20px 54px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.18s;
    border: none;
    margin-top: 8px;
    letter-spacing: 0.02em;
}
.sliding-promo-cta:hover {
    background: #e67c00;
    color: #fffbe6;
    transform: scale(1.04);
}
@media (max-width: 700px) {
    .sliding-promo-title {
        font-size: 1.35rem;
    }
    .sliding-promo-discount {
        font-size: 1.5rem;
    }
    .sliding-promo-cta {
        font-size: 1.1rem;
        padding: 14px 18px;
    }
}
.sliding-adv-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
        margin: 20px auto;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.sliding-adv-title {
    font-size: 1.12rem;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 8px;
}
.sliding-adv-desc {
    font-size: 1rem;
    color: #444;
    text-align: center;
    line-height: 1.35;
    margin-bottom: 0;
}
@media (max-width: 1100px) {
    .sliding-advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 700px) {
    .sliding-advantages-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .sliding-adv-card {
        min-height: 160px;
        padding: 22px 8px 14px 8px;
    }
}
.exterior-tip-number {
    position: absolute;
    left: -32px;
    top: 24px;
    width: 36px;
    height: 36px;
    background: #ff9800;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255,152,0,0.10);
}
.exterior-tip-title {
    font-size: 1.08rem;
    font-weight: 600;
    color: #222;
}
.exterior-tip-desc {
    font-size: 1rem;
    color: #666;
}
@media (max-width: 700px) {
    .exterior-tips-list {
        margin-left: 0;
    }
    .exterior-tip {
        padding: 24px 16px 18px 44px;
    }
    .exterior-tip-number {
        left: -22px;
        width: 28px;
        height: 28px;
        font-size: 1rem;
    }
}
.exterior-gallery {
    background: #fff;
    padding: 48px 0 32px 0;
}
.exterior-gallery-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.exterior-gallery-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2d2d2d;
}
.exterior-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.exterior-gallery-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 32px 24px 24px 24px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}
.exterior-gallery-card:hover {
    box-shadow: 0 4px 24px rgba(255,152,0,0.18);
    transform: translateY(-6px) scale(1.04);
}
.exterior-gallery-img-wrap {
    width: 220px;
    height: 140px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: #f7f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
}
.exterior-gallery-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.2s;
}
.exterior-gallery-card:hover .exterior-gallery-img {
    transform: scale(1.07);
}
.exterior-gallery-model {
    display: block;
    font-size: 1.08rem;
    font-weight: 600;
    color: #333;
}
.exterior-gallery-desc {
    display: block;
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}
.exterior-gallery-lightbox {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(34,34,34,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.exterior-gallery-lightbox-content {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px 24px 24px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
    text-align: center;
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}
.exterior-gallery-lightbox-img {
    max-width: 480px;
    max-height: 60vh;
    border-radius: 12px;
    margin-bottom: 18px;
}
.exterior-gallery-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 2.2rem;
    color: #333;
    cursor: pointer;
    font-weight: 700;
}
.exterior-gallery-lightbox-info {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
    margin-top: 8px;
}
@media (max-width: 900px) {
    .exterior-gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .exterior-gallery-img-wrap {
        width: 100%;
        height: 120px;
    }
}
.exterior-advantages {
    background: linear-gradient(90deg,#1e293b 0%,#374151 100%);
    padding: 48px 0 32px 0;
}
.exterior-advantages-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.exterior-advantages-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #fff;
}
.exterior-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.exterior-advantage-card {
    background: #23272f;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    padding: 32px 24px 24px 24px;
    text-align: center;
    transition: box-shadow 0.2s;
}
.exterior-advantage-card:hover {
    box-shadow: 0 4px 24px rgba(255,152,0,0.18);
}
.exterior-advantage-icon {
    display: inline-block;
    margin-bottom: 18px;
}
.exterior-advantage-name {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ff9800;
}
.exterior-advantage-desc {
    font-size: 1rem;
    color: #e0e0e7;
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .exterior-advantages-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .exterior-advantage-card {
        padding: 28px 16px 20px 16px;
    }
}
.exterior-categories {
    background: #f7f7fa;
    padding: 48px 0 32px 0;
}
.exterior-categories-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.exterior-categories-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2d2d2d;
}
.exterior-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.exterior-category-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 32px 24px 24px 24px;
    text-align: center;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}
.exterior-category-card:hover {
    box-shadow: 0 4px 24px rgba(255,152,0,0.18);
    transform: translateY(-6px) scale(1.04);
}
.exterior-category-img-wrap {
    width: 220px;
    height: 140px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: #f7f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px auto;
}
.exterior-category-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.2s;
}
.exterior-category-card:hover .exterior-category-img-wrap img {
    transform: scale(1.07);
}
.exterior-category-name {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}
.exterior-category-desc {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}
@media (max-width: 1100px) {
    .exterior-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 700px) {
    .exterior-categories-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .exterior-category-img-wrap {
        width: 100%;
        height: 120px;
    }
}
.exterior-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background: #222;
    overflow: hidden;
}
.exterior-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.exterior-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.exterior-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg,rgba(34,34,34,0.7) 0%,rgba(34,34,34,0.2) 60%,rgba(255,255,255,0.0) 100%);
    z-index: 2;
}
.exterior-hero-content {
    position: relative;
    z-index: 3;
    background: rgba(255,255,255,0.85);
    border-radius: 18px;
    padding: 38px 44px 32px 44px;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 4px 32px rgba(0,0,0,0.10);
    text-align: center;
}
.exterior-hero-title {
    font-size: 2.1rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 18px;
}
.exterior-hero-desc {
    font-size: 1.08rem;
    color: #444;
    margin-bottom: 28px;
}
.exterior-hero-cta {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 700;
    background: #ff9800;
    color: #fff;
    border-radius: 10px;
    padding: 16px 38px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
}
.exterior-hero-cta:hover {
    background: #e67c00;
    color: #fffbe6;
}
@media (max-width: 900px) {
    .exterior-hero-content {
        max-width: 98vw;
        margin: 0 auto;
        padding: 28px 12px 22px 12px;
        text-align: center;
    }
    .exterior-hero {
        min-height: 280px;
    }
}
.interior-promo {
    background: linear-gradient(90deg,#ff9800 0%,#ffb74d 100%);
    padding: 44px 0 36px 0;
    text-align: center;
    margin-bottom: 32px;
}
.interior-promo-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}
.interior-promo-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 28px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.interior-promo-cta {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 700;
    background: #fff;
    color: #ff9800;
    border-radius: 10px;
    padding: 18px 44px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
    margin-top: 8px;
}
.interior-promo-cta:hover {
    background: #ffe0b2;
    color: #e67c00;
}
.interior-visualizer {
    background: #f7f7fa;
    padding: 48px 0 32px 0;
}
.interior-visualizer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.interior-visualizer-title {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 18px;
    color: #2d2d2d;
}
.interior-visualizer-desc {
    text-align: center;
    font-size: 1.08rem;
    color: #666;
    margin-bottom: 32px;
}
.visualizer-layout {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    justify-content: center;
}
.visualizer-menu {
    min-width: 220px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 28px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.visualizer-menu label {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}
.visualizer-menu select {
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #e0e0e7;
    font-size: 1rem;
    background: #f7f7fa;
    color: #333;
    outline: none;
    transition: border 0.2s;
}
.visualizer-menu select:focus {
    border-color: #ff9800;
}
.visualizer-room {
    position: relative;
    width: 420px;
    height: 280px;
    background: #eaeaea;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
}
.visualizer-room-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}
.visualizer-door-img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120px;
    height: 220px;
    object-fit: contain;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: filter 0.2s;
}
@media (max-width: 900px) {
    .visualizer-layout {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .visualizer-room {
        width: 90vw;
        height: 220px;
    }
}
.interior-order-process {
    background: #fff;
    padding: 48px 0 32px 0;
}
.interior-order-process-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.interior-order-process-title {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2d2d2d;
}
.order-process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    position: relative;
}
.order-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-width: 160px;
}
.order-step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #f7f7fa;
    border-radius: 50%;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.order-step-name {
    font-size: 1.08rem;
    font-weight: 600;
    color: #333;
    text-align: center;
}
.order-process-steps::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,#ff9800 0%,#009688 50%,#a85c1a 100%);
    z-index: 0;
    transform: translateY(-50%);
}
.order-step {
    z-index: 1;
}
@media (max-width: 900px) {
    .order-process-steps {
        flex-direction: column;
        gap: 32px;
    }
    .order-process-steps::before {
        width: 4px;
        height: 100%;
        left: 50%;
        top: 0;
        right: auto;
        background: linear-gradient(180deg,#ff9800 0%,#009688 50%,#a85c1a 100%);
        transform: translateX(-50%);
    }
}
.interior-calculator {
    background: #f7f7fa;
    padding: 48px 0 32px 0;
}
.interior-calculator-inner {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 24px;
}
.interior-calculator-title {
    text-align: center;
    font-size: 1.7rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: #2d2d2d;
}
.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 28px 20px 20px 20px;
}
.calculator-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.calculator-row label {
    font-size: 1rem;
    color: #333;
    font-weight: 500;
}
.calculator-row select {
    padding: 8px 10px;
    border-radius: 8px;
    border: 1px solid #e0e0e7;
    font-size: 1rem;
    background: #f7f7fa;
    color: #333;
    outline: none;
    transition: border 0.2s;
}
.calculator-row select:focus {
    border-color: #ff9800;
}
.calculator-btn {
    margin-top: 12px;
    padding: 12px 0;
    width: 100%;
    font-size: 1.1rem;
    font-weight: 600;
    background: #ff9800;
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
}
.calculator-btn:hover {
    background: #e67c00;
}
.calculator-result {
    margin-top: 18px;
    background: #fffbe6;
    border-radius: 8px;
    padding: 18px 14px;
    font-size: 1.15rem;
    color: #333;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.interior-gallery {
    background: #fff;
    padding: 48px 0 32px 0;
}
.interior-gallery-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.interior-gallery-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2d2d2d;
}
.interior-gallery-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
}
.gallery-btn {
    background: #f7f7fa;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s;
}
.gallery-btn:hover {
    background: #e0e0e7;
}
.gallery-slides {
    display: flex;
    overflow: hidden;
    width: 660px;
    min-height: 260px;
}
.gallery-slide {
    min-width: 220px;
    max-width: 220px;
    margin: 0 12px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    text-align: center;
    transition: box-shadow 0.2s;
    position: relative;
    cursor: pointer;
}
.gallery-slide:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.gallery-img-wrap {
    width: 220px;
    height: 140px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background: #f7f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.2s;
}
.gallery-slide:hover .gallery-img {
    transform: scale(1.05);
}
.gallery-info {
    padding: 12px 0 8px 0;
}
.gallery-model {
    display: block;
    font-size: 1.08rem;
    font-weight: 600;
    color: #333;
}
.gallery-price {
    display: block;
    font-size: 1rem;
    color: #ff9800;
    font-weight: 500;
}
@media (max-width: 900px) {
    .gallery-slides {
        width: 100%;
        min-width: 0;
    }
    .gallery-slide {
        min-width: 80vw;
        max-width: 80vw;
        margin: 0 6px;
    }
}
.gallery-lightbox {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.gallery-lightbox-content {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px 24px 24px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
    text-align: center;
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}
.gallery-lightbox-img {
    max-width: 480px;
    max-height: 60vh;
    border-radius: 12px;
    margin-bottom: 18px;
}
.gallery-lightbox-close {
    position: absolute;
    top: 18px;
    right: 18px;
    font-size: 2.2rem;
    color: #333;
    cursor: pointer;
    font-weight: 700;
}
.gallery-lightbox-info {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
}
.interior-advantages {
    background: #f7f7fa;
    padding: 48px 0 32px 0;
}
.interior-advantages-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.interior-advantages-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
    color: #2d2d2d;
}
.interior-advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.interior-advantage-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 32px 24px 24px 24px;
    text-align: center;
    transition: box-shadow 0.2s;
}
.interior-advantage-card:hover {
    box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.interior-advantage-icon {
    display: inline-block;
    margin-bottom: 18px;
}
.interior-advantage-name {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}
.interior-advantage-desc {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}
@media (max-width: 900px) {
    .interior-advantages-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .interior-advantage-card {
        padding: 28px 16px 20px 16px;
    }
}
.interior-categories {
    background: #f5f5f5;
    padding: 56px 0 40px 0;
    text-align: center;
}
.interior-categories-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 1.2em;
    color: #ff9800;
}
.interior-categories-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.interior-category-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 24px 18px 18px 18px;
    min-width: 180px;
    max-width: 260px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.interior-category-card:hover {
    box-shadow: 0 6px 32px rgba(0,0,0,0.13);
    transform: translateY(-4px) scale(1.03);
}
.interior-category-img-wrap {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1em;
    width: 220px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.interior-category-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.interior-category-card:hover .interior-category-img-wrap img {
    transform: scale(1.05);
}
.interior-category-name {
    font-size: 1.12em;
    font-weight: 600;
    margin-bottom: 0.5em;
    color: #222;
}
@media (max-width: 900px) {
    .interior-categories-grid {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .interior-category-img-wrap {
        width: 98vw;
        max-width: 220px;
        height: 90px;
    }
}
.interior-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.interior-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/modern-interior-doors-8231.webp') center center/cover no-repeat;
    z-index: 1;
}
.interior-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(30,30,30,0.7) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}
.interior-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeIn 1.2s cubic-bezier(.4,0,.2,1) 0.2s forwards;
}
.interior-hero-title {
    font-size: 2.4em;
    font-weight: bold;
    margin-bottom: 1em;
    letter-spacing: 1px;
}
.interior-hero-desc {
    font-size: 1.15em;
    margin-bottom: 1.5em;
    color: #ffe082;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.interior-hero-cta {
    background: #ff9800;
    color: #222;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 2em;
    padding: 0.9em 2.2em;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    transition: background 0.2s, color 0.2s;
}
.interior-hero-cta:hover {
    background: #ffe082;
    color: #222;
}
@media (max-width: 700px) {
    .interior-hero-title {
        font-size: 1.5em;
    }
    .interior-hero-content {
        max-width: 95vw;
    }
}
.contact-cta {
    background: linear-gradient(90deg, #ff9800 0%, #ffe082 100%);
    padding: 48px 0 36px 0;
    text-align: center;
    color: #222;
}
.contact-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}
.contact-cta-title {
    font-size: 2em;
    font-weight: 800;
    margin-bottom: 1.2em;
    letter-spacing: 1px;
}
.contact-cta-info {
    font-size: 1.15em;
    margin-bottom: 1.2em;
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.contact-cta-phone a,
.contact-cta-email a {
    color: #e53935;
    text-decoration: underline;
}
.contact-cta-btn {
    background: #e53935;
    color: #fff;
    font-size: 1.15em;
    font-weight: 700;
    border-radius: 2em;
    padding: 0.9em 2.2em;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
}
.contact-cta-btn:hover {
    background: #ff9800;
    color: #222;
}
@media (max-width: 700px) {
    .contact-cta-title {
        font-size: 1.2em;
    }
    .contact-cta-inner {
        max-width: 98vw;
    }
    .contact-cta-info {
        gap: 12px;
        font-size: 1em;
    }
}
.warranty-service {
    background: linear-gradient(90deg, #e0f7fa 0%, #e8f5e9 100%);
    padding: 56px 0 40px 0;
    text-align: center;
}
.warranty-service-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.warranty-service-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 1.2em;
    color: #009688;
}
.warranty-service-cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.warranty-service-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 32px 18px 28px 18px;
    min-width: 180px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.warranty-service-card:hover {
    box-shadow: 0 6px 32px rgba(0,0,0,0.13);
    transform: translateY(-4px) scale(1.03);
}
.warranty-service-icon {
    margin-bottom: 1em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.warranty-service-name {
    font-size: 1.18em;
    font-weight: 600;
    margin-bottom: 0.7em;
    color: #009688;
}
.warranty-service-desc {
    font-size: 1em;
    color: #444;
    margin-bottom: 0.7em;
}
@media (max-width: 900px) {
    .warranty-service-cards {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
}
.customization {
    background: #fff;
    padding: 56px 0 40px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.customization-inner {
    display: flex;
    gap: 48px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
    align-items: center;
}
.customization-text {
    flex: 1 1 340px;
    min-width: 280px;
}
.customization-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 1em;
    color: #ff9800;
}
.customization-desc {
    font-size: 1.08em;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2em;
}
.customization-options {
    display: flex;
    gap: 24px;
    margin-bottom: 2em;
    flex-wrap: wrap;
}
.customization-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5em;
}
.customization-icon {
    margin-bottom: 0.2em;
    display: flex;
    align-items: center;
    justify-content: center;
}
.customization-label {
    font-size: 1em;
    color: #444;
}
.customization-cta {
    background: #ff9800;
    color: #fff;
    font-weight: 600;
    border-radius: 2em;
    padding: 0.7em 2em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    margin-top: 1em;
    display: inline-block;
}
.customization-cta:hover {
    background: #e53935;
    color: #fff;
}
.customization-illustration {
    flex: 1 1 320px;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.customization-illustration img {
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    width: 100%;
    max-width: 320px;
    height: auto;
}
@media (max-width: 900px) {
    .customization-inner {
        flex-direction: column;
        gap: 32px;
    }
    .customization-illustration img {
        max-width: 100%;
    }
}
.realizations-gallery {
    background: #f5f5f5;
    padding: 56px 0 40px 0;
    text-align: center;
}
.realizations-gallery-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 1.2em;
    color: #ff9800;
}
.realizations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    justify-items: center;
    margin-top: 2em;
}
.realization-item {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 12px 12px 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
    cursor: pointer;
}
.realization-item:hover {
    box-shadow: 0 6px 32px rgba(0,0,0,0.13);
    transform: scale(1.03);
}
.realization-img {
    border-radius: 12px;
    width: 220px;
    height: 140px;
    object-fit: cover;
    margin-bottom: 0.7em;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.realization-item:hover .realization-img {
    transform: scale(1.05);
}
.realization-caption {
    font-size: 1em;
    color: #444;
    margin-bottom: 0.2em;
}
.realization-lightbox {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30,30,30,0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    animation: fadeIn 0.3s;
}
.lightbox-img {
    max-width: 90vw;
    max-height: 70vh;
    border-radius: 16px;
    box-shadow: 0 4px 32px rgba(0,0,0,0.18);
    margin-bottom: 1em;
}
.lightbox-caption {
    color: #fff;
    font-size: 1.15em;
    margin-bottom: 1em;
}
.lightbox-close {
    position: absolute;
    top: 32px;
    right: 48px;
    font-size: 2.5em;
    color: #fff;
    cursor: pointer;
    font-weight: bold;
    z-index: 10001;
    transition: color 0.2s;
}
.lightbox-close:hover {
    color: #ff9800;
}
@media (max-width: 900px) {
    .realizations-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .realization-img {
        width: 98vw;
        max-width: 220px;
        height: 90px;
    }
}
.promo-banner {
    background: linear-gradient(90deg, #ff9800 0%, #e53935 100%);
    padding: 44px 0 36px 0;
    text-align: center;
    color: #fff;
}
.promo-banner-inner {
    max-width: 700px;
    margin: 0 auto;
}
.promo-banner-title {
    font-size: 2.2em;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 1em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.promo-banner-timer {
    font-size: 1.3em;
    font-weight: 700;
    background: rgba(255,255,255,0.18);
    border-radius: 2em;
    display: inline-block;
    padding: 0.5em 1.6em;
    margin-top: 0.5em;
}
.promo-timer-label {
    margin-right: 0.7em;
}
.promo-timer {
    font-family: 'Courier New', monospace;
    font-size: 1.2em;
    letter-spacing: 1px;
}
@media (max-width: 700px) {
    .promo-banner-title {
        font-size: 1.2em;
    }
    .promo-banner-inner {
        max-width: 98vw;
    }
}
.materials-comparison {
    background: repeating-linear-gradient(90deg, #f5f5f5 0 50%, #fff 50% 100%);
    padding: 56px 0 40px 0;
    text-align: center;
}
.materials-comparison-inner {
    max-width: 900px;
    margin: 0 auto;
}
.materials-comparison-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 1.2em;
    color: #ff9800;
}
.materials-comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-items: center;
    margin-bottom: 2em;
}
.material-card {
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 32px 18px 28px 18px;
    min-width: 180px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.material-card:hover {
    box-shadow: 0 6px 32px rgba(0,0,0,0.13);
    transform: translateY(-4px) scale(1.03);
}
.material-icon {
    margin-bottom: 1em;
}
.material-name {
    font-size: 1.18em;
    font-weight: 600;
    margin-bottom: 0.7em;
    color: #222;
}
.material-pros {
    list-style: none;
    padding: 0;
    margin: 0 0 1em 0;
}
.material-pros li {
    font-size: 1em;
    color: #444;
    margin-bottom: 0.4em;
    display: flex;
    align-items: center;
    gap: 6px;
}
.materials-comparison-cta {
    background: #ff9800;
    color: #fff;
    font-weight: 600;
    border-radius: 2em;
    padding: 0.7em 2em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    margin-top: 1em;
    display: inline-block;
}
.materials-comparison-cta:hover {
    background: #e53935;
    color: #fff;
}
@media (max-width: 900px) {
    .materials-comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}
.bestsellers {
    background: #faf7f2;
    padding: 56px 0 40px 0;
    text-align: center;
}
.bestsellers-inner {
    max-width: 1100px;
    margin: 0 auto;
}
.bestsellers-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 1.2em;
    color: #ff9800;
}
.bestsellers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-items: center;
    margin-top: 2em;
}
.bestseller-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 28px 18px 22px 18px;
    min-width: 180px;
    max-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.bestseller-card:hover {
    box-shadow: 0 6px 32px rgba(0,0,0,0.13);
    transform: translateY(-4px) scale(1.03);
}
.bestseller-card img {
    border-radius: 12px;
    margin-bottom: 1em;
    width: 180px;
    height: 120px;
    object-fit: cover;
}
.bestseller-name {
    font-size: 1.12em;
    font-weight: 600;
    margin-bottom: 0.5em;
    color: #222;
}
.bestseller-desc {
    font-size: 1em;
    color: #444;
    margin-bottom: 0.7em;
}
.bestseller-price {
    font-size: 1.08em;
    color: #ff9800;
    font-weight: 700;
    margin-top: 0.5em;
}
@media (max-width: 900px) {
    .bestsellers-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .bestseller-card img {
        width: 98vw;
        max-width: 260px;
        height: 90px;
    }
}
.door-categories {
    background: #f5f5f5;
    padding: 56px 0 40px 0;
    text-align: center;
}
.door-categories-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 1.2em;
    color: #ff9800;
}
.door-categories-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.door-category-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 32px 24px 28px 24px;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.door-category-card:hover {
    box-shadow: 0 6px 32px rgba(0,0,0,0.13);
    transform: translateY(-4px) scale(1.03);
}
.door-category-img-wrap {
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1em;
    width: 260px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.door-category-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(.4,0,.2,1);
}
.door-category-card:hover .door-category-img-wrap img {
    transform: scale(1.05);
}
.door-category-name {
    font-size: 1.18em;
    font-weight: 600;
    margin-bottom: 0.7em;
    color: #222;
}
.door-category-cta {
    background: #ff9800;
    color: #fff;
    font-weight: 600;
    border-radius: 2em;
    padding: 0.7em 2em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    margin-top: 1em;
}
.door-category-cta:hover {
    background: #e53935;
    color: #fff;
}
@media (max-width: 900px) {
    .door-categories-grid {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
    .door-category-img-wrap {
        width: 98vw;
        max-width: 320px;
        height: 120px;
    }
}
.offer-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.offer-hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/modern-interior-doors-8231.webp') center center/cover no-repeat;
    z-index: 1;
}
.offer-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(30,30,30,0.7) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 2;
}
.offer-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeIn 1.2s cubic-bezier(.4,0,.2,1) 0.2s forwards;
}
.offer-hero-title {
    font-size: 2.6em;
    font-weight: bold;
    margin-bottom: 1em;
    letter-spacing: 1px;
}
.offer-hero-cta {
    background: #ff9800;
    color: #222;
    font-size: 1.2em;
    font-weight: bold;
    border-radius: 2em;
    padding: 1em 2.6em;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
}
.offer-hero-cta:hover {
    background: #e53935;
    color: #fff;
}
@media (max-width: 700px) {
    .offer-hero-title {
        font-size: 1.5em;
    }
    .offer-hero-content {
        max-width: 95vw;
    }
}
.about-cta {
    background: url('https://www.transparenttextures.com/patterns/wood-pattern.png') repeat center center, linear-gradient(120deg, #ffb366 0%, #ffe0b2 100%);
    padding: 64px 0 56px 0;
    text-align: center;
}
.about-cta-inner {
    max-width: 700px;
    margin: 0 auto;
}
.about-cta-title {
    font-size: 2.4em;
    font-weight: 800;
    color: #a85c1a;
    margin-bottom: 1.2em;
    letter-spacing: 1px;
}
.about-cta-btn {
    background: #ff9800;
    color: #fff;
    font-size: 1.2em;
    font-weight: 700;
    border-radius: 2em;
    padding: 1em 2.6em;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
    display: inline-block;
}
.about-cta-btn:hover {
    background: #ffe082;
    color: #a85c1a;
}
@media (max-width: 700px) {
    .about-cta-title {
        font-size: 1.5em;
    }
    .about-cta-inner {
        max-width: 98vw;
    }
}
.social-responsibility {
    position: relative;
    min-height: 340px;
    padding: 64px 0 48px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.social-bg {
    position: absolute;
    inset: 0;
    background: url('../images/eco-friendly-doors-1563.webp') center center/cover no-repeat;
    filter: brightness(0.7) blur(1px);
    z-index: 1;
}
.social-frame {
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.85);
    border-radius: 18px;
    box-shadow: 0 2px 24px rgba(0,0,0,0.10);
    max-width: 540px;
    margin: 0 auto;
    padding: 40px 32px 32px 32px;
    text-align: center;
}
.social-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 1em;
    color: #ff9800;
}
.social-desc {
    font-size: 1.12em;
    color: #333;
    margin-bottom: 2em;
}
.social-cta {
    background: #ff9800;
    color: #fff;
    font-weight: 600;
    border-radius: 2em;
    padding: 0.7em 2em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.social-cta:hover {
    background: #ffe082;
    color: #222;
}
@media (max-width: 700px) {
    .social-frame {
        max-width: 98vw;
        padding: 24px 8vw 20px 8vw;
    }
}
.client-reviews {
    background: #faf7f2;
    padding: 56px 0 40px 0;
    text-align: center;
}
.client-reviews-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 1.2em;
    color: #ff9800;
}
.client-reviews-cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.client-review-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 32px 24px 28px 24px;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.client-review-card:hover {
    box-shadow: 0 6px 32px rgba(0,0,0,0.13);
    transform: translateY(-4px) scale(1.03);
}
.client-review-photo {
    margin-bottom: 1em;
}
.client-review-photo img {
    border-radius: 50%;
    width: 56px;
    height: 56px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.client-review-quote {
    font-size: 1.08em;
    font-style: italic;
    color: #444;
    margin-bottom: 1.2em;
}
.client-review-meta {
    font-size: 1em;
    color: #222;
    margin-bottom: 0.7em;
}
.client-review-stars {
    display: flex;
    gap: 2px;
    margin-top: 0.5em;
}
.client-review-stars svg {
    width: 18px;
    height: 18px;
    fill: #ff9800;
}
@media (max-width: 900px) {
    .client-reviews-cards {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
}
.clients-partners {
    background: #fff;
    padding: 56px 0 40px 0;
    text-align: center;
}
.clients-partners-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 1.2em;
    color: #ff9800;
}
.clients-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.clients-logos {
    display: flex;
    gap: 36px;
    overflow: hidden;
    width: 480px;
    min-height: 60px;
    align-items: center;
    justify-content: center;
}
.client-logo {
    filter: grayscale(1) brightness(0.2);
    opacity: 0.7;
    transition: opacity 0.2s, filter 0.2s;
}
.client-logo img {
    width: 90px;
    height: 40px;
    object-fit: contain;
}
.client-logo.active {
    filter: grayscale(0) brightness(1);
    opacity: 1;
}
.clients-arrow {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0 12px;
    display: flex;
    align-items: center;
    transition: background 0.2s;
}
.clients-arrow:active {
    background: #ffe082;
}
@media (max-width: 700px) {
    .clients-logos {
        width: 98vw;
        gap: 18px;
    }
    .client-logo img {
        width: 60px;
        height: 28px;
    }
}
.production-process {
    background: #f5f5f5;
    padding: 56px 0 40px 0;
    text-align: center;
}
.production-process-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 1.2em;
    color: #ff9800;
}
.production-gallery {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: flex-start;
    overflow-x: auto;
    padding-bottom: 12px;
    scrollbar-width: thin;
}
.process-step {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 18px 12px 12px 12px;
    min-width: 180px;
    max-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.process-step:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.13);
    transform: translateY(-4px) scale(1.04);
}
.process-step img {
    border-radius: 10px;
    margin-bottom: 0.7em;
    width: 160px;
    height: 110px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.process-caption {
    font-size: 1.08em;
    color: #333;
    margin-top: 0.3em;
    font-weight: 500;
}
@media (max-width: 900px) {
    .production-gallery {
        gap: 18px;
        padding-left: 8px;
        padding-right: 8px;
    }
    .process-step {
        min-width: 140px;
        max-width: 140px;
        padding: 12px 6px 8px 6px;
    }
    .process-step img {
        width: 120px;
        height: 80px;
    }
}
.mission-values {
    position: relative;
    padding: 64px 0 48px 0;
    overflow: hidden;
}
.mission-values-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: url('https://www.transparenttextures.com/patterns/wood-pattern.png') repeat center center;
    opacity: 0.18;
    pointer-events: none;
}
.mission-values-inner {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
.mission-values-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 0.7em;
    color: #ff9800;
}
.mission-values-mission {
    font-size: 1.15em;
    color: #333;
    margin-bottom: 2.2em;
}
.values-cards {
    display: flex;
    gap: 32px;
    justify-content: center;
    flex-wrap: wrap;
}
.value-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    padding: 32px 24px 28px 24px;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.2s;
}
.value-card:hover {
    box-shadow: 0 6px 32px rgba(0,0,0,0.13);
    transform: translateY(-4px) scale(1.03);
}
.value-icon {
    margin-bottom: 1em;
}
.value-title {
    font-size: 1.18em;
    font-weight: 600;
    margin-bottom: 0.5em;
    color: #ff9800;
}
.value-desc {
    font-size: 1em;
    color: #444;
}
@media (max-width: 900px) {
    .values-cards {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }
}
.company-history {
    background: #faf7f2;
    padding: 64px 0 48px 0;
}
.company-history-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 48px;
    flex-wrap: wrap;
}
.company-history-text {
    flex: 1 1 340px;
    min-width: 280px;
}
.company-history-title {
    font-size: 2em;
    font-weight: 700;
    margin-bottom: 1em;
    color: #ff9800;
}
.company-history-text p {
    font-size: 1.08em;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2em;
}
.company-history-cta {
    background: #ff9800;
    color: #fff;
    font-weight: 600;
    border-radius: 2em;
    padding: 0.7em 2em;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
}
.company-history-cta:hover {
    background: #ffe082;
    color: #222;
}
.company-history-photo {
    flex: 1 1 320px;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.company-history-photo img {
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    width: 100%;
    max-width: 420px;
    height: auto;
}
@media (max-width: 900px) {
    .company-history-inner {
        flex-direction: column;
        gap: 32px;
    }
    .company-history-photo img {
        max-width: 100%;
    }
}
.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.about-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/door-showroom-display-7521.webp') center center/cover no-repeat;
    z-index: 1;
}
.about-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(30,30,30,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}
.about-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeIn 1.2s cubic-bezier(.4,0,.2,1) 0.2s forwards;
}
.about-hero-logo {
    margin-bottom: 1.2em;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.about-hero-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 0.5em;
    letter-spacing: 1px;
}
.about-hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 1.5em;
    color: #ffe082;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.about-hero-cta {
    background: #ff9800;
    color: #222;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 2em;
    padding: 0.9em 2.2em;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    transition: background 0.2s, color 0.2s;
}
.about-hero-cta:hover {
    background: #ffe082;
    color: #222;
}
@media (max-width: 700px) {
    .about-hero-title {
        font-size: 2em;
    }
    .about-hero-content {
        max-width: 95vw;
    }
}
.final-cta {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.final-cta-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/minimalist-room-doors-2784.webp') center center/cover no-repeat;
    z-index: 1;
    animation: ctaFade 2.5s ease-in;
}
.final-cta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
    animation: ctaOverlayFade 2.5s ease-in;
}
.final-cta-wave {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 3;
    width: 100%;
    height: 120px;
    pointer-events: none;
    animation: waveMove 6s infinite linear;
}
@keyframes waveMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-40px); }
}
@keyframes ctaFade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
@keyframes ctaOverlayFade {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
.final-cta-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: #fff;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    padding: 3em 1em 2em 1em;
}
.final-cta-title {
    font-size: 2.3em;
    font-weight: bold;
    margin-bottom: 1em;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.final-cta-btn {
    background: #ff9800;
    color: #222;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 2em;
    padding: 0.9em 2.2em;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    transition: background 0.2s, color 0.2s;
    margin-top: 0.5em;
    display: inline-block;
}
.final-cta-btn:hover {
    background: #ffe082;
    color: #222;
}
@media (max-width: 700px) {
    .final-cta-title {
        font-size: 1.3em;
    }
    .final-cta-content {
        max-width: 95vw;
        padding: 2em 0.5em 1em 0.5em;
    }
    .final-cta-wave {
        height: 60px;
    }
}
.reviews-section {
    background: #fff;
    padding: 3em 1em 2em 1em;
    text-align: center;
    position: relative;
}
.reviews-title {
    font-size: 2em;
    color: #222;
    margin-bottom: 1.5em;
    font-weight: bold;
    letter-spacing: 1px;
}
.reviews-slider {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}
.reviews-track {
    display: flex;
    gap: 2em;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.review-card {
    background: #f8f9fa;
    border-radius: 1em;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    min-width: 320px;
    max-width: 320px;
    flex: 0 0 320px;
    display: flex;
    align-items: center;
    gap: 1.2em;
    padding: 1.2em 1em;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}
.review-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
    transform: scale(1.04);
    z-index: 2;
}
.review-photo {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    flex-shrink: 0;
}
.review-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.review-info {
    text-align: left;
    flex: 1;
}
.review-name {
    font-size: 1.1em;
    color: #222;
    font-weight: bold;
}
.review-city {
    font-size: 0.95em;
    color: #888;
    margin-bottom: 0.3em;
}
.review-rating {
    color: #ff9800;
    font-size: 1.1em;
    margin-bottom: 0.5em;
}
.review-info blockquote {
    font-size: 1em;
    color: #222;
    margin: 0;
    font-style: italic;
}
.reviews-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff9800;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 2em;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: background 0.2s;
}
.reviews-arrow.left {
    left: 0.5em;
}
.reviews-arrow.right {
    right: 0.5em;
}
.reviews-arrow:hover {
    background: #b71c1c;
}
@media (max-width: 900px) {
    .reviews-track {
        gap: 1em;
    }
    .review-card {
        min-width: 220px;
        max-width: 220px;
        flex: 0 0 220px;
        gap: 0.7em;
        padding: 1em 0.5em;
    }
    .review-photo {
        width: 48px;
        height: 48px;
    }
}
@media (max-width: 600px) {
    .reviews-section {
        padding: 2em 0.5em 1em 0.5em;
    }
    .reviews-track {
        gap: 0.5em;
    }
    .review-card {
        min-width: 80vw;
        max-width: 80vw;
        flex: 0 0 80vw;
        gap: 0.5em;
    }
    .review-photo {
        width: 40px;
        height: 40px;
    }
}
.steps-process {
    background: #f8f9fa;
    padding: 3em 1em 2em 1em;
    text-align: center;
}
.steps-title {
    font-size: 2em;
    color: #222;
    margin-bottom: 2em;
    font-weight: bold;
    letter-spacing: 1px;
}
.steps-line {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3em;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
.step-item {
    background: #fff;
    border-radius: 1em;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 1.5em 1em 1em 1em;
    min-width: 180px;
    flex: 1 1 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
    opacity: 0.7;
}
.step-item.active {
    box-shadow: 0 8px 32px rgba(255,152,0,0.18);
    border: 2px solid #ff9800;
    opacity: 1;
    transform: scale(1.08);
    z-index: 2;
    animation: stepGlow 0.7s;
}
@keyframes stepGlow {
    0% { box-shadow: 0 0 0 rgba(255,152,0,0.0); }
    100% { box-shadow: 0 8px 32px rgba(255,152,0,0.18); }
}
.step-icon {
    margin-bottom: 1em;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-label {
    font-size: 1.1em;
    color: #ff9800;
    font-weight: bold;
    margin-bottom: 0.5em;
}
.step-desc {
    font-size: 1em;
    color: #222;
    margin: 0;
}
@media (max-width: 900px) {
    .steps-line {
        flex-direction: column;
        gap: 1.2em;
    }
    .step-item {
        min-width: 0;
        width: 100%;
    }
}
.about-short {
    background: #fff;
    padding: 3em 1em 2em 1em;
}
.about-short-inner {
    display: flex;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 3em;
}
.about-short-img {
    flex: 1 1 340px;
    min-width: 240px;
    max-width: 400px;
    border-radius: 1em;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.about-short-img img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1em;
}
.about-short-text {
    flex: 2 1 400px;
    min-width: 220px;
}
.about-short-text h2 {
    font-size: 2em;
    color: #222;
    margin-bottom: 0.7em;
    font-weight: bold;
    letter-spacing: 1px;
}
.about-short-text p {
    font-size: 1.1em;
    color: #222;
    margin-bottom: 1em;
}
.about-short-text ul {
    margin-bottom: 1.2em;
    padding-left: 1.2em;
}
.about-short-text ul li {
    font-size: 1em;
    color: #ff9800;
    margin-bottom: 0.5em;
    list-style: disc inside;
}
.about-short-btn {
    background: #ff9800;
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    border-radius: 2em;
    padding: 0.7em 2em;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    transition: background 0.2s, color 0.2s;
    display: inline-block;
}
.about-short-btn:hover {
    background: #ffe082;
    color: #222;
}
@media (max-width: 900px) {
    .about-short-inner {
        flex-direction: column;
        gap: 1.5em;
    }
    .about-short-img, .about-short-text {
        min-width: 0;
        max-width: 100%;
    }
}
.product-fav.active svg path {
    fill: #b71c1c;
}
.recommended-products {
    background: #f8f9fa;
    padding: 3em 1em 2em 1em;
    text-align: center;
    position: relative;
}
.recommended-title {
    font-size: 2em;
    color: #222;
    margin-bottom: 1.5em;
    font-weight: bold;
    letter-spacing: 1px;
}
.recommended-slider {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
}
.recommended-track {
    display: flex;
    gap: 2em;
    transition: transform 0.5s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}
.product-card {
    background: #fff;
    border-radius: 1em;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    min-width: 260px;
    max-width: 260px;
    flex: 0 0 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
}
.product-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
    transform: scale(1.04);
    z-index: 2;
}
.product-img {
    width: 220px;
    height: 160px;
    background-size: cover;
    background-position: center;
    border-radius: 1em 1em 0 0;
    margin-bottom: 0.7em;
}
.product-fav {
    position: absolute;
    top: 16px;
    right: 16px;
    cursor: pointer;
    transition: transform 0.2s;
}
.product-fav:hover {
    transform: scale(1.2);
}
.product-info {
    text-align: center;
    padding: 0.5em 1em 1em 1em;
    width: 100%;
}
.product-info h3 {
    font-size: 1.1em;
    color: #222;
    margin-bottom: 0.3em;
    font-weight: bold;
}
.product-rating {
    color: #ff9800;
    font-size: 1.1em;
    margin-bottom: 0.5em;
}
.star {
    font-size: 1.1em;
    margin-right: 2px;
}
.product-price {
    font-size: 1.15em;
    color: #222;
    font-weight: bold;
    margin-bottom: 0.7em;
}
.product-cart-btn {
    background: #ff9800;
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    border-radius: 2em;
    padding: 0.7em 2em;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    transition: background 0.2s, color 0.2s;
}
.product-cart-btn:hover {
    background: #ffe082;
    color: #222;
}
.recommended-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff9800;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 2em;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    transition: background 0.2s;
}
.recommended-arrow.left {
    left: 0.5em;
}
.recommended-arrow.right {
    right: 0.5em;
}
.recommended-arrow:hover {
    background: #b71c1c;
}
@media (max-width: 900px) {
    .recommended-track {
        gap: 1em;
    }
    .product-card {
        min-width: 200px;
        max-width: 200px;
        flex: 0 0 200px;
    }
    .product-img {
        width: 160px;
        height: 110px;
    }
}
@media (max-width: 600px) {
    .recommended-products {
        padding: 2em 0.5em 1em 0.5em;
    }
    .recommended-track {
        gap: 0.5em;
    }
    .product-card {
        min-width: 80vw;
        max-width: 80vw;
        flex: 0 0 80vw;
    }
    .product-img {
        width: 70vw;
        height: 80vw;
        max-height: 180px;
    }
}
.promo-banner {
    background: linear-gradient(90deg, #b71c1c 0%, #ff9800 100%);
    color: #fff;
    padding: 2.5em 1em 2em 1em;
    text-align: center;
    margin: 2em 0 2em 0;
    border-radius: 1.5em;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.promo-banner-content {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.promo-banner-title {
    font-size: 2.2em;
    font-weight: bold;
    margin-bottom: 0.7em;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.promo-banner-timer {
    font-size: 1.2em;
    margin-bottom: 1.2em;
    background: rgba(0,0,0,0.18);
    padding: 0.5em 1.2em;
    border-radius: 2em;
    display: inline-block;
}
.promo-timer-label {
    font-weight: bold;
    margin-right: 0.5em;
}
.promo-banner-btn {
    background: #fff;
    color: #b71c1c;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 2em;
    padding: 0.9em 2.2em;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    transition: background 0.2s, color 0.2s;
    margin-top: 0.5em;
}
.promo-banner-btn:hover {
    background: #ffe082;
    color: #222;
}
@media (max-width: 700px) {
    .promo-banner-title {
        font-size: 1.3em;
    }
    .promo-banner-content {
        max-width: 95vw;
    }
}
.door-category-desc {
    color: #000;
    font-size: 1em;
    margin-bottom: 1em;
    margin-top: 0.2em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.door-categories {
    background: #fff;
    padding: 3em 1em 2em 1em;
    text-align: center;
}
.door-categories-title {
    font-size: 2em;
    color: #222;
    margin-bottom: 1.5em;
    font-weight: bold;
    letter-spacing: 1px;
}
.door-categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2em;
    max-width: 1200px;
    margin: 0 auto;
}
.door-category-card {
    position: relative;
    border-radius: 1em;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    transition: box-shadow 0.2s;
}
.door-category-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
    z-index: 2;
}
.door-category-img {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s;
}
.door-category-card:hover .door-category-img {
    transform: scale(1.08);
}
.door-category-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.9) 0%, rgba(0,0,0,0.3) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 1;
}
.door-category-name {
    color: #000;
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 1em;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.door-category-btn {
    background: #ff9800;
    color: #222;
    font-size: 1em;
    font-weight: bold;
    border-radius: 2em;
    padding: 0.7em 2em;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    transition: background 0.2s, color 0.2s;
}
.door-category-btn:hover {
    background: #ffe082;
    color: #222;
}
@media (max-width: 900px) {
    .door-categories-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2em;
    }
    .door-category-img {
        height: 160px;
    }
}
@media (max-width: 600px) {
    .door-categories-grid {
        grid-template-columns: 1fr;
        gap: 1em;
    }
    .door-categories {
        padding: 2em 0.5em 1em 0.5em;
    }
    .door-category-img {
        height: 120px;
    }
}
.why-us {
    background: #f8f9fa;
    padding: 3em 1em 2em 1em;
    text-align: center;
}
.why-us-title {
    font-size: 2em;
    color: #222;
    margin-bottom: 1.5em;
    font-weight: bold;
    letter-spacing: 1px;
}
.why-us-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2em;
    max-width: 1200px;
    margin: 0 auto;
}
.why-us-card {
    background: #fff;
    border-radius: 1em;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 2em 1em 1.5em 1em;
    transition: transform 0.2s, box-shadow 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.why-us-card:hover {
    transform: scale(1.06);
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
    z-index: 2;
}
.why-us-icon {
    margin-bottom: 1em;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.why-us-card h3 {
    font-size: 1.15em;
    color: #ff9800;
    margin-bottom: 0.5em;
    font-weight: bold;
}
.why-us-card p {
    font-size: 1em;
    color: #222;
    margin: 0;
}
@media (max-width: 900px) {
    .why-us-cards {
        grid-template-columns: 1fr 1fr;
        gap: 1.2em;
    }
}
@media (max-width: 600px) {
    .why-us-cards {
        grid-template-columns: 1fr;
        gap: 1em;
    }
    .why-us {
        padding: 2em 0.5em 1em 0.5em;
    }
}
.hero-banner {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/exterior-front-doors-9873.webp') center center/cover no-repeat;
    z-index: 1;
}
.hero-gradient {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(120deg, rgba(30,30,30,0.7) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    animation: heroFadeIn 1.2s cubic-bezier(.4,0,.2,1) 0.2s forwards;
}
.hero-title {
    font-size: 2.8em;
    font-weight: bold;
    margin-bottom: 0.5em;
    letter-spacing: 1px;
}
.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 1.5em;
    color: #ffe082;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.hero-cta {
    background: #ff9800;
    color: #222;
    font-size: 1.1em;
    font-weight: bold;
    border-radius: 2em;
    padding: 0.9em 2.2em;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    transition: background 0.2s, color 0.2s;
}
.hero-cta:hover {
    background: #ffe082;
    color: #222;
}
@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@media (max-width: 700px) {
    .hero-title {
        font-size: 2em;
    }
    .hero-content {
        max-width: 95vw;
    }
}
.newsletter-popup {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.newsletter-popup-content {
    background: #fff;
    color: #222;
    padding: 2em 2em 1.5em 2em;
    border-radius: 1em;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    text-align: center;
    min-width: 260px;
    max-width: 90vw;
}
.newsletter-popup-close {
    position: absolute;
    top: 1em;
    right: 1.5em;
    font-size: 2em;
    color: #ff9800;
    cursor: pointer;
    font-weight: bold;
}
.newsletter-popup h4 {
    margin-top: 0.5em;
    margin-bottom: 0.5em;
}
.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    background: #222;
    color: #fff;
    padding: 2em 1em 1em 1em;
    gap: 2em;
}
.footer-col {
    flex: 1 1 180px;
    min-width: 180px;
    margin-bottom: 1em;
}
.footer-col h3 {
    font-size: 1.1em;
    margin-bottom: 0.7em;
    color: #ff9800;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.5em 0;
}
.footer-col ul li {
    margin-bottom: 0.5em;
}
.footer-col a {
    color: #fff;
    text-decoration: underline;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: #ff9800;
}
.newsletter-form {
    display: flex;
    gap: 0.5em;
    margin-bottom: 0.5em;
}
.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.5em;
    border-radius: 2em;
    border: none;
    font-size: 1em;
}
.newsletter-form button {
    padding: 0.5em 1.2em;
    border-radius: 2em;
    border: none;
    background: #ff9800;
    color: #222;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
.newsletter-form button:hover {
    background: #fff;
    color: #ff9800;
}
.copyright {
    font-size: 0.95em;
    margin-top: 1em;
    color: #bbb;
}
@media (max-width: 900px) {
    .footer-columns {
        flex-direction: column;
        gap: 0.5em;
    }
    .footer-col {
        min-width: 0;
    }
}
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    margin: 0 auto;
    z-index: 100;
}
.nav-toggle-bar {
    width: 28px;
    height: 4px;
    background: #ff9800;
    margin: 4px 0;
    border-radius: 2px;
    transition: 0.3s;
}
.nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}
@media (max-width: 900px) {
    .nav-list {
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #222;
        color: #fff;
        z-index: 99;
        display: none;
        text-align: center;
    }
    .nav-list.open {
        display: flex;
    }
    .nav-list li {
        margin: 1em 0;
    }
    .nav-toggle {
        display: flex;
    }
    nav {
        position: relative;
    }
}
.logo-block {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5em 0 0.5em 0;
}
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 0.7em;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.logo-title {
    font-size: 1.6em;
    font-weight: bold;
    color: #fff;
    letter-spacing: 1px;
}
body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
}
header {
    background: #222;
    color: #fff;
    padding: 0.5em 0;
}
nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
}
nav ul li {
    margin: 0 1em;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
nav ul li a:hover,nav ul li a.active {
    color: #ff9800;
}
.hero {
    text-align: center;
    padding: 4em 2em;
    background: linear-gradient(135deg, #ff9800 0%, #ffc107 100%);
    color: #fff;
}
.hero h1 {
    font-size: 2.5em;
    margin-bottom: 0.5em;
}
.hero p {
    font-size: 1.2em;
    margin-bottom: 1.5em;
}
.btn {
    display: inline-block;
    padding: 0.75em 2em;
    background: #222;
    color: #fff;
    border-radius: 2em;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}
.btn:hover {
    background: #ff9800;
    color: #222;
}
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 2em 1em 1em 1em;
    margin-top: 2em;
}

footer ul li {
    margin: 0 1em;
}
footer ul li a {
    color: #fff;
    text-decoration: underline;
    font-size: 0.95em;
}
@media (max-width: 700px) {
    nav ul {
        flex-direction: column;
    }
    .hero {
        padding: 2em 1em;
    }
    .hero h1 {
        font-size: 2em;
    }
}
.sliding-advantages-grid {
        display: flex;
    justify-content: center;
}
.sliding-advantages-inner {
    text-align: center;
}
.montaz-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    overflow: hidden;
    padding: 54px 0 38px 0;
    margin-bottom: 32px;
}
.montaz-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.montaz-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.7);
}
.montaz-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2;
}
.montaz-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.montaz-hero-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 22px;
    letter-spacing: 0.02em;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.montaz-hero-desc {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 32px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.montaz-hero-cta {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 800;
    background: #ff9800;
    color: #fff;
    border-radius: 12px;
    padding: 18px 44px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.18s;
    border: none;
    margin-top: 8px;
    letter-spacing: 0.02em;
}
.montaz-hero-cta:hover {
    background: #e67c00;
    color: #fffbe6;
    transform: scale(1.04);
}
@media (max-width: 700px) {
    .montaz-hero-title {
        font-size: 1.35rem;
    }
    .montaz-hero-desc {
        font-size: 1rem;
    }
    .montaz-hero-cta {
        font-size: 1.05rem;
        padding: 12px 18px;
    }
    .montaz-hero {
        min-height: 220px;
        padding: 24px 0 18px 0;
    }
}
.montaz-services {
    background: #f7f7fa;
    padding: 54px 0 38px 0;
    margin-bottom: 32px;
}
.montaz-services-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.montaz-services-title {
    font-size: 2rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 38px;
    text-align: center;
}
.montaz-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 32px;
}
.montaz-service-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 18px;
    font-size: 1.08rem;
    font-weight: 600;
    color: #184c36;
    transition: box-shadow 0.2s, transform 0.18s;
}
.montaz-service-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
    transform: translateY(-2px) scale(1.02);
}
.montaz-service-icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 4px;
}
.montaz-service-text {
    flex: 1;
}
@media (max-width: 700px) {
    .montaz-services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .montaz-service-card {
        padding: 14px 8px;
        font-size: 1rem;
    }
}
.montaz-service-desc {
    font-size: 0.98rem;
    color: #555;
    font-weight: 400;
    margin-top: 2px;
    margin-left: 2px;
    line-height: 1.4;
    letter-spacing: 0.01em;
    opacity: 0.85;
}
@media (max-width: 700px) {
    .montaz-service-desc {
        font-size: 0.93rem;
        margin-left: 0;
    }
}
.montaz-steps {
    background: #fff;
    padding: 54px 0 38px 0;
    margin-bottom: 32px;
}
.montaz-steps-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.montaz-steps-title {
    font-size: 2rem;
    font-weight: 800;
    color: #184c36;
    margin-bottom: 38px;
    text-align: center;
}
.montaz-steps-line {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    gap: 0;
    margin: 0 auto;
    max-width: 900px;
}
.montaz-steps-line::before {
    content: "";
    position: absolute;
    left: 40px;
    right: 40px;
    top: 50%;
    height: 6px;
    background: #e0e0e7;
    border-radius: 3px;
    z-index: 0;
}
.montaz-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}
.montaz-step-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fff;
    border: 4px solid #4caf50;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 12px rgba(76,175,80,0.08);
    margin-bottom: 12px;
    position: relative;
}
.montaz-step-number {
    position: absolute;
    top: 6px;
    left: 8px;
    font-size: 1.25rem;
    font-weight: 800;
    color: #4caf50;
    background: #fff;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 28px;
    box-shadow: 0 2px 8px rgba(76,175,80,0.06);
    z-index: 2;
}
.montaz-step-icon {
    margin-left: 18px;
    margin-top: 8px;
    display: inline-block;
}
.montaz-step-label {
    font-size: 1.08rem;
    font-weight: 700;
    color: #184c36;
    margin-top: 2px;
    text-align: center;
}
@media (max-width: 900px) {
    .montaz-steps-line {
        flex-wrap: wrap;
        gap: 18px;
    }
    .montaz-step {
        min-width: 90px;
    }
    .montaz-steps-line::before {
        left: 20px;
        right: 20px;
        height: 4px;
    }
}
@media (max-width: 700px) {
    .montaz-steps-line {
        flex-direction: column;
        align-items: stretch;
        gap: 18px;
    }
    .montaz-step {
        min-width: 0;
        margin-bottom: 0;
    }
    .montaz-steps-line::before {
        display: none;
    }
}
.montaz-step-desc {
    font-size: 0.98rem;
    color: #555;
    font-weight: 400;
    margin-top: 4px;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.4;
    letter-spacing: 0.01em;
    opacity: 0.85;
    max-width: 140px;
}
@media (max-width: 700px) {
    .montaz-step-desc {
        font-size: 0.93rem;
        max-width: 100%;
    }
}
.montaz-whyus {
    background: linear-gradient(90deg,#232a3d 0%,#1e293b 100%);
    padding: 54px 0 38px 0;
    margin-bottom: 32px;
    color: #fff;
}
.montaz-whyus-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.montaz-whyus-title {
    font-size: 2.1rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 38px;
    text-align: center;
    letter-spacing: 0.02em;
}
.montaz-whyus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.montaz-whyus-card {
    background: rgba(34,34,34,0.85);
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
    padding: 38px 18px 28px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s, transform 0.18s;
}
.montaz-whyus-card:hover .montaz-whyus-icon {
    transform: scale(1.18);
    box-shadow: 0 4px 24px rgba(255,152,0,0.18);
}
.montaz-whyus-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #184c36;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    transition: background 0.2s;
}
.montaz-whyus-icon {
    display: inline-block;
    transition: transform 0.18s, box-shadow 0.18s;
}
.montaz-whyus-title2 {
    font-size: 1.18rem;
    font-weight: 700;
    color: #ff9800;
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}
.montaz-whyus-desc {
    font-size: 1rem;
    color: #fff;
    opacity: 0.92;
    margin-bottom: 0;
    line-height: 1.35;
}
@media (max-width: 1100px) {
    .montaz-whyus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 700px) {
    .montaz-whyus-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .montaz-whyus-card {
        padding: 22px 8px 14px 8px;
    }
}
.montaz-service-section {
    background: #fff;
    padding: 54px 0 38px 0;
    margin-bottom: 32px;
}
.montaz-service-section-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    padding: 0 24px;
}
.montaz-service-section-left {
    flex: 1 1 0;
}
.montaz-service-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #184c36;
    margin-bottom: 28px;
}
.montaz-service-section-list {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}
.montaz-service-section-list li {
    font-size: 1.18rem;
    color: #444;
    margin-bottom: 12px;
    position: relative;
    padding-left: 28px;
}
.montaz-service-section-list li:before {
    content: '\2714';
    position: absolute;
    left: 0;
    top: 2px;
    color: #ff9800;
    font-size: 1.1em;
}
.montaz-service-section-btn {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 700;
    background: #ff9800;
    color: #fff;
    border-radius: 10px;
    padding: 16px 38px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
    margin-top: 18px;
}
.montaz-service-section-btn:hover {
    background: #e67c00;
    color: #fffbe6;
}
.montaz-service-section-right {
    flex: 1 1 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.montaz-service-section-img {
    max-width: 420px;
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
@media (max-width: 900px) {
    .montaz-service-section-inner {
        flex-direction: column;
        gap: 28px;
        padding: 0 8px;
    }
    .montaz-service-section-right {
        width: 100%;
        justify-content: flex-start;
    }
    .montaz-service-section-img {
        max-width: 100%;
        margin: 0 auto;
    }
}
.montaz-gallery {
    background: #f7f7fa;
    padding: 54px 0 38px 0;
    margin-bottom: 32px;
}
.montaz-gallery-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}
.montaz-gallery-title {
    font-size: 2rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 38px;
    text-align: center;
}
.montaz-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.montaz-gallery-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.12);
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.18s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}
.montaz-gallery-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    transform: scale(1.03);
}
.montaz-gallery-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
    transition: filter 0.2s;
}
.montaz-gallery-card:hover img {
    filter: brightness(0.85);
}
@media (max-width: 1100px) {
    .montaz-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}
@media (max-width: 700px) {
    .montaz-gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .montaz-gallery-card img {
        height: 120px;
    }
}
.montaz-gallery-lightbox {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(34,34,34,0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.montaz-gallery-lightbox-content {
    background: #fff;
    border-radius: 18px;
    max-width: 600px;
    width: 98vw;
    padding: 38px 28px 28px 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    position: relative;
    text-align: center;
}
.montaz-gallery-lightbox-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 2.2rem;
    color: #ff9800;
    cursor: pointer;
    font-weight: 700;
    transition: color 0.2s;
}
.montaz-gallery-lightbox-close:hover {
    color: #184c36;
}
.montaz-gallery-lightbox-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 18px;
}
@media (max-width: 700px) {
    .montaz-gallery-lightbox-img {
        height: 160px;
    }
}
.montaz-faq {
    background: #f7f7fa;
    padding: 54px 0 38px 0;
    margin-bottom: 32px;
}
.montaz-faq-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}
.montaz-faq-title {
    font-size: 2rem;
    font-weight: 800;
    color: #184c36;
    margin-bottom: 38px;
    text-align: center;
}
.montaz-faq-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.montaz-faq-item {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.montaz-faq-item:focus-within,
.montaz-faq-item:hover {
    box-shadow: 0 4px 24px rgba(24,76,54,0.10);
}
.montaz-faq-question {
    width: 100%;
    background: none;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.18rem;
    font-weight: 700;
    color: #184c36;
    padding: 22px 28px;
    cursor: pointer;
    transition: background 0.18s;
}
.montaz-faq-question:hover,
.montaz-faq-question:focus {
    background: #f0f4f2;
}
.montaz-faq-arrow {
    display: inline-block;
    transition: transform 0.22s cubic-bezier(.4,2,.6,1.2);
}
.montaz-faq-question[aria-expanded="true"] .montaz-faq-arrow {
    transform: rotate(180deg);
}
.montaz-faq-answer {
    font-size: 1.08rem;
    color: #444;
    padding: 0 28px 22px 28px;
    background: #fff;
    border-radius: 0 0 14px 14px;
    animation: fadeInFaq 0.3s;
}
@keyframes fadeInFaq {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 700px) {
    .montaz-faq-inner {
        padding: 0 8px;
    }
    .montaz-faq-question {
        font-size: 1rem;
        padding: 16px 14px;
    }
    .montaz-faq-answer {
        font-size: 0.98rem;
        padding: 0 14px 14px 14px;
    }
}
.montaz-cta {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    overflow: hidden;
}
.montaz-cta-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.montaz-cta-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.montaz-cta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg,rgba(34,34,34,0.7) 0%,rgba(34,34,34,0.3) 60%,rgba(255,255,255,0.0) 100%);
    z-index: 2;
}
.montaz-cta-content {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 54px 24px 48px 24px;
}
.montaz-cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 32px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.montaz-cta-btn {
    display: inline-block;
    font-size: 1.18rem;
    font-weight: 700;
    background: #ff9800;
    color: #fff;
    border-radius: 10px;
    padding: 18px 44px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
}
.montaz-cta-btn:hover {
    background: #e67c00;
    color: #fffbe6;
}
@media (max-width: 700px) {
    .montaz-cta-content {
        padding: 32px 8px 28px 8px;
    }
    .montaz-cta-title {
        font-size: 1.18rem;
        margin-bottom: 18px;
    }
    .montaz-cta-btn {
        font-size: 1rem;
        padding: 12px 24px;
    }
}
.kontakt-header {
    background: #f7f7fa;
    padding: 64px 0 38px 0;
    margin-bottom: 0;
}
.kontakt-header-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}
.kontakt-header-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #ff9800;
    margin-bottom: 28px;
    letter-spacing: -1px;
}
.kontakt-header-desc {
    font-size: 1.25rem;
    color: #184c36;
    margin-bottom: 0;
}
@media (max-width: 700px) {
    .kontakt-header-inner {
        padding: 0 8px;
    }
    .kontakt-header-title {
        font-size: 1.5rem;
        margin-bottom: 18px;
    }
    .kontakt-header-desc {
        font-size: 1rem;
    }
}
.kontakt-form-section {
    background: #fff;
    padding: 48px 0 38px 0;
}
.kontakt-form {
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding: 0 24px;
}
.kontakt-form-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.kontakt-form label {
    font-size: 1.08rem;
    color: #184c36;
    font-weight: 600;
}
.kontakt-form input,
.kontakt-form textarea {
    font-size: 1.08rem;
    padding: 12px 14px;
    border: 2px solid #ff9800;
    border-radius: 10px;
    background: #f7f7fa;
    color: #222;
    outline: none;
    transition: border 0.2s;
}
.kontakt-form input:focus,
.kontakt-form textarea:focus {
    border-color: #184c36;
}
.kontakt-form-btn {
    margin-top: 12px;
    padding: 16px 0;
    width: 100%;
    font-size: 1.18rem;
    font-weight: 700;
    background: #ff9800;
    color: #fff;
    border-radius: 10px;
    border: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    cursor: pointer;
}
.kontakt-form-btn:hover {
    background: #e67c00;
    color: #fffbe6;
}
@media (max-width: 700px) {
    .kontakt-form {
        padding: 0 8px;
    }
    .kontakt-form-btn {
        font-size: 1rem;
        padding: 12px 0;
    }
}
.kontakt-popup {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(34,34,34,0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.kontakt-popup-content {
    background: #fff;
    border-radius: 18px;
    max-width: 400px;
    width: 98vw;
    padding: 38px 28px 28px 28px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    position: relative;
    text-align: center;
}
.kontakt-popup-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 2.2rem;
    color: #ff9800;
    cursor: pointer;
    font-weight: 700;
    transition: color 0.2s;
}
.kontakt-popup-close:hover {
    color: #184c36;
}
@media (max-width: 700px) {
    .kontakt-popup-content {
        padding: 18px 8px 18px 8px;
    }
}
.kontakt-company-info {
    background: #f0f4f2;
    padding: 54px 0 38px 0;
    margin-bottom: 0;
}
.kontakt-company-info-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}
.kontakt-company-info-title {
    font-size: 2rem;
    font-weight: 800;
    color: #184c36;
    margin-bottom: 38px;
}
.kontakt-company-info-grid {
    display: flex;
    gap: 38px;
    justify-content: center;
    flex-wrap: wrap;
}
.kontakt-company-info-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 32px 28px 28px 28px;
    min-width: 180px;
    flex: 1 1 0;
    max-width: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
}
.kontakt-company-info-icon {
    margin-bottom: 18px;
}
.kontakt-company-info-icon-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ff9800;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(255,152,0,0.10);
}
.kontakt-company-info-label {
    font-size: 1.08rem;
    color: #184c36;
    font-weight: 700;
    margin-bottom: 8px;
}
.kontakt-company-info-value {
    font-size: 1.18rem;
    color: #222;
    font-weight: 600;
    word-break: break-word;
}
.kontakt-company-info-value a {
    color: #184c36;
    text-decoration: none;
    font-weight: 700;
    transition: color 0.2s;
}
.kontakt-company-info-value a:hover {
    color: #ff9800;
}
@media (max-width: 900px) {
    .kontakt-company-info-grid {
        gap: 18px;
    }
    .kontakt-company-info-card {
        min-width: 140px;
        max-width: 100%;
        padding: 24px 12px 18px 12px;
    }
}
.kontakt-map-section {
    background: #fff;
    padding: 0 0 54px 0;
}
.kontakt-map-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.kontakt-map-frame {
    width: 100%;
    height: 340px;
    border: none;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(24,76,54,0.10);
    display: block;
}
@media (max-width: 900px) {
    .kontakt-map-inner {
        padding: 0 8px;
    }
    .kontakt-map-frame {
        height: 220px;
        border-radius: 12px;
    }
}
.kontakt-whyus {
    background: #f7f7fa;
    padding: 54px 0 38px 0;
    margin-bottom: 0;
}
.kontakt-whyus-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.kontakt-whyus-title {
    font-size: 2rem;
    font-weight: 800;
    color: #184c36;
    margin-bottom: 38px;
    text-align: center;
}
.kontakt-whyus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}
.kontakt-whyus-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 38px 18px 28px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.kontakt-whyus-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #ff9800;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(255,152,0,0.10);
}
.kontakt-whyus-text {
    font-size: 1.18rem;
    color: #184c36;
    font-weight: 700;
    text-align: center;
}
@media (max-width: 900px) {
    .kontakt-whyus-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}
@media (max-width: 600px) {
    .kontakt-whyus-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .kontakt-whyus-card {
        padding: 24px 8px 18px 8px;
    }
}
.kontakt-whyus-desc {
    font-size: 1rem;
    color: #444;
    margin-top: 10px;
    text-align: center;
    line-height: 1.5;
}
.kontakt-social {
    background: #fff;
    padding: 44px 0 38px 0;
    text-align: center;
}
.kontakt-social-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}
.kontakt-social-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #184c36;
    margin-bottom: 28px;
}
.kontakt-social-list {
    display: flex;
    gap: 28px;
    justify-content: center;
    margin-top: 12px;
}
.kontakt-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #184c36;
    transition: background 0.2s;
    box-shadow: 0 2px 12px rgba(24,76,54,0.10);
    text-decoration: none;
    outline: none;
}
.kontakt-social-btn:hover,
.kontakt-social-btn:focus {
    background: #ff9800;
}
.kontakt-social-icon svg {
    display: block;
}
@media (max-width: 700px) {
    .kontakt-social-list {
        gap: 16px;
    }
    .kontakt-social-btn {
        width: 44px;
        height: 44px;
    }
}
.kontakt-visit-banner {
    position: relative;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    overflow: hidden;
}
.kontakt-visit-banner-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.kontakt-visit-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.7);
}
.kontakt-visit-banner-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 54px 24px 48px 24px;
}
.kontakt-visit-banner-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.kontakt-visit-banner-desc {
    font-size: 1.18rem;
    color: #fffbe6;
    margin-bottom: 32px;
    text-shadow: 0 1px 8px rgba(0,0,0,0.12);
}
.kontakt-visit-banner-btn {
    display: inline-block;
    font-size: 1.15rem;
    font-weight: 700;
    background: #ff9800;
    color: #fff;
    border-radius: 10px;
    padding: 16px 38px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
}
.kontakt-visit-banner-btn:hover {
    background: #184c36;
    color: #fffbe6;
}
@media (max-width: 700px) {
    .kontakt-visit-banner-content {
        padding: 32px 8px 28px 8px;
    }
    .kontakt-visit-banner-title {
        font-size: 1.18rem;
        margin-bottom: 12px;
    }
    .kontakt-visit-banner-desc {
        font-size: 1rem;
        margin-bottom: 18px;
    }
    .kontakt-visit-banner-btn {
        font-size: 1rem;
        padding: 12px 24px;
    }
}
.koszyk-header {
    background: #fff;
    padding: 64px 0 38px 0;
    margin-bottom: 0;
}
.koszyk-header-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}
.koszyk-header-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #ff9800;
    margin-bottom: 18px;
    letter-spacing: -1px;
}
.koszyk-header-subtitle {
    font-size: 1.18rem;
    color: #bfc7ce;
    margin-bottom: 0;
}
@media (max-width: 700px) {
    .koszyk-header-inner {
        padding: 0 8px;
    }
    .koszyk-header-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    .koszyk-header-subtitle {
        font-size: 1rem;
    }
}
.koszyk-items-section {
    background: #fff;
    padding: 38px 0 38px 0;
}
.koszyk-items-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.koszyk-items-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    border-radius: 18px;
    overflow: hidden;
}
.koszyk-items-table th, .koszyk-items-table td {
    padding: 18px 12px;
    text-align: center;
    font-size: 1.08rem;
    border-bottom: 1px solid #e0e0e7;
}
.koszyk-items-table th {
    background: #f7f7fa;
    color: #184c36;
    font-weight: 700;
    font-size: 1.12rem;
}
.koszyk-item-row:last-child td {
    border-bottom: none;
}
.koszyk-item-img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.koszyk-qty-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.koszyk-qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f7f7fa;
    color: #184c36;
    border: 2px solid #ff9800;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, border 0.18s;
    outline: none;
}
.koszyk-qty-btn:hover,
.koszyk-qty-btn:focus {
    background: #ff9800;
    color: #fff;
    border-color: #184c36;
}
.koszyk-qty-input {
    width: 44px;
    text-align: center;
    font-size: 1.08rem;
    border: 1px solid #e0e0e7;
    border-radius: 8px;
    padding: 6px 0;
    background: #fff;
    color: #222;
    outline: none;
}
@media (max-width: 900px) {
    .koszyk-items-inner {
        padding: 0 8px;
    }
    .koszyk-items-table th, .koszyk-items-table td {
        padding: 10px 4px;
        font-size: 0.98rem;
    }
    .koszyk-item-img {
        width: 44px;
        height: 44px;
    }
}
@media (max-width: 600px) {
    .koszyk-items-table th, .koszyk-items-table td {
        padding: 6px 2px;
        font-size: 0.92rem;
    }
    .koszyk-item-img {
        width: 32px;
        height: 32px;
    }
}
.koszyk-summary-section {
    background: #f7f7fa;
    padding: 38px 0 54px 0;
}
.koszyk-summary-inner {
    max-width: 420px;
    margin: 0 auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 38px 28px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
}
.koszyk-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.18rem;
    color: #222;
    margin-bottom: 0;
}
.koszyk-summary-total {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ff9800;
    margin-top: 18px;
    margin-bottom: 18px;
}
.koszyk-summary-btn {
    display: block;
    width: 100%;
    font-size: 1.18rem;
    font-weight: 700;
    background: #ff9800;
    color: #fff;
    border-radius: 10px;
    padding: 18px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
    text-align: center;
    margin-top: 12px;
}
.koszyk-summary-btn:hover {

    background: #184c36;
    color: #fffbe6;
}
@media (max-width: 700px) {
    .koszyk-summary-inner {
        padding: 18px 8px 18px 8px;
    }
    .koszyk-summary-row {
        font-size: 1rem;
    }
    .koszyk-summary-total {
        font-size: 1.18rem;
    }
    .koszyk-summary-btn {
        font-size: 1rem;
        padding: 12px 0;
    }
}
.koszyk-delivery-section {
    background: #fff;
    padding: 38px 0 38px 0;
}
.koszyk-delivery-inner {
    max-width: 420px;
    margin: 0 auto;
    padding: 0 24px;
}
.koszyk-delivery-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #184c36;
    margin-bottom: 28px;
    text-align: center;
}
.koszyk-delivery-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.koszyk-delivery-option {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #f7f7fa;
    border-radius: 12px;
    padding: 18px 18px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.18s, box-shadow 0.18s;
    font-size: 1.08rem;
    font-weight: 600;
}
.koszyk-delivery-option input[type="radio"] {
    accent-color: #ff9800;
    width: 22px;
    height: 22px;
    margin-right: 8px;
}
.koszyk-delivery-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
}
.koszyk-delivery-label {
    color: #184c36;
}
.koszyk-delivery-option input[type="radio"]:checked + .koszyk-delivery-icon + .koszyk-delivery-label,
.koszyk-delivery-option input[type="radio"]:checked ~ .koszyk-delivery-label {
    font-weight: 700;
}
.koszyk-delivery-option input[type="radio"]:checked {
}
.koszyk-delivery-option input[type="radio"]:checked ~ .koszyk-delivery-icon,
.koszyk-delivery-option input[type="radio"]:checked ~ .koszyk-delivery-label {
}
.koszyk-delivery-option input[type="radio"]:checked {
}
.koszyk-delivery-option input[type="radio"]:checked {
}
.koszyk-delivery-option.selected {
    border: 2px solid #ff9800;
    box-shadow: 0 2px 12px rgba(255,152,0,0.10);
}
@media (max-width: 700px) {
    .koszyk-delivery-inner {
        padding: 0 8px;
    }
    .koszyk-delivery-option {
        padding: 12px 8px;
        font-size: 0.98rem;
    }
}
.koszyk-payment-section {
    background: #fff;
    padding: 38px 0 38px 0;
}
.koszyk-payment-inner {
    max-width: 420px;
    margin: 0 auto;
    padding: 0 24px;
}
.koszyk-payment-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: #184c36;
    margin-bottom: 28px;
    text-align: center;
}
.koszyk-payment-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.koszyk-payment-option {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #f7f7fa;
    border-radius: 12px;
    padding: 18px 18px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border 0.18s, box-shadow 0.18s;
    font-size: 1.08rem;
    font-weight: 600;
}
.koszyk-payment-option input[type="radio"] {
    accent-color: #ff9800;
    width: 22px;
    height: 22px;
    margin-right: 8px;
}
.koszyk-payment-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
}
.koszyk-payment-label {
    color: #184c36;
}
.koszyk-payment-option.selected {

    border: 2px solid #ff9800;
    box-shadow: 0 2px 12px rgba(255,152,0,0.10);
}
@media (max-width: 700px) {
    .koszyk-payment-inner {
        padding: 0 8px;
    }
    .koszyk-payment-option {
        padding: 12px 8px;
        font-size: 0.98rem;
    }
}
.koszyk-recommended-section {
    background: #fff;
    padding: 54px 0 38px 0;
}
.koszyk-recommended-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}
.koszyk-recommended-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #184c36;
    margin-bottom: 38px;
    text-align: center;
}
.koszyk-recommended-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.koszyk-recommended-card {
    background: #f7f7fa;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    padding: 28px 18px 24px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: box-shadow 0.18s;
}
.koszyk-recommended-card:hover {
    box-shadow: 0 8px 32px rgba(24,76,54,0.10);
}
.koszyk-recommended-img-wrap {
    width: 100px;
    height: 100px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.koszyk-recommended-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.22s cubic-bezier(.4,2,.6,1.2);
}
.koszyk-recommended-card:hover .koszyk-recommended-img {
    transform: scale(1.12);
}
.koszyk-recommended-name {
    font-size: 1.12rem;
    font-weight: 700;
    color: #184c36;
    margin-bottom: 8px;
    text-align: center;
}
.koszyk-recommended-desc {
    font-size: 1rem;
    color: #444;
    margin-bottom: 18px;
    text-align: center;
}
.koszyk-recommended-btn {
    display: inline-block;
    font-size: 1.08rem;
    font-weight: 700;
    background: #ff9800;
    color: #fff;
    border-radius: 10px;
    padding: 12px 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    border: none;
    cursor: pointer;
}
.koszyk-recommended-btn:hover {
    background: #184c36;
    color: #fffbe6;
}
@media (max-width: 900px) {
    .koszyk-recommended-inner {
        padding: 0 8px;
    }
    .koszyk-recommended-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
}
@media (max-width: 600px) {
    .koszyk-recommended-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .koszyk-recommended-card {
        padding: 18px 8px 12px 8px;
    }
    .koszyk-recommended-img-wrap {
        width: 70px;
        height: 70px;
    }
}
.center-text {
    max-width: 1200px;
    margin: 0 auto;
}
    .cookie-policy-block {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 9999;
        background: #fff;
        box-shadow: 0 -2px 16px rgba(0,0,0,0.08);
        padding: 24px 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s;
    }
    .cookie-policy-block.hide {
        transform: translateY(100%);
    }
    .cookie-policy-content {
        display: flex;
        align-items: center;
        max-width: 600px;
        width: 100%;
        gap: 20px;
    }
    .cookie-policy-icon {
        flex-shrink: 0;
        margin-right: 8px;
    }
    .cookie-policy-text {
        flex: 1;
        font-size: 1rem;
        color: #333;
    }
    .cookie-policy-text strong {
        display: block;
        margin-bottom: 4px;
        font-size: 1.1rem;
    }
    .cookie-policy-actions {
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    .cookie-policy-actions .btn {
        min-width: 120px;
        padding: 8px 16px;
        font-size: 1rem;
        border-radius: 4px;
        border: none;
        cursor: pointer;
        background: #ff9800;
        color: #fff;
        font-weight: 500;
        transition: background 0.2s;
    }
    .cookie-policy-actions .btn.cookie-decline {
        background: #e0e0e0;
        color: #333;
    }
    .cookie-policy-actions .cookie-more {
        font-size: 0.95rem;
        color: #1976d2;
        text-decoration: underline;
        margin-top: 4px;
        text-align: center;
    }
    @media (max-width: 600px) {
        .cookie-policy-content {
            flex-direction: column;
            align-items: flex-start;
            gap: 12px;
        }
        .cookie-policy-actions {
            flex-direction: row;
            gap: 8px;
            width: 100%;
            justify-content: flex-start;
        }
    }