/* ===================== RAKE FURNITURE - Stylesheet ===================== */
/* Brand Palette */
:root{
    --bronze: #8B5E3C;
    --bronze-light: #A9794F;
    --bronze-dark: #6B4324;
    --charcoal: #2C2C2C;
    --charcoal-soft: #3A3A3A;
    --cream: #F5F0E8;
    --cream-soft: #FAF6EF;
    --cream-deep: #ECE3D4;
    --white: #FFFFFF;
    --gray: #7A7468;
    --gray-light: #B5AE9E;
    --line: #E6DECC;
    --shadow: 0 10px 40px rgba(44, 44, 44, 0.10);
    --shadow-deep: 0 20px 60px rgba(44, 44, 44, 0.18);
    --radius: 4px;
    --radius-lg: 10px;
    --max: 1280px;
    --font-zh: 'Noto Sans SC', 'Inter', system-ui, sans-serif;
    --font-en: 'Cormorant Garamond', 'Inter', serif;
    --font-hi: 'Noto Sans Devanagari', 'Inter', system-ui, sans-serif;
}

*{ box-sizing: border-box; margin:0; padding:0; }
html{ scroll-behavior: smooth; scroll-padding-top: 100px; }
body{
    font-family: var(--font-zh);
    color: var(--charcoal);
    background: var(--cream-soft);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 16px;
}
body[data-lang="en"]{ font-family: 'Inter', system-ui, sans-serif; }
body[data-lang="hi"]{ font-family: var(--font-hi); }

a{ color: inherit; text-decoration: none; transition: color .25s; }
img{ max-width:100%; display:block; }
ul{ list-style: none; }
.container{ max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.small{ font-size: .7em; }

/* ===== Topbar ===== */
.topbar{
    background: var(--charcoal);
    color: var(--cream);
    font-size: 13px;
    padding: 8px 0;
}
.topbar-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.topbar-left, .topbar-right{
    display: flex;
    gap: 22px;
    align-items: center;
}
.topbar i{ color: var(--bronze-light); margin-right: 6px; }
.lang-switch{
    display: inline-flex;
    gap: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 30px;
    padding: 3px;
}
.lang-btn{
    background: transparent;
    border: none;
    color: var(--cream);
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 30px;
    cursor: pointer;
    transition: all .25s;
    font-family: inherit;
}
.lang-btn:hover{ background: rgba(255,255,255,0.1); }
.lang-btn.active{ background: var(--bronze); color: #fff; }

/* ===== Header ===== */
.header{
    background: var(--white);
    box-shadow: 0 2px 12px rgba(44,44,44,.04);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: all .3s;
}
.header.scrolled{ box-shadow: var(--shadow); }
.header-inner{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 32px;
    max-width: var(--max);
    margin: 0 auto;
}
.logo{
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 0;
}
.logo-img{ height: 48px; width: auto; display: block; margin-top: -8px; }

.nav-list{
    display: flex;
    gap: 6px;
    align-items: center;
}
.nav-item{ position: relative; }
.nav-link{
    display: block;
    padding: 12px 16px;
    font-weight: 500;
    font-size: 15px;
    color: var(--charcoal);
    border-radius: var(--radius);
}
.nav-link:hover{ color: var(--bronze); }
.nav-link .small{ margin-left: 4px; opacity: .6; }
.has-dropdown:hover > .dropdown{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
.dropdown{
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--white);
    box-shadow: var(--shadow);
    border-top: 3px solid var(--bronze);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all .25s;
    pointer-events: none;
}
.dropdown li a{
    display: block;
    padding: 10px 18px;
    font-size: 14px;
    color: var(--charcoal-soft);
    border-left: 2px solid transparent;
    transition: all .2s;
}
.dropdown li a:hover{
    background: var(--cream-soft);
    border-left-color: var(--bronze);
    color: var(--bronze);
    padding-left: 22px;
}

.menu-toggle{
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}
.menu-toggle span{
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    transition: all .3s;
}
.menu-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2){ opacity: 0; }
.menu-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn{
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid;
    cursor: pointer;
    transition: all .3s;
    border-radius: var(--radius);
    text-align: center;
}
.btn-primary{
    background: var(--bronze);
    color: #fff;
    border-color: var(--bronze);
}
.btn-primary:hover{
    background: var(--bronze-dark);
    border-color: var(--bronze-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139,94,60,.25);
}
.btn-outline{
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.5);
}
.btn-outline:hover{
    background: #fff;
    color: var(--charcoal);
    border-color: #fff;
}
.btn-full{ width: 100%; display: block; }

