/* Kusum Furniture Homepage – layout, sequence & section design */

/* Unified section headers */
.section-head {
    margin-bottom: 32px;
    text-align: center;
}

.section-head--left {
    text-align: left;
    margin-bottom: 20px;
}

.section-head .section-subtitle {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.section-head--left .section-subtitle {
    margin-left: 0;
    margin-right: 0;
}

.gold-line--center { margin: 16px auto; }
.section-label--light { color: var(--color-gold-light); }
.section-cta { text-align: center; margin-top: 32px; }

/* ── 2. Services ── */
.services-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.service-card--premium {
    border: 1px solid var(--color-border);
    border-radius: 18px;
    overflow: hidden;
    background: var(--color-white);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card--premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.1);
    border-color: rgba(197,160,89,0.45);
}

.service-card--premium .service-card__image {
    position: relative;
    height: 220px;
    min-height: 220px;
}

.service-card__index {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-white);
    background: rgba(0,0,0,0.55);
    padding: 5px 10px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}

.service-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--color-cream);
    border: 1px solid var(--color-border);
    color: var(--color-gold-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.service-card--premium .service-card__body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card--premium .service-card__body h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.service-card--premium .service-card__body p {
    flex: 1;
    margin-bottom: 16px;
}

/* ── 3. Craftsmanship strip ── */
.euro-luxury {
    display: grid;
    overflow: hidden;
    background: var(--color-black);
}

.euro-luxury__visual {
    grid-area: 1 / 1;
    position: relative;
    height: 42vh;
    min-height: 280px;
    max-height: 520px;
}

.euro-luxury__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.euro-luxury__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 55%, rgba(0,0,0,0.25) 100%);
}

.euro-luxury__content {
    grid-area: 1 / 1;
    align-self: center;
    z-index: 2;
    padding-top: 24px;
    padding-bottom: 24px;
}

.euro-luxury__text {
    max-width: 560px;
}

.euro-luxury__lead {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin: 16px 0 24px;
}

.category-marquee--inline {
    grid-area: 2 / 1;
    position: relative;
    z-index: 3;
    border-top: 1px solid rgba(197,160,89,0.25);
}

/* ── 4. Process timeline ── */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
    padding-top: 8px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 26px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold), var(--color-gold), transparent);
    z-index: 0;
}

.process-timeline__step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-timeline__marker {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-gold);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    box-shadow: 0 4px 14px rgba(197,160,89,0.35);
    flex-shrink: 0;
}

.process-timeline__card {
    width: 100%;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.process-timeline__step:hover .process-timeline__card {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-gold);
}

.process-timeline__media {
    height: 120px;
    overflow: hidden;
}

.process-timeline__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.process-timeline__step:hover .process-timeline__media img {
    transform: scale(1.05);
}

.process-timeline__body {
    padding: 16px 14px 18px;
    text-align: center;
    flex: 1;
}

.process-timeline__body h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.process-timeline__body p {
    font-size: 0.84rem;
    line-height: 1.55;
    color: var(--color-text-light);
}

/* ── 5. Intro ── */
.intro-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.intro-tags span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    color: var(--color-text-light);
    background: var(--color-white);
}

.intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.intro-split__media {
    border-radius: 16px;
    overflow: hidden;
    /* box-shadow: var(--shadow-md); */
}

/* About pillars */
.about-pillar {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 24px;
    transition: border-color var(--transition), box-shadow var(--transition);
}

.about-pillar:hover {
    border-color: var(--color-gold);
    box-shadow: var(--shadow-sm);
}

.about-pillar h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--color-gold-dark);
}

/* ── Featured Products ── */
.product-showcase {
    width: 100%;
    overflow: hidden;
}

.product-showcase__track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-tile {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}

.product-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border-color: rgba(197,160,89,0.4);
}

.product-tile__visual {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--color-charcoal);
}

.product-tile__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.product-tile:hover .product-tile__visual img {
    transform: scale(1.06);
}

