/* =====================================================
   AGOID INTERIOR - Living Room Design Specific Styles
   File: assets/css/living-room.css
   ===================================================== */

/* --- 1. Hero Section (Parallax & Premium) --- */
.living-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../../images/portfolio/spacious-living-room-interior-design-kolkata-1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.living-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 42, 0.6), rgba(10, 10, 42, 0.9));
}

.living-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

.living-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 5px 15px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.living-hero-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 40px;
    font-weight: 300;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards 0.8s;
}

/* --- 2. Design Categories (Bento Grid) --- */
.category-section {
    padding: 100px 0;
    background: var(--dark-blue);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 20px;
}

.bento-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.bento-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.bento-item:nth-child(2) { grid-column: span 2; }
.bento-item:nth-child(3) { grid-column: span 1; }
.bento-item:nth-child(4) { grid-column: span 1; }

.bento-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}

.bento-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.bento-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(51, 213, 229, 0.2);
    border-color: var(--accent-cyan);
}
.bento-item:hover img { transform: scale(1.1); }
.bento-item:hover .bento-overlay { transform: translateY(0); }

.bento-title { font-size: 1.8rem; color: #fff; margin-bottom: 5px; }
.bento-desc { font-size: 0.9rem; color: var(--accent-cyan); }

/* --- 3. Process Timeline (NEW) --- */
.process-section {
    padding: 80px 0;
    background: #0b0b2e;
}
.process-steps {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
    position: relative;
}
.process-steps::before {
    content: ''; position: absolute; top: 40px; left: 0; width: 100%; height: 2px;
    background: rgba(255,255,255,0.1); z-index: 0;
}
.step-card {
    position: relative; z-index: 1;
    background: #0f0f36;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 30px 20px;
    width: 23%;
    text-align: center;
    border-radius: 15px;
    transition: 0.3s;
}
.step-card:hover { transform: translateY(-10px); border-color: var(--accent-cyan); }
.step-number {
    width: 50px; height: 50px; background: var(--accent-cyan);
    color: #000; font-weight: 700; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px; font-size: 1.2rem;
}
.step-card h3 { color: #fff; margin-bottom: 10px; font-size: 1.2rem; }
.step-card p { color: #ccc; font-size: 0.9rem; }

/* --- 4. Pricing Table (NEW) --- */
.pricing-section { padding: 80px 0; background: var(--dark-blue); }
.pricing-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
    margin-top: 50px;
}
.price-card {
    background: rgba(255,255,255,0.03);
    padding: 40px; border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center; position: relative;
    transition: 0.3s;
}
.price-card.featured {
    background: linear-gradient(145deg, rgba(51, 213, 229, 0.1), rgba(0,0,0,0));
    border-color: var(--accent-cyan); transform: scale(1.05);
}
.price-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }
.price-amount { font-size: 2rem; color: var(--accent-cyan); font-weight: 700; margin-bottom: 20px; display: block; }
.price-features { list-style: none; margin-bottom: 30px; text-align: left; color: #ccc; }
.price-features li { margin-bottom: 10px; display: flex; align-items: center; }
.price-features i { color: var(--accent-cyan); margin-right: 10px; }

/* --- 5. FAQ Accordion (NEW) --- */
.faq-section { padding: 80px 0; background: #0f0f36; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: rgba(255,255,255,0.02);
    margin-bottom: 15px; border-radius: 10px; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
}
.faq-item summary {
    padding: 20px; cursor: pointer; color: #fff; font-weight: 500;
    position: relative; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+'; position: absolute; right: 20px; font-size: 1.5rem; color: var(--accent-cyan);
}
.faq-item[open] summary::after { content: '-'; }
.faq-content { padding: 0 20px 20px; color: #ccc; line-height: 1.6; }

/* --- Responsive Updates --- */
@media (max-width: 991px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
    .bento-item:nth-child(1) { height: 350px; }
    .bento-item { height: 250px; }
    .process-steps::before { display: none; }
    .step-card { width: 48%; margin-bottom: 20px; }
    .pricing-grid { grid-template-columns: 1fr; gap: 40px; }
    .price-card.featured { transform: scale(1); }
}
@media (max-width: 600px) {
    .bento-grid { display: flex; flex-direction: column; }
    .bento-item { height: 300px !important; }
    .step-card { width: 100%; }
}

@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }