.main-page-wrapper {
    padding: 0 !important;
}

.main-page-wrapper .container {
    padding: 0 !important;
    margin: 0 !important;
    max-width: none !important;
}
.page-custom {
    padding-top: 0; /* Adjusted for standalone preview */
}

/* HERO */
.custom-hero {
    height: 70vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url("https://woodsmandecor.com/wp-content/uploads/2023/04/wd-furniture-about-us-video-opt.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 40px;
}

.hero-inner {
    max-width: 800px;
}

.custom-hero h1 {
    font-size: clamp(36px, 8vw, 64px);
    margin-bottom: 24px;
    color: #fff;
}

.custom-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: #fff;
}

/* PROCESS */
.process-section {
    padding: 100px 20px;
    text-align: center;
}

.section-head {
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-head h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.process-card {
    padding: 20px;
    transition: transform 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
}

.process-card .icon {
    width: 80px;
    height: 80px;
    background: #f8f5f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.process-card svg {
    width: 30px;
    height: 30px;
    stroke: #b45309;
    fill: none;
    stroke-width: 1.5;
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.process-card p {
    color: #666;
    font-size: 0.95rem;
}

/* FORM */
.custom-request {
    padding: 100px 20px;
    background: #fcfaf7;
}

.form-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    background: white;
}

.form-left {
    background: #151312;
    color: white;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
}

.form-left p {
    color: #999;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.form-left ul {
    list-style: none;
    padding: 0;
}

.form-left li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #ddd;
}

.form-left li::before {
    content: "✓";
    color: #b45309;
    margin-right: 15px;
    font-weight: bold;
}

.form-right {
    padding: 80px 60px;
}

.form-right input,
.form-right textarea {
    width: 100%;
    border: none;
    border-bottom: 1.5px solid #eee;
    padding: 14px;
    margin-bottom: 30px;
    outline: none;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-right input:focus,
.form-right textarea:focus {
    border-bottom-color: #b45309;
}

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

/* FILE UPLOAD */
.file-upload {
    margin-bottom: 40px;
}

.file-upload label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #888;
    display: block;
    margin-bottom: 10px;
}

.upload-box {
    border: 2px dashed #e5e7eb;
    padding: 24px;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.upload-box:hover {
    border-color: #b45309;
    background: #fffcf9;
}

.upload-box input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.upload-box span {
    color: #666;
    font-size: 0.9rem;
}

/* BUTTON */
.form-right button {
    width: 100%;
    padding: 20px;
    background: #b45309;
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition:
        background 0.3s,
        transform 0.2s;
}

.form-right button:hover {
    transform: translateY(-2px);
}

.form-right button:active {
    transform: translateY(0);
}

/* FAQ */
.faq-section {
    padding: 100px 20px;
    max-width: 1000px;
    margin: auto;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
}

.faq {
    border-bottom: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.faq h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.faq p {
    color: #666;
}

/* CTA */
.contact-cta {
    margin-top: 40px;
    background: #fdf5ec;
    padding: 30px;
    border-radius: 32px;
    text-align: center;
}

.contact-cta h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.contact-cta p {
    margin-bottom: 30px;
    color: #555;
}

.contact-cta button {
    background: #78350f !important;
    color: white !important;
    padding: 16px 48px;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
    transition: scale 0.3s;
}

.contact-cta button a {
    color: #fff;
}

.contact-cta button:hover {
    scale: 1.1;
}

/* Responsive */
@media (max-width: 900px) {
    .form-container {
        grid-template-columns: 1fr;
    }
    .form-left {
        padding: 60px 40px;
    }
    .form-right {
        padding: 60px 40px;
    }
}

@media (max-width: 600px) {
    .custom-hero h1 {
        font-size: 32px;
    }
    .section-head h2 {
        font-size: 32px;
    }
    .contact-cta {
        padding: 40px 20px;
    }
}