.product-tile__tag {
    position: absolute;
    top: 14px;
    left: 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 100px;
    background: var(--color-gold);
    color: var(--color-black);
}

.product-tile__body {
    padding: 22px 22px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-tile__body h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.product-tile__body p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--color-text-light);
    flex: 1;
    margin-bottom: 16px;
}

.product-tile__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--color-border);
}

.product-tile__price small {
    display: block;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: 2px;
}

.product-tile__price strong {
    font-family: var(--font-elegant);
    font-size: 1.15rem;
    color: var(--color-gold-dark);
    font-weight: 500;
}

.product-tile__price--muted strong {
    font-size: 0.95rem;
    color: var(--color-text-light);
}

.product-tile__btn {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 18px;
    border-radius: 100px;
    background: var(--color-brown);
    color: var(--color-white);
    white-space: nowrap;
    transition: background var(--transition);
}

.product-tile__btn:hover {
    background: var(--color-gold);
    color: var(--color-black);
}

/* ── Why Kusum icons ── */
.why-item--glass {
    border-radius: 16px;
    backdrop-filter: blur(8px);
    text-align: center;
}

.why-item--glass .why-item__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(197,160,89,0.5);
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Project filters */
.project-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 28px;
}

.filter-btn {
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    background: var(--color-white);
    transition: all var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--color-brown);
    border-color: var(--color-brown);
    color: var(--color-white);
}

/* Testimonials */
.testimonial-card {
    background: rgba(255,255,255,0.97);
    padding: 32px 28px;
    border-radius: 20px;
    box-shadow: 0 16px 48px rgba(0,0,0,0.2);
    text-align: left;
    max-width: 640px;
    margin: 0 auto;
}

.testimonial-card__stars {
    color: var(--color-gold);
    font-size: 14px;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.testimonial-card__icon {
    color: var(--color-gold);
    opacity: 0.35;
    margin-bottom: 12px;
}

.testimonial-card__quote {
    font-family: var(--font-elegant);
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 24px;
}

.testimonial-card__client {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-brown);
    color: var(--color-gold-light);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card__client strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-card__client span {
    font-size: 0.82rem;
    color: var(--color-text-light);
}

/* CTA */
.cta-banner--media {
    border-radius: 16px;
    overflow: hidden;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .services-showcase { grid-template-columns: repeat(2, 1fr); }
    .process-timeline { grid-template-columns: repeat(3, 1fr); }
    .process-timeline::before { display: none; }
    .product-showcase__track { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .euro-luxury__visual { height: 36vh; min-height: 260px; }
    .process-timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .page-home .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-head { margin-bottom: 24px; }

    .services-showcase {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .services-showcase::-webkit-scrollbar { display: none; }

    .service-card--premium {
        flex: 0 0 86%;
        scroll-snap-align: center;
    }

    .euro-luxury__content {
        align-items: flex-end;
        padding-bottom: 24px;
    }

    .euro-luxury__text {
        max-width: 100%;
        padding: 0 4px;
    }

    .euro-luxury__lead { font-size: 0.92rem; }

    .process-timeline {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .process-timeline::-webkit-scrollbar { display: none; }

    .process-timeline__step {
        flex: 0 0 78%;
        scroll-snap-align: center;
    }

    .product-showcase__track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 14px;
        padding-bottom: 12px;
        scrollbar-width: none;
    }

    .product-showcase__track::-webkit-scrollbar { display: none; }

    .product-tile {
        flex: 0 0 85%;
        scroll-snap-align: center;
    }

    .intro-actions { flex-direction: column; }
    .intro-actions .btn { width: 100%; text-align: center; }

    .about-pillar,
    .why-item--glass,
    .project-item,
    .contact-card {
        border-radius: 0;
        box-shadow: 0 4px 18px rgba(0,0,0,0.06);
    }

    .project-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .project-filters::-webkit-scrollbar { display: none; }
    .filter-btn { flex-shrink: 0; }

    .testimonial-card { padding: 24px 20px; }
    .testimonial-card__quote { font-size: 1.02rem; }
}
