Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 | import type { FAQItem } from "./general";
export const PROCESS_FAQS: FAQItem[] = [
{
question: "What is the typical interior design process?",
answer:
"A typical interior design engagement follows these stages: inquiry and designer shortlisting → free site visit and brief discussion → mood board and style references → 3D design and space planning → bill of quantities (BOQ) and final quote → client approval and contract signing → material procurement and execution (8–16 weeks) → snagging and handover. The design phase usually takes 2–4 weeks; execution is the longest stage and depends on scope and site conditions.",
},
{
question: "How long does interior design take for a 2BHK in Hyderabad?",
answer:
"Once the design is finalized and approved, a full 2BHK interior typically takes 8–12 weeks to execute. This includes carpentry (4–6 weeks for factory-made modular units), civil finishing, false ceilings, painting, and installation. A rush timeline of 6 weeks is possible for premium factory-built modular projects with pre-approved designs, but expect a 10–15% premium for expedited execution.",
},
{
question: "What is the difference between modular and custom furniture?",
answer:
"Modular furniture is manufactured in a factory to standard dimensions and assembled on-site. It offers faster delivery, consistent quality, and predictable pricing, but is less flexible for unusual room shapes. Custom or site-built furniture is fabricated by carpenters directly on-site, allowing for any shape and configuration — but quality can vary by craftsman, timelines are longer, and changes during execution are harder to manage. Many designers use a hybrid approach: modular for kitchens and wardrobes, custom for statement pieces.",
},
{
question: "How do I prepare for the first designer meeting?",
answer:
"Bring or share the following before or during the first meeting: the apartment floor plan (most builders provide this); reference images from Pinterest, Houzz, or Instagram of styles you find appealing; a clear budget range (a range is fine — it helps the designer calibrate material tiers); your target move-in date or any construction deadlines; and a list of must-haves (e.g., a home office nook, vastu compliance, specific colour preferences). The more you can articulate upfront, the more productive the site visit will be.",
},
{
question: "What approvals or permissions are needed for interior work?",
answer:
"Standard interior fit-out work — furniture, false ceilings, painting, flooring, modular units — does not require any municipal approval in Hyderabad. However, if you plan structural changes (breaking or adding walls, modifying load-bearing elements), you will need permission from the housing society or apartment association, and in some cases from the local municipal body. Always check your housing society's bylaws before starting any work that affects the building structure.",
},
{
question: "Can the design be changed once work starts?",
answer:
"Minor design changes — material substitutions, colour adjustments, light fixture swaps — are generally possible in the early stages of execution without significant cost impact. Major changes (redesigning a room layout, changing the kitchen configuration after fabrication has started, adding rooms to scope) after execution begins will incur additional costs and can delay the project by weeks. This is why it is critical to finalize and sign off on all designs and the BOQ before execution starts.",
},
{
question: "How do I manage material procurement?",
answer:
"Most reputable designers provide a detailed material list with brand and specification recommendations, and introduce you to their trusted vendors. You can choose to let the designer procure materials on your behalf (saves time, leverages their discounts, but adds a coordination fee of 5–10%) or procure directly from vendors (more control, but requires significant time investment). For first-time homeowners, designer-managed procurement is generally recommended to avoid specification errors.",
},
{
question: "What warranty do designers typically offer?",
answer:
"Most established designers offer a 1-year workmanship warranty covering defects in carpentry joints, laminate peeling, hardware malfunctions, and painting finish. For branded modular kitchens, manufacturer warranties on hardware (hinges, channels, lift systems) typically run 5–10 years. Electrical work warranty depends on the contractor — confirm this separately. Get all warranty terms documented in writing as part of your project contract.",
},
];
|