/* ========== White Oak Cabinets 页面模板样式 ========== */

.page-white-oak-cabinets {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #334155;
    line-height: 1.6;
}

.page-white-oak-cabinets .elementor-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Base Formats */
.page-white-oak-cabinets h1,
.page-white-oak-cabinets h2,
.page-white-oak-cabinets h3 {
    color: #0f172a;
    font-weight: 700;
}

.page-white-oak-cabinets .section-title {
    font-size: 36px;
    margin-bottom: 30px;
    line-height: 1.3;
}

.page-white-oak-cabinets .center-title {
    text-align: center;
}

.page-white-oak-cabinets .caption-bottom {
    text-align: center;
    color: #94a3b8;
    margin-top: 25px;
    font-size: 14px;
}

.page-white-oak-cabinets .btn-primary {
    display: inline-block;
    padding: 14px 34px;
    background: #ff8c00;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-white-oak-cabinets .btn-primary:hover {
    background: #e67d00;
}

/* ========== Section 1: Hero ========== */
.white-oak-hero-section {
    position: relative;
}

.white-oak-hero-section .hero-banner {
    min-height: 520px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.white-oak-hero-section .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(18, 28, 44, 0.36);
}

.white-oak-hero-section .hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 0;
    width: 100%;
}

.white-oak-hero-section .hero-title {
    margin: 0;
    font-size: 62px;
    line-height: 1.1;
    color: #fff;
    font-weight: 700;
    text-align: left;
    max-width: 60%;
}

.white-oak-hero-section .hero-description {
    margin: 20px 0 0 0;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    text-align: left;
    max-width: 60%;
}

.white-oak-hero-section .hero-btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 0;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.25s ease;
}

.white-oak-hero-section .hero-btn:hover {
    background: #f5f5f5;
    transform: translateY(-2px);
}

/* ========== Section 2: Product Grid ========== */
.white-oak-grid-section {
    padding: 86px 0;
    background: #ffffff;
}

.white-oak-grid-section .section-header {
    text-align: center;
    max-width: 1120px;
    margin: 0 auto 40px;
}

.white-oak-grid-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1f2b44;
    margin: 0 0 20px;
}

.white-oak-grid-section .intro-separator {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 25px;
}

.white-oak-grid-section .intro-separator span {
    display: block;
    height: 4px;
    background-color: #ff8c00;
}

.white-oak-grid-section .intro-separator span:nth-child(1),
.white-oak-grid-section .intro-separator span:nth-child(2),
.white-oak-grid-section .intro-separator span:nth-child(3) {
    width: 6px;
}

.white-oak-grid-section .intro-separator span:nth-child(4) {
    width: 60px;
}

.white-oak-grid-section .section-description {
    font-size: 18px;
    color: #4a5567;
    line-height: 1.6;
    margin: 0;
}

.white-oak-grid-section .products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    align-items: start;
}

.white-oak-grid-section .product-card {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.white-oak-grid-section .product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.white-oak-grid-section .card-image {
    width: 100%;
    height: 380px;
}

.white-oak-grid-section .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.white-oak-grid-section .card-title {
    margin: 0;
    padding: 16px 12px 18px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #3f4550;
    background: #f2f2f2;
}

/* ========== Section 3: Alternating Rows ========== */
.white-oak-alternating-section {
    padding: 80px 0;
    background: #ffffff;
}

.alternating-row {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 90px;
}

.alternating-row.row-reverse {
    flex-direction: row-reverse;
}

.alternating-row:last-child {
    margin-bottom: 0;
}

.row-content {
    flex: 1;
}

.row-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1f2b44;
}

.row-desc {
    font-size: 17px;
    color: #4a5567;
    line-height: 1.8;
    margin-bottom: 30px;
}

.row-desc ul {
    padding-left: 20px;
    margin-top: 20px;
}

.row-desc li {
    margin-bottom: 10px;
}

.row-image {
    flex: 0 0 52%;
    position: relative;
}

.row-image img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

/* ========== Section 4: Options Section ========== */
.white-oak-options-section {
    padding: 80px 0;
    background: #f8fafc;
}

.options-subheading {
    margin: 40px 0 15px 0;
    font-size: 24px;
    font-weight: 700;
    color: #1f2b44;
}

.section-subtitle {
    font-size: 18px;
    color: #4a5567;
    margin-bottom: 50px;
}

/* ========== Section 5: Benefits Split ========== */
.white-oak-benefits-section {
    padding: 80px 0;
    background: #ffffff;
}

.white-oak-benefits-section .section-description {
    max-width: 1000px;
    margin: 0 auto 60px;
    color: #4a5567;
    line-height: 1.8;
    font-size: 17px;
}

/* ========== Section 6: Incorporate Blocks ========== */
.white-oak-incorporate-section {
    padding: 80px 0;
    background: #f8fafc;
}

