/* ========== Chandeliers Page Template Styles ========== */

/* ========== CSS Variables ========== */
:root {
    --color-primary: #FF8C00;
    --color-primary-dark: #E67300;
    --color-heading: #222222;
    --color-heading-alt: #333333;
    --color-text: #666666;
    --color-text-light: #999999;
    --color-bg-white: #ffffff;
    --color-bg-gray: #f8f8f8;
    --color-bg-dark: #1A1A1A;
    --color-bg-black: #000000;
    --color-border: #e0e0e0;
    --color-footer-gray: #6c7a89;

    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-size-h1: 48px;
    --font-size-h2: 36px;
    --font-size-h3: 24px;
    --font-size-h4: 18px;
    --font-size-body: 16px;
    --font-size-small: 14px;
    --font-weight-heading: 700;
    --font-weight-body: 400;
    --line-height: 1.6;

    --spacing-container: 1200px;
    --spacing-module-large: 80px;
    --spacing-module-medium: 60px;
    --spacing-module-small: 40px;
    --spacing-element: 30px;
    --spacing-gap: 30px;
    --container-padding: 15px;
}

/* ========== Global Styles ========== */
.page-chandeliers {
    font-family: var(--font-family);
    color: var(--color-text);
    line-height: var(--line-height);
}

.page-chandeliers .elementor-container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ========== Buttons ========== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: var(--font-size-body);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #ffffff;
    color: var(--color-heading);
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: #f0f0f0;
}

.btn-submit {
    width: 100%;
    background-color: var(--color-footer-gray);
    color: #ffffff;
}

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

/* ========== Section 1: Hero ========== */
.chandeliers-hero {
    position: relative;
    overflow: hidden;
    min-height: 600px;
    background-color: var(--color-bg-dark);
}

.chandeliers-hero .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.chandeliers-hero .elementor-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.chandeliers-hero .hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 40px;
    padding: 80px 0;
}

.chandeliers-hero .hero-left {
    flex: 1;
}

.chandeliers-hero .hero-title {
    font-size: var(--font-size-h1);
    font-weight: var(--font-weight-heading);
    color: #ffffff;
    margin: 0;
}

.chandeliers-hero .hero-right {
    flex-shrink: 0;
}

/* ========== Section 2: Categories ========== */
.chandelier-categories {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-medium) 0;
}

.chandelier-categories .section-title {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 40px;
}

.chandelier-categories .categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-gap);
}

.chandelier-categories .category-card {
    background-color: var(--color-bg-gray);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.chandelier-categories .category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.chandelier-categories .category-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.chandelier-categories .category-card h3 {
    font-size: var(--font-size-body);
    font-weight: 600;
    color: var(--color-heading);
    margin: 20px 15px;
    padding: 0;
}

/* ========== Section 2B: Advantages & Features ========== */
.advantages-features {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.advantages-features .content-wrapper {
    display: flex;
    gap: var(--spacing-gap);
    align-items: flex-start;
}

.advantages-features .content-left {
    flex: 1;
}

.advantages-features .content-right {
    flex: 1;
}

.advantages-features .content-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 25px;
    margin-top: 0;
}

.advantages-features .content-paragraph {
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.advantages-features .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 比例 */
    border-radius: 8px;
    overflow: hidden;
    background-color: #000;
}

.advantages-features .video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== Section 2C: Video with Content ========== */
.video-content-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.video-content-section .content-wrapper {
    display: flex;
    gap: var(--spacing-gap);
    align-items: flex-start;
}

.video-content-section .content-left {
    flex: 1;
}

.video-content-section .content-right {
    flex: 1;
}

.video-content-section .content-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 20px;
    margin-top: 0;
}

.video-content-section .content-paragraph {
    color: var(--color-text);
    margin-bottom: 30px;
    line-height: 1.8;
}

.video-content-section .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 比例 */
    border-radius: 8px;
    overflow: hidden;
    background-color: #000;
}

.video-content-section .video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== Section 2D: Dining Room ========== */
.dining-room-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.dining-room-section .content-wrapper {
    display: flex;
    gap: var(--spacing-gap);
    align-items: flex-start;
}

.dining-room-section .content-left {
    flex: 1;
}

.dining-room-section .content-right {
    flex: 1;
}