/* ===== Hero ===== */
.hero{
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
}
.hero-bg{
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(20,18,16,.85) 0%, rgba(44,40,36,.65) 50%, rgba(139,94,60,.55) 100%);
}
.hero-content{
    position: relative;
    z-index: 2;
    padding-top: 60px;
}
.hero-tag{
    display: inline-block;
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    padding: 8px 18px;
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border-radius: 30px;
}
.hero-title{
    font-family: var(--font-en);
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.1;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
body[data-lang="zh"] .hero-title,
body[data-lang="hi"] .hero-title{
    font-family: inherit;
    font-weight: 700;
}
.hero-title span{ display: block; }
.hero-title .accent{ color: var(--bronze-light); font-style: italic; }
body[data-lang="zh"] .hero-title .accent,
body[data-lang="hi"] .hero-title .accent{ font-style: normal; }
.hero-desc{
    font-size: 17px;
    max-width: 640px;
    margin-bottom: 36px;
    line-height: 1.7;
    color: rgba(255,255,255,.9);
}
.hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }
.hero-stats{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 720px;
    border-top: 1px solid rgba(255,255,255,.2);
    padding-top: 28px;
}
.stat-num{
    font-family: var(--font-en);
    font-size: 38px;
    font-weight: 700;
    color: var(--bronze-light);
    line-height: 1;
}
.stat-label{
    font-size: 13px;
    color: rgba(255,255,255,.8);
    margin-top: 6px;
}
.hero-scroll{
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,.7);
    font-size: 12px;
    letter-spacing: 2px;
    text-align: center;
    z-index: 2;
    animation: bounce 2s infinite;
}
@keyframes bounce{
    0%, 100%{ transform: translateX(-50%) translateY(0); }
    50%{ transform: translateX(-50%) translateY(-8px); }
}

/* ===== Sections ===== */
.section{
    padding: 100px 0;
}
.section-head{
    text-align: center;
    margin-bottom: 70px;
}
.section-tag{
    display: inline-block;
    color: var(--bronze);
    font-size: 13px;
    letter-spacing: 4px;
    margin-bottom: 14px;
    font-weight: 600;
}
.section-title{
    font-family: var(--font-en);
    font-size: clamp(28px, 4vw, 44px);
    color: var(--charcoal);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -.5px;
}
body[data-lang="zh"] .section-title,
body[data-lang="hi"] .section-title{
    font-family: inherit;
    font-weight: 700;
}
.section-subtitle{
    color: var(--gray);
    font-size: 16px;
    max-width: 720px;
    margin: 0 auto;
}
.block-title{
    font-size: 26px;
    color: var(--charcoal);
    margin-bottom: 36px;
    position: relative;
    padding-left: 20px;
    font-weight: 600;
}
.block-title::before{
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 24px;
    background: var(--bronze);
}

/* ===== About ===== */
.about{ background: var(--cream-soft); }
.about-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}
.about-image{
    position: relative;
}
.about-image img{
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-deep);
}
.about-image-badge{
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--bronze);
    color: #fff;
    padding: 22px 28px;
    text-align: center;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.badge-year{
    display: block;
    font-family: var(--font-en);
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}
.badge-text{
    font-size: 11px;
    letter-spacing: 2px;
    margin-top: 4px;
    display: block;
}
.about-content h3{
    font-size: 30px;
    margin-bottom: 22px;
    color: var(--charcoal);
    font-weight: 600;
}
.about-content p{
    color: var(--charcoal-soft);
    margin-bottom: 18px;
    line-height: 1.8;
}
.about-features{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--line);
}
.about-feature{
    display: flex;
    gap: 14px;
    align-items: flex-start;
}
.about-feature i{
    color: var(--bronze);
    font-size: 24px;
    width: 40px;
    height: 40px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.about-feature h4{
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--charcoal);
}
.about-feature p{ font-size: 13px; color: var(--gray); margin: 0; }