.incorporate-blocks {
    max-width: 900px;
    margin: 0 auto;
}

.incorporate-blocks h3 {
    font-size: 24px;
    color: #1e293b;
    margin-bottom: 15px;
}

.incorporate-blocks p {
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 40px;
}

.incorporate-blocks .btn-primary {
    margin-top: 10px;
}

/* ========== Section 7: George Section ========== */
.white-oak-george-section {
    padding: 80px 0;
    background: #ffffff;
}

/* ========== Section 9: FAQ ========== */
.white-oak-faq-section {
    padding: 80px 0;
    background: #fff;
}

.white-oak-faq-section .faq-list {
    max-width: 980px;
    margin: 0 auto;
}

.white-oak-faq-section .faq-item {
    border-bottom: 1px solid #e6eaf0;
    padding: 14px 0;
}

.white-oak-faq-section .faq-details {
    margin: 0;
}

.white-oak-faq-section .faq-details[open] .faq-icon::before {
    content: '−';
}

.white-oak-faq-section .faq-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    list-style: none;
}

.white-oak-faq-section .faq-item-header::-webkit-details-marker {
    display: none;
}

.white-oak-faq-section .faq-icon {
    width: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #5d6678;
}

.white-oak-faq-section .faq-icon::before {
    content: '+';
    font-size: 22px;
    line-height: 1;
}

.white-oak-faq-section .faq-item-title {
    margin: 0;
    color: #2b3342;
    font-weight: 500;
    font-size: 18px;
}

.white-oak-faq-section .faq-item-content {
    margin: 10px 0 4px 34px;
}

.white-oak-faq-section .faq-item-answer {
    margin: 0;
    color: #4a5567;
    line-height: 1.65;
}

/* ========== Section 10: Contact Form ========== */
.white-oak-contact-section {
    padding: 84px 0;
    background: #f3f3f3;
}

.white-oak-contact-section .contact-wrapper {
    max-width: 1100px;
    margin: 0 auto;
}

.white-oak-contact-section .contact-head {
    text-align: left;
    margin-bottom: 30px;
}

.white-oak-contact-section .contact-body {
    display: flex;
    gap: 30px;
}

.white-oak-contact-section .contact-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.white-oak-contact-section .contact-image {
    margin-bottom: 16px;
}

.white-oak-contact-section .contact-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.white-oak-contact-section .contact-form-content {
    flex: 1;
    background: #fff;
    padding: 30px;
    min-width: 0;
}

.white-oak-contact-section .form-title {
    margin: 0 0 12px;
    font-size: 24px;
    line-height: 1.3;
    color: var(--title);
}

.white-oak-contact-section .form-subtitle {
    margin: 0;
    font-size: 15px;
    color: #596274;
    font-weight: 400;
}

.white-oak-contact-section .side-title {
    margin: 0 0 8px;
    color: #2d2d2d;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 600;
}

.white-oak-contact-section .side-subtitle {
    margin: 0;
    color: #596274;
    font-size: 16px;
}

.white-oak-contact-section .white-oak-contact-form .form-group {
    margin-bottom: 14px;
}

.white-oak-contact-section .form-input,
.white-oak-contact-section .form-select,
.white-oak-contact-section .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d7deea;
    border-radius: 4px;
    font-size: 14px;
    color: #293041;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.white-oak-contact-section .form-input:focus,
.white-oak-contact-section .form-textarea:focus {
    outline: none;
    border-color: #6b7280;
}

.white-oak-contact-section .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.white-oak-contact-section .file-label {
    display: inline-block;
    padding: 8px 14px;
    border: 1px solid #d0d8e6;
    background: #f8fafc;
    font-size: 13px;
    color: #2e3544;
    cursor: pointer;
}

.white-oak-contact-section .form-file {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
}

.white-oak-contact-section .form-submit-btn {
    width: 100%;
    padding: 14px 30px;
    font-size: 16px;
    background: #ff6b35;
    color: #fff;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.white-oak-contact-section .form-submit-btn:hover {
    background: #e55a2b;
}

/* ========== Responsive ========== */
@media (max-width: 991px) {
    .hero-split-wrapper {
        flex-direction: column;
        text-align: center;
    }

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

    .alternating-row,
    .alternating-row.row-reverse {
        flex-direction: column;
        margin-bottom: 60px;
    }

    .benefits-row {
        flex-direction: column;
    }

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

    .white-oak-hero-section,
    .white-oak-grid-section,
    .white-oak-alternating-section,
    .white-oak-options-section,
    .white-oak-benefits-section,
    .white-oak-incorporate-section,
    .white-oak-george-section,
    .white-oak-faq-section,
    .white-oak-contact-section {
        padding: 60px 0;
    }

    .white-oak-contact-section .contact-body {
        flex-direction: column;
    }
}

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

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

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

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

    .white-oak-contact-section .contact-wrapper {
        padding: 0 15px;
    }
}