.dining-room-section .content-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 20px;
    margin-top: 0;
}

.dining-room-section .content-subtitle {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-top: 30px;
    margin-bottom: 15px;
}

.dining-room-section .content-paragraph {
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.dining-room-section .content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* ========== Section 2E: Chandelier Height & Type ========== */
.chandelier-height-type {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.chandelier-height-type .content-wrapper {
    display: flex;
    gap: var(--spacing-gap);
    align-items: flex-start;
}

.chandelier-height-type .content-left {
    flex: 1;
}

.chandelier-height-type .content-right {
    flex: 1;
}

.chandelier-height-type .content-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 20px;
    margin-top: 0;
}

.chandelier-height-type .content-subtitle {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-top: 30px;
    margin-bottom: 15px;
}

.chandelier-height-type .content-paragraph {
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.chandelier-height-type .content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* ========== Section 2F: Bedroom Chandeliers ========== */
.bedroom-chandeliers-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.bedroom-chandeliers-section .content-wrapper {
    display: flex;
    gap: var(--spacing-gap);
    align-items: flex-start;
}

.bedroom-chandeliers-section .content-left {
    flex: 1;
}

.bedroom-chandeliers-section .content-right {
    flex: 1;
}

.bedroom-chandeliers-section .content-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 20px;
    margin-top: 0;
}

.bedroom-chandeliers-section .content-subtitle {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-top: 30px;
    margin-bottom: 15px;
}

.bedroom-chandeliers-section .content-paragraph {
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.bedroom-chandeliers-section .content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* ========== Section 2G: Entryway & Living Room ========== */
.entryway-living-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.entryway-living-section .content-wrapper {
    display: flex;
    gap: var(--spacing-gap);
    align-items: flex-start;
}

.entryway-living-section .content-left {
    flex: 1;
}

.entryway-living-section .content-right {
    flex: 1;
}

.entryway-living-section .content-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 20px;
    margin-top: 0;
}

.entryway-living-section .content-subtitle {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-top: 30px;
    margin-bottom: 15px;
}

.entryway-living-section .content-paragraph {
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.entryway-living-section .content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* ========== Section 2H: Other Considerations ========== */
.other-considerations-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.other-considerations-section .content-wrapper {
    display: flex;
    gap: var(--spacing-gap);
    align-items: flex-start;
}

.other-considerations-section .content-left {
    flex: 1;
}

.other-considerations-section .content-right {
    flex: 1;
}

.other-considerations-section .content-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 20px;
    margin-top: 0;
}

.other-considerations-section .content-subtitle {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-top: 30px;
    margin-bottom: 15px;
}

.other-considerations-section .content-paragraph {
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.other-considerations-section .content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* ========== Section 2I: Popular Styles ========== */
.popular-styles-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.popular-styles-section .content-wrapper {
    display: flex;
    gap: var(--spacing-gap);
    align-items: flex-start;
}

.popular-styles-section .content-left {
    flex: 1;
}

.popular-styles-section .content-right {
    flex: 1;
}

.popular-styles-section .content-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 20px;
    margin-top: 0;
}

.popular-styles-section .content-subtitle {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-top: 30px;
    margin-bottom: 15px;
}

.popular-styles-section .content-paragraph {
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.popular-styles-section .content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* ========== Section 2J: Industrial Chandeliers ========== */
.industrial-chandeliers-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.industrial-chandeliers-section .content-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 25px;
    margin-top: 0;
    text-align: center;
}

.industrial-chandeliers-section .content-paragraph {
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.industrial-chandeliers-section .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 比例 */
    border-radius: 8px;
    overflow: hidden;
    background-color: #000;
}

.industrial-chandeliers-section .video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== Section 2K: Modern Chandeliers ========== */
.modern-chandeliers-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.modern-chandeliers-section .content-wrapper {
    display: flex;
    gap: var(--spacing-gap);
    align-items: flex-start;
}

.modern-chandeliers-section .content-left {
    flex: 1;
}

.modern-chandeliers-section .content-right {
    flex: 1;
}

.modern-chandeliers-section .content-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 20px;
    margin-top: 0;
}

.modern-chandeliers-section .content-subtitle {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-top: 30px;
    margin-bottom: 15px;
}

.modern-chandeliers-section .content-paragraph {
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.modern-chandeliers-section .content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

/* ========== Section 2L: Showroom ========== */
.showroom-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-large) 0;
}