.about-culture{ margin-bottom: 80px; }
.culture-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.culture-card{
    background: var(--white);
    padding: 40px 30px;
    text-align: center;
    border-radius: var(--radius-lg);
    border-top: 4px solid var(--bronze);
    box-shadow: var(--shadow);
    transition: transform .3s;
}
.culture-card:hover{ transform: translateY(-6px); }
.culture-icon{
    width: 60px;
    height: 60px;
    background: var(--cream);
    color: var(--bronze);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
}
.culture-card h3{
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--charcoal);
}
.culture-card p{
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

.about-history h3.block-title{ text-align: center; padding-left: 0; }
.about-history h3.block-title::before{ display: none; }
.timeline{
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding-left: 40px;
}
.timeline::before{
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--line);
}
.timeline-item{
    position: relative;
    padding-bottom: 36px;
}
.timeline-item::before{
    content: '';
    position: absolute;
    left: -36px;
    top: 6px;
    width: 18px;
    height: 18px;
    background: var(--bronze);
    border: 3px solid var(--cream-soft);
    border-radius: 50%;
    box-shadow: 0 0 0 2px var(--bronze);
}
.timeline-year{
    font-family: var(--font-en);
    font-size: 22px;
    font-weight: 700;
    color: var(--bronze);
    margin-bottom: 6px;
}
.timeline-content h4{
    font-size: 18px;
    margin-bottom: 6px;
    color: var(--charcoal);
}
.timeline-content p{
    color: var(--gray);
    font-size: 14px;
}

/* ===== Products ===== */
.products{ background: var(--white); }
.product-series{
    margin-bottom: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--line);
}
.product-series:last-child{ border-bottom: none; }
.series-header{
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}
.series-num{
    font-family: var(--font-en);
    font-size: 60px;
    font-weight: 700;
    color: var(--bronze);
    line-height: 1;
    opacity: .9;
}
.series-info{ flex: 1; min-width: 200px; }
.series-info h3{
    font-size: 26px;
    color: var(--charcoal);
    margin-bottom: 6px;
    font-weight: 600;
}
.series-info p{
    color: var(--gray);
    font-size: 14px;
}
.series-tag{
    background: var(--cream);
    color: var(--bronze);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 12px;
    letter-spacing: 2px;
    border: 1px solid var(--line);
}
.series-carousel{
    position: relative;
    margin-bottom: 24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
    background: var(--cream);
}
.series-carousel img{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: carousel-fade 20s infinite;
}
.series-carousel img:nth-child(1){ animation-delay: 0s; }
.series-carousel img:nth-child(2){ animation-delay: 4s; }
.series-carousel img:nth-child(3){ animation-delay: 8s; }
.series-carousel img:nth-child(4){ animation-delay: 12s; }
.series-carousel img:nth-child(5){ animation-delay: 16s; }
@keyframes carousel-fade{
    0%, 15%   { opacity: 1; }
    20%, 100% { opacity: 0; }
}
.series-gallery{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}
.custom-gallery{
    grid-template-columns: repeat(6, 1fr);
}
.gallery-item{
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--cream);
}
.gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.gallery-item:hover img{ transform: scale(1.08); }

.more-products{ margin-top: 80px; }
.more-products h3.block-title{ text-align: center; padding-left: 0; }
.more-products h3.block-title::before{ display: none; }
.category-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.category-card{
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    display: block;
    width: 100%;
    padding: 0;
    border: none;
    background: none;
    font: inherit;
    color: inherit;
    text-align: left;
    cursor: pointer;
}
.category-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.category-card:hover img{ transform: scale(1.06); }
.category-card:focus-visible{
    outline: 3px solid var(--bronze);
    outline-offset: 3px;
}
.card-zoom{
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,.85);
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    opacity: 0;
    transform: scale(.8);
    transition: all .3s;
    z-index: 2;
}
.category-card:hover .card-zoom,
.category-card:focus-visible .card-zoom{
    opacity: 1;
    transform: scale(1);
}
.category-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(20,18,16,.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    color: #fff;
}
.category-overlay h4{
    font-size: 20px;
    margin-bottom: 4px;
}
.category-overlay span{
    font-size: 13px;
    color: var(--bronze-light);
}

