/* ========== Windows Page Styles ========== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

:root {
    --primary-color: #f3821a;
    --primary-hover: #e07316;
    --text-dark: #222222;
    --text-light: #555555;
    --bg-light: #f8f9fa;
    --card-bg: #ffffff;
    --border-radius: 6px;
    --card-radius: 12px;
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-windows {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: #fff;
    line-height: 1.6;
}

/* --- Shared Layout --- */
.page-windows .elementor-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ========== Hero Section ========== */
.windows-hero-section {
    padding: 100px 0 120px;
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.centered-hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 40px 0;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    margin-top: 40px;
}

/* --- Common Buttons --- */
.common-btn {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-base);
    border-radius: var(--border-radius);
    border: none;
    letter-spacing: 1px;
    font-size: 14px;
    box-shadow: 0 4px 6px rgba(243, 130, 26, 0.2);
    cursor: pointer;
}

.common-btn:hover {
    background-color: var(--primary-hover);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(243, 130, 26, 0.3);
}

.orange-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-base);
    border-radius: var(--border-radius);
    border: none;
    letter-spacing: 1px;
    font-size: 15px;
    box-shadow: 0 4px 8px rgba(243, 130, 26, 0.3);
    cursor: pointer;
}

.orange-btn:hover {
    background-color: var(--primary-hover);
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 8px 18px rgba(243, 130, 26, 0.4);
}

/* ========== Best-Selling Products Section ========== */
.best-selling-section {
    padding: 80px 0;
    background: #fff;
}

.section-header-left {
    text-align: left;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 800px;
}

/* Product Grid - 10 Products in 5 Columns */
.product-grid-10 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.product-card {
    text-align: center;
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.product-quote-btn {
    display: inline-block;
    padding: 8px 20px;
    background-color: #fff;
    color: #000;
    text-transform: uppercase;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid #000;
    border-radius: 4px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.product-quote-btn:hover {
    background-color: #000;
    color: #fff;
}

/* ========== Full Width Banner ========== */
.full-width-banner {
    width: 100%;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ========== Statistics Section (Left-Right) ========== */
.stats-section {
    padding: 80px 0;
}

.stats-container {
    display: flex;
    max-width: 100%;
}

.stats-left {
    flex: 1;
    background-color: #f3821a;
    color: #fff;
    padding: 40px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.stats-coverage {
    font-size: 11px;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 10px;
}

.stats-right {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 30px 40px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    font-size: 30px;
    margin-bottom: 10px;
    color: #f3821a;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #f3821a;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== Experience Section ========== */
.experience-section {
    padding: 300px 0;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.experience-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.experience-title {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.experience-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.experience-contact-btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: #f3821a;
    color: #fff;
    text-transform: uppercase;
    font-weight: 700;
    text-decoration: none;
    border-radius: 4px;
    transition: background 0.3s;
}

.experience-contact-btn:hover {
    background-color: #e07316;
}

/* ========== Experts Section ========== */
.experts-section {
    position: relative;
    z-index: 2;
    margin-top: -75px;
    margin-bottom: 80px;
    padding: 0 15px;
}

.experts-container {
    max-width: 90%;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 40px;
}

.expert-item {
    text-align: center;
    flex: 1;
}

.expert-number {
    font-size: 48px;
    font-weight: 800;
    color: #f3821a;
    margin-bottom: 15px;
    line-height: 1;
}

.expert-label {
    font-size: 14px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.expert-divider {
    width: 1px;
    height: 80px;
    background: repeating-linear-gradient(
        to bottom,
        #f3821a 0px,
        #f3821a 5px,
        transparent 5px,
        transparent 10px
    );
    margin: 0 20px;
}

/* ========== Global Design Section ========== */
.global-design-section {
    padding: 100px 40px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.global-design-content {
    text-align: left;
    margin-left: 40px;
}

.global-design-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.global-design-desc {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

.global-design-links {
    display: flex;
    gap: 20px;
}

.design-link {
    color: #f3821a;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.design-link:hover {
    color: #fff;
}

/* ========== Contact Section ========== */
.help-contact-section {
    padding: 80px 0;
    background: #fff;
}

.contact-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-col,
.contact-form-col {
    flex: 1;
}

/* Info Column Styles */
.contact-heading {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.contact-sub {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.contact-benefits-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.contact-benefits-list li {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.contact-benefits-list .icon {
    font-size: 16px;
    flex-shrink: 0;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.detail-item h4 {
    font-size: 13px;
    font-weight: 700;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.detail-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.factory-visit-block {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.visit-intro {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.check-list {
    list-style: none;
    padding: 0;
    margin-bottom: 15px;
}

.check-list li {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
    display: flex;
    gap: 10px;
    line-height: 1.5;
}

.visit-outro {
    font-size: 13px;
    color: #777;
    font-style: italic;
}

/* Form Column Styles */
.form-heading {
    font-size: 24px;
    font-weight: 600;
    color: #111;
    margin-bottom: 30px;
}

.custom-contact-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.custom-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-half {
    display: flex;
    flex-direction: column;
}

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

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    outline: none;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #f3821a;
}

.form-textarea {
    height: 120px;
    resize: vertical;
}

.phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.flag-icon {
    position: absolute;
    left: 10px;
    font-size: 16px;
    z-index: 1;
}

.phone-input-wrapper .form-input {
    padding-left: 35px;
}

.form-note {
    font-size: 12px;
    color: #888;
    margin-top: 5px;
}

.file-upload-area {
    border: 2px dashed #ddd;
    border-radius: 4px;
    padding: 30px 20px;
    text-align: center;
    margin-bottom: 20px;
    cursor: pointer;
    transition: border-color 0.3s;
}

.file-upload-area:hover {
    border-color: #f3821a;
}

.upload-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.upload-content p {
    font-size: 14px;
    color: #333;
    margin: 5px 0;
}

.upload-sub {
    font-size: 12px;
    color: #888;
}

.form-promise {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.submit-btn {
    background-color: #f3821a;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.submit-btn:hover {
    background-color: #e07316;
}

/* ========== Responsive ========== */
@media (max-width: 1200px) {
    .product-grid-10 {
        grid-template-columns: repeat(4, 1fr);
    }

    .product-grid-10 .product-card:last-child {
        grid-column: span 4;
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 991px) {
    .product-grid-10 {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-grid-10 .product-card:nth-child(n+9) {
        grid-column: span 3;
        max-width: 250px;
        margin: 0 auto;
    }

    .stats-container {
        flex-direction: column;
    }

    .stats-right {
        flex-wrap: wrap;
        gap: 30px;
    }

    .contact-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .contact-details-grid {
        grid-template-columns: 1fr;
    }

    .custom-contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .experts-container {
        flex-direction: column;
        gap: 30px;
    }

    .expert-divider {
        width: 80px;
        height: 1px;
        background: repeating-linear-gradient(
            to right,
            #f3821a 0px,
            #f3821a 5px,
            transparent 5px,
            transparent 10px
        );
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .windows-hero-section {
        padding: 60px 0 80px;
    }

    .hero-title {
        font-size: 36px;
    }

    .product-grid-10 {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-grid-10 .product-card:nth-child(n+5) {
        grid-column: span 2;
        max-width: 250px;
        margin: 0 auto;
    }

    .stats-right {
        flex-direction: column;
    }

    .full-width-banner {
        height: 200px;
    }

    .experience-title,
    .experience-subtitle {
        font-size: 20px;
    }

    .global-design-title {
        font-size: 32px;
    }
}