.showroom-section .content-wrapper {
    display: flex;
    gap: var(--spacing-gap);
    align-items: flex-start;
}

.showroom-section .content-left {
    flex: 1;
}

.showroom-section .content-right {
    flex: 1;
}

.showroom-section .content-title {
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 25px;
    margin-top: 0;
}

.showroom-section .content-paragraph {
    color: var(--color-text);
    margin-bottom: 20px;
    line-height: 1.8;
}

.showroom-section .video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 比例 */
    border-radius: 8px;
    overflow: hidden;
    background-color: #000;
}

.showroom-section .video-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== Section 3: FAQ ========== */
.faq-section {
    background-color: var(--color-bg-white);
    padding: var(--spacing-module-medium) 0;
}

.faq-section .section-title {
    font-size: var(--font-size-h3);
    font-weight: var(--font-weight-heading);
    color: var(--color-heading);
    margin-bottom: 40px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    background-color: var(--color-bg-white);
    color: var(--color-heading);
    font-weight: 500;
    cursor: pointer;
    position: relative;
    padding-left: 50px;
}

.faq-question:before {
    content: '+';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--color-primary);
    font-weight: bold;
}

.faq-item:hover .faq-question {
    background-color: #f9f9f9;
}

/* ========== Section 4: Quote Form ========== */
/* (Shared quote form styles are in shared-quote-form.css) */

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-size: var(--font-size-body);
    color: var(--color-heading-alt);
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}

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

.form-checkboxes {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.form-checkboxes label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--font-size-small);
    color: var(--color-heading);
    cursor: pointer;
}

.form-checkboxes input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-file {
    display: flex;
    align-items: center;
    gap: 15px;
}

.file-input {
    display: none;
}

.file-label {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--color-bg-white);
    border: 1px solid var(--color-border);
    border-radius: 4px;
    cursor: pointer;
    font-size: var(--font-size-body);
    transition: all 0.3s ease;
}

.file-label:hover {
    background-color: #f9f9f9;
    border-color: var(--color-primary);
}

/* ========== Responsive Styles ========== */

/* Tablet (≤1024px) */
@media (max-width: 1024px) {
    :root {
        --font-size-h1: 42px;
        --font-size-h2: 32px;
        --font-size-h3: 22px;
    }

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

    .advantages-features .content-wrapper,
    .video-content-section .content-wrapper,
    .dining-room-section .content-wrapper,
    .chandelier-height-type .content-wrapper,
    .bedroom-chandeliers-section .content-wrapper,
    .entryway-living-section .content-wrapper,
    .other-considerations-section .content-wrapper,
    .popular-styles-section .content-wrapper,
    .modern-chandeliers-section .content-wrapper,
    .showroom-section .content-wrapper {
        flex-direction: column;
    }

    .form-checkboxes {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    :root {
        --spacing-module-large: 60px;
        --spacing-module-medium: 50px;
        --spacing-module-small: 30px;
        --font-size-h1: 36px;
        --font-size-h2: 28px;
        --font-size-h3: 20px;
    }

    .chandeliers-hero {
        min-height: 400px;
    }

    .chandeliers-hero .hero-title {
        font-size: 32px;
    }

    .chandeliers-hero .hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }

    .chandeliers-hero .hero-right {
        align-self: flex-start;
    }

    .chandeliers-hero .btn {
        min-width: 200px;
    }

    .chandelier-categories .categories-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

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

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
    :root {
        --font-size-h1: 28px;
        --font-size-h2: 24px;
        --font-size-h3: 18px;
        --font-size-body: 15px;
        --font-size-small: 13px;
    }

    .chandeliers-hero .hero-title {
        font-size: 24px;
    }

    .chandeliers-hero .hero-content {
        align-items: center;
    }

    .chandeliers-hero .hero-right {
        align-self: center;
    }

    .chandeliers-hero .btn {
        width: 100%;
        min-width: auto;
    }

    .chandelier-categories .category-card {
        padding: 0;
    }

    .chandelier-categories .category-image {
        height: 200px;
    }

    .faq-question {
        padding-left: 40px;
        font-size: var(--font-size-small);
    }

    .form-checkboxes {
        grid-template-columns: 1fr;
    }
}