/* ===== Category Modal ===== */
.cat-modal{
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.cat-modal.open{
    display: flex;
    animation: modalFade .25s ease;
}
@keyframes modalFade{
    from{ opacity: 0; }
    to{ opacity: 1; }
}
.cat-modal-overlay{
    position: absolute;
    inset: 0;
    background: rgba(20,18,16,.78);
    backdrop-filter: blur(4px);
}
.cat-modal-box{
    position: relative;
    z-index: 2;
    background: var(--cream-soft);
    border-radius: 14px;
    width: min(960px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    padding: 36px 40px 32px;
    box-shadow: var(--shadow-deep);
    animation: modalRise .35s cubic-bezier(.16,.84,.44,1);
}
@keyframes modalRise{
    from{ opacity: 0; transform: translateY(24px) scale(.98); }
    to{ opacity: 1; transform: translateY(0) scale(1); }
}
.cat-modal-close{
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--cream-deep);
    color: var(--charcoal);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
    z-index: 3;
}
.cat-modal-close:hover{
    background: var(--bronze);
    color: #fff;
    transform: rotate(90deg);
}
.cat-modal-head{
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 14px;
    padding-right: 50px;
}
.cat-modal-title{
    font-family: var(--font-en);
    font-size: 30px;
    font-weight: 600;
    color: var(--charcoal);
    letter-spacing: -.5px;
}
body[data-lang="zh"] .cat-modal-title,
body[data-lang="hi"] .cat-modal-title{ font-family: inherit; font-weight: 700; }
.cat-modal-sub{
    font-size: 13px;
    color: var(--bronze);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}
.cat-modal-intro{
    color: var(--gray);
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 22px;
    max-width: 760px;
}
.cat-modal-section-tag{
    display: inline-block;
    color: var(--bronze);
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    margin-bottom: 14px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--bronze);
}
.cat-modal-gallery{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}
.cat-modal-gallery .mg-item{
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    cursor: zoom-in;
    box-shadow: 0 4px 16px rgba(44,44,44,.08);
}
.cat-modal-gallery .mg-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s;
}
.cat-modal-gallery .mg-item:hover img{ transform: scale(1.05); }
.cat-modal-gallery .mg-item::after{
    content: '\f00e';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,.85);
    color: var(--charcoal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0;
    transition: opacity .25s;
}
.cat-modal-gallery .mg-item:hover::after{ opacity: 1; }
.cat-modal-foot{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
    padding-top: 20px;
}
.cat-modal-tip{
    font-size: 12px;
    color: var(--gray-light);
}
.cat-modal-cta{ padding: 12px 26px; font-size: 14px; }

/* ===== Image Lightbox ===== */
.lightbox{
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(20,18,16,.92);
    padding: 30px;
}
.lightbox.open{ display: flex; animation: modalFade .25s ease; }
.lightbox img{
    max-width: 92vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.lightbox-close{
    position: absolute;
    top: 22px;
    right: 22px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.15);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all .25s;
}
.lightbox-close:hover{
    background: var(--bronze);
    transform: rotate(90deg);
}

@media (max-width: 700px){
    .cat-modal-box{ padding: 26px 20px 24px; }
    .cat-modal-title{ font-size: 24px; }
    .cat-modal-gallery{ grid-template-columns: 1fr; }
    .cat-modal-foot{ flex-direction: column; align-items: stretch; }
    .cat-modal-cta{ text-align: center; }
}

/* ===== Services ===== */
.services{
    background: var(--cream-soft);
    background-image: linear-gradient(180deg, var(--cream-soft), var(--cream));
}
.services-flow{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.service-step{
    background: var(--white);
    padding: 36px 22px;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    box-shadow: var(--shadow);
    transition: all .3s;
}
.service-step:hover{
    transform: translateY(-8px);
    box-shadow: var(--shadow-deep);
}
.step-icon{
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--bronze);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.step-num{
    font-family: var(--font-en);
    font-size: 14px;
    color: var(--bronze-light);
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 600;
}
.service-step h3{
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--charcoal);
}
.service-step > p{
    color: var(--gray);
    font-size: 13px;
    margin-bottom: 16px;
    line-height: 1.6;
}
.service-step ul{
    text-align: left;
    border-top: 1px solid var(--line);
    padding-top: 14px;
}
.service-step li{
    font-size: 13px;
    color: var(--charcoal-soft);
    padding: 4px 0 4px 18px;
    position: relative;
}
.service-step li::before{
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bronze);
    font-weight: 700;
}

/* ===== Markets ===== */
.markets{ background: var(--white); }
.market-grid{
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;
}
.market-text h3{
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--charcoal);
}
.market-text p{
    color: var(--charcoal-soft);
    margin-bottom: 16px;
    line-height: 1.8;
}
.market-points{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 24px;
}
.mp{ display: flex; align-items: center; gap: 10px; }
.mp i{
    color: var(--bronze);
    background: var(--cream);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}
.market-map{
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-deep);
}
.market-map img{
    width: 100%;
    height: 380px;
    object-fit: cover;
}
.map-stats{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(20,18,16,.92));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 22px;
    color: #fff;
}
.map-stats div{ text-align: center; }
.map-stats strong{
    display: block;
    font-family: var(--font-en);
    font-size: 28px;
    color: var(--bronze-light);
    line-height: 1;
}
.map-stats span{ font-size: 12px; opacity: .85; }

