/* ========== Picture 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);
}

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

/* ========== Hero Section ========== */
.picture-hero-section {
    min-height: 100vh;
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.picture-hero-section .elementor-container {
    width: 100%;
    max-width: 1140px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: 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;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

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

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

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

/* ========== Custom Products Section ========== */
.custom-products-section {
    padding: 100px 0;
    background: #fff;
}

.products-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 60px;
}

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

.custom-product-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card-img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.custom-product-card:hover .product-card-img {
    transform: scale(1.05);
}

.product-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px 0;
    text-align: center;
}

.product-card-subtitle {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px 0;
    text-align: center;
}

.product-card-btn {
    display: inline-block;
    padding: 10px 30px;
    background-color: #f3821a;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s ease;
}

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

/* ========== About FAQ Section ========== */
.about-faq-section {
    padding: 100px 0;
    background: #fff;
}

.about-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    text-align: center;
    margin-bottom: 60px;
}

.about-faq-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.about-image-col {
    flex: 1;
    position: sticky;
    top: 20px;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-faq-col {
    flex: 1;
}

/* FAQ Accordion Styles */
.faq-accordion-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.faq-accordion-header {
    width: 100%;
    padding: 20px;
    background: #fcfcfc;
    border: none;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-accordion-header:hover,
.faq-accordion-header.active {
    background: #fff;
    color: var(--primary-color);
}

.faq-icon {
    font-size: 20px;
    font-weight: 400;
    flex-shrink: 0;
}

.faq-accordion-content {
    padding: 0 20px 20px;
    background: #fff;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.8;
}

/* ========== Beauty Section ========== */
.beauty-section {
    padding: 100px 0;
    background: #fff;
    text-align: center;
}

.beauty-main-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
}

.beauty-sub-title {
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 30px;
    text-align: center;
}

.beauty-description {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

/* ========== Benefits Section ========== */
.benefits-section {
    padding: 80px 0;
    background: #fff;
}

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

.benefit-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    text-align: left;
}

.benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    line-height: 1.4;
}

.benefit-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.benefit-description:last-child {
    margin-bottom: 0;
}

/* ========== Factory Showcase Section ========== */
.factory-showcase-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.factory-showcase-title {
    font-size: 36px;
    font-weight: 700;
    color: #222;
    margin-bottom: 20px;
    text-align: center;
}

.factory-showcase-description {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

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

.factory-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

/* ========== 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: 991px) {
    .custom-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-faq-container {
        flex-direction: column;
    }

    .about-image-col {
        position: static;
    }

    .beauty-main-title {
        font-size: 20px;
    }

    .beauty-sub-title {
        font-size: 32px;
    }

    .beauty-description {
        font-size: 16px;
    }

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

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

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

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

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

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

    .hero-description {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .custom-products-grid {
        grid-template-columns: 1fr;
    }

    .about-section-title {
        font-size: 28px;
    }

    .beauty-main-title {
        font-size: 18px;
    }

    .beauty-sub-title {
        font-size: 24px;
    }

    .beauty-description {
        font-size: 14px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .factory-images-grid {
        grid-template-columns: 1fr;
    }

    .factory-image {
        height: 250px;
    }

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

    .hero-description {
        font-size: 14px;
    }
}