.market-cases{ margin-bottom: 80px; }
.cases-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.case-card{
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all .3s;
}
.case-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-deep); }
.case-card img{
    width: 100%;
    height: 240px;
    object-fit: cover;
}
.case-body{ padding: 22px; }
.case-tag{
    display: inline-block;
    background: var(--cream);
    color: var(--bronze);
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 30px;
    margin-bottom: 10px;
}
.case-body h4{
    font-size: 17px;
    margin-bottom: 8px;
    color: var(--charcoal);
}
.case-body p{
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

.market-testimonials h3.block-title{ text-align: center; padding-left: 0; }
.market-testimonials h3.block-title::before{ display: none; }
.testimonials-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card{
    background: var(--cream-soft);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    position: relative;
    border-left: 4px solid var(--bronze);
}
.quote-mark{
    font-family: var(--font-en);
    font-size: 80px;
    color: var(--bronze);
    opacity: .15;
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 24px;
}
.testimonial-card p{
    color: var(--charcoal-soft);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 18px;
    position: relative;
}
.testimonial-author strong{
    display: block;
    color: var(--charcoal);
    font-size: 15px;
}
.testimonial-author span{
    font-size: 13px;
    color: var(--gray);
}

/* ===== News ===== */
.news{ background: var(--cream-soft); }
.news-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.news-block h3.block-title{ }
.news-list{
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.news-item{
    background: var(--white);
    padding: 22px 26px;
    border-radius: var(--radius);
    border-left: 3px solid var(--bronze);
    transition: all .25s;
    cursor: pointer;
}
.news-item:hover{
    transform: translateX(6px);
    box-shadow: var(--shadow);
}
.news-date{
    font-family: var(--font-en);
    color: var(--bronze);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 1px;
}
.news-item h4{
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--charcoal);
}
.news-item p{
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

/* ===== Contact ===== */
.contact{
    background: var(--charcoal);
    color: var(--cream);
}
.contact .section-tag{ color: var(--bronze-light); }
.contact .section-title{ color: #fff; }
.contact .section-subtitle{ color: rgba(245,240,232,.7); }
.contact-grid{
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
}
.ci-card{
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 22px;
    padding: 18px 22px;
    background: rgba(255,255,255,.04);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,.08);
    transition: all .3s;
}
.ci-card:hover{ background: rgba(255,255,255,.08); }
.ci-card.ci-india{ border-color: var(--bronze); }
.ci-icon{
    width: 40px;
    height: 40px;
    background: var(--bronze);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.ci-card h4{
    font-size: 15px;
    margin-bottom: 6px;
    color: #fff;
}
.ci-card p{
    font-size: 13px;
    color: rgba(245,240,232,.7);
    margin: 2px 0;
}
.contact-form{
    background: var(--cream-soft);
    padding: 36px;
    border-radius: var(--radius-lg);
    color: var(--charcoal);
}
.form-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}
.form-field{ margin-bottom: 18px; }
.form-field label{
    display: block;
    font-size: 13px;
    color: var(--charcoal-soft);
    margin-bottom: 6px;
    font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea{
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    color: var(--charcoal);
    transition: all .25s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus{
    outline: none;
    border-color: var(--bronze);
    box-shadow: 0 0 0 3px rgba(139,94,60,.12);
}
.form-field textarea{ resize: vertical; min-height: 100px; }
.form-note{
    font-size: 12px;
    color: var(--gray);
    text-align: center;
    margin-top: 12px;
}

/* WhatsApp button & divider */
.btn-wa{
    background: #25D366;
    color: #fff;
    border-color: #25D366;
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 2px solid #25D366;
}
.btn-wa:hover{
    background: #1da851;
    border-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,211,102,.25);
}
.btn-wa i{ font-size: 20px; }
.form-divider{
    text-align: center;
    margin: 8px 0 22px;
    position: relative;
    color: var(--gray);
    font-size: 13px;
}
.form-divider::before,
.form-divider::after{
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: var(--line);
}
.form-divider::before{ left: 0; }
.form-divider::after{ right: 0; }
.form-divider span{
    background: var(--cream-soft);
    padding: 0 14px;
    position: relative;
    z-index: 1;
}

/* ===== Footer ===== */
.footer{
    background: #1a1a1a;
    color: var(--cream);
    padding: 60px 0 24px;
}
.footer-top{
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand{ }
.footer-logo{
    height: 64px;
    margin-bottom: 0;
    background: transparent;
    padding: 0;
    border-radius: 0;
}

/* footer-brand h3/p no longer present in HTML but keep rules safe */
.footer-brand h3{
    font-family: var(--font-en);
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.footer-brand p{
    font-size: 13px;
    color: rgba(245,240,232,.6);
    line-height: 1.7;
}
.footer-col h4{
    color: var(--bronze-light);
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 18px;
    text-transform: uppercase;
}
.footer-col ul li{
    margin-bottom: 10px;
}
.footer-col ul li a{
    color: rgba(245,240,232,.7);
    font-size: 13px;
    transition: all .2s;
}
.footer-col ul li a:hover{
    color: var(--bronze-light);
    padding-left: 4px;
}
.footer-contact li{
    display: flex;
    gap: 8px;
    align-items: flex-start;
    color: rgba(245,240,232,.7);
    font-size: 13px;
    margin-bottom: 10px;
}
.footer-contact i{ color: var(--bronze-light); margin-top: 4px; }
.social{
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.social a{
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,.06);
    color: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s;
}
.social a:hover{
    background: var(--bronze);
    color: #fff;
    transform: translateY(-3px);
}
.footer-bottom{
    padding-top: 24px;
    text-align: center;
    font-size: 12px;
    color: rgba(245,240,232,.5);
}
.footer-bottom p{ margin: 2px 0; }

/* ===== Back to Top ===== */
.back-to-top{
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    background: var(--bronze);
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all .3s;
    z-index: 50;
    box-shadow: var(--shadow);
}
.back-to-top.show{
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover{ background: var(--bronze-dark); transform: translateY(-3px); }

/* ===== Responsive ===== */
@media (max-width: 1100px){
    .nav-list{ gap: 0; }
    .nav-link{ padding: 12px 10px; font-size: 14px; }
    .services-flow{ grid-template-columns: repeat(2, 1fr); }
    .series-gallery{ grid-template-columns: repeat(3, 1fr); }
    .custom-gallery{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px){
    .container{ padding: 0 20px; }
    .topbar{ display: none; }
    .nav{
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        padding: 80px 24px 24px;
        overflow-y: auto;
        transition: right .35s;
        box-shadow: -10px 0 30px rgba(0,0,0,.15);
        z-index: 99;
    }
    .nav.open{ right: 0; }
    .nav-list{
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    .nav-item{ border-bottom: 1px solid var(--line); }
    .nav-link{ padding: 14px 0; }
    .dropdown{
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        padding: 0 0 8px 18px;
        max-height: 0;
        overflow: hidden;
        transition: max-height .35s;
        pointer-events: auto;
    }
    .nav-item.has-dropdown.open .dropdown{ max-height: 400px; }
    .menu-toggle{ display: flex; z-index: 100; }
    .hero{ height: auto; padding: 100px 0 60px; }
    .hero-content{ padding-top: 0; }
    .hero-stats{ grid-template-columns: repeat(2, 1fr); }
    .section{ padding: 70px 0; }
    .about-grid{ grid-template-columns: 1fr; gap: 40px; }
    .about-image img{ height: 360px; }
    .about-features{ grid-template-columns: 1fr; }
    .culture-grid{ grid-template-columns: 1fr; }
    .services-flow{ grid-template-columns: 1fr; }
    .market-grid{ grid-template-columns: 1fr; }
    .market-points{ grid-template-columns: 1fr; }
    .cases-grid{ grid-template-columns: 1fr; }
    .testimonials-grid{ grid-template-columns: 1fr; }
    .news-grid{ grid-template-columns: 1fr; }
    .contact-grid{ grid-template-columns: 1fr; }
    .form-row{ grid-template-columns: 1fr; }
    .category-grid{ grid-template-columns: repeat(2, 1fr); }
    .footer-top{ grid-template-columns: 1fr 1fr; }
    .series-gallery{ grid-template-columns: repeat(2, 1fr); }
    .custom-gallery{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px){
    .hero-actions .btn{ flex: 1; min-width: 140px; }
    .category-grid{ grid-template-columns: 1fr; }
    .footer-top{ grid-template-columns: 1fr; }
    .stat-num{ font-size: 28px; }
}

/* ===== Reveal animation ===== */
.reveal{
    opacity: 0;
    transform: translateY(30px);
    transition: all .8s cubic-bezier(.16,.84,.44,1);
}
.reveal.in{ opacity: 1; transform: translateY(0); }
