
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Zen Maru Gothic',sans-serif;
    background:#ffffff;
}

/* HEADER */

.header{
    position:fixed;
    top:20px;
    left:0;
    width:100%;
    z-index:9999;
}

.header-inner{
    width:min(1400px,94%);
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* LOGO */

.brand{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo{
    width:95px;
    height:95px;
    object-fit:contain;
}

.brand-text{
    display:flex;
    flex-direction:column;
}

.brand-text h2{
    color:#000000;
    font-size:26px;
    font-weight:900;
    line-height:1;
}

.brand-text span{
    color:#000000;
    font-size:11px;
    letter-spacing:3px;
    margin-top:5px;
}

/* NAVBAR */

.navbar{
    background:#222;
    border-radius:6px;
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.nav-links{
    display:flex;
    align-items:center;
    list-style:none;
}

.nav-links li{
    position:relative;
}

.nav-links li a{
    color:#fff;
    text-decoration:none;
    padding:22px 18px;
    display:flex;
    align-items:center;
    font-size:14px;
    font-weight:700;
    transition:.3s;
}

.nav-links li a:hover{
    color:#f3b14f;
}

.nav-links > li:first-child > a{
    background:#333;
}

/* MEGA MENU */

.mega-menu{
    position:absolute;
    top:100%;
    left:0;

    width:720px;
    background:#fff;

    display:flex;
    gap:40px;

    padding:25px;

    border-radius:0 0 6px 6px;

    box-shadow:0 12px 30px rgba(0,0,0,.15);

    opacity:0;
    visibility:hidden;
    transform:translateY(15px);

    transition:.35s;
}

.mega-item:hover .mega-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.small-menu{
    width:280px;
}

.mega-links{
    display:flex;
    flex-direction:column;
    min-width:250px;
}

.mega-links a{
    color:#333 !important;
    padding:8px 0 !important;
    font-size:15px !important;
}

.mega-links a:hover{
    color:#d78c17 !important;
}

.mega-image img{
    width:290px;
    height:230px;
    object-fit:cover;
    border-radius:5px;
}

/* SEARCH SVG */

.search-icon svg{
    width:20px;
    height:20px;
}

/* HAMBURGER — desktop pe hidden */

.menu-toggle{
    display:none;
    background:none;
    border:none;
    cursor:pointer;
    padding:4px;
    flex-direction:column;
    gap:6px;
}

.menu-toggle span{
    display:block;
    width:28px;
    height:3px;
    background:#000000;
    transition:.35s;
    transform-origin:center;
}

.menu-toggle.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

/* MOBILE SEARCH — desktop pe hidden */

.mobile-search-btn{
    display:none;
    background:none;
    border:none;
    cursor:pointer;
    padding:6px;
    color:#000000;
    align-items:center;
}

.mobile-search-btn svg{
    width:22px;
    height:22px;
    display:block;
}

/* MOBILE CONTROLS WRAPPER — desktop pe hidden */

.mobile-controls{
    display:none;
    align-items:center;
    gap:6px;
}

/* HERO */

.hero{
    position:relative;
    height:100vh;
    overflow:hidden;
}

/* Each slide */
.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    z-index:0;
    transition:opacity 1s ease;
}

.hero-slide.active{
    opacity:1;
    z-index:1;
}

/* Slide image with zoom-out keyframe */
.hero-slide-img{
    position:absolute;
    inset:0;
    background-size:130%; /* start zoomed in */
    background-position:center;
    background-repeat:no-repeat;
    animation:none;
}

.hero-slide.active .hero-slide-img{
    animation:zoomOut 5.5s ease forwards;
}

@keyframes zoomOut{
    0%  { background-size:130%; }
    100%{ background-size:100%; }
}

/* Dark overlay on each slide */
.hero-slide-img::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.25) 60%,
        rgba(0,0,0,.15) 100%
    );
}

/* TEXT — bottom left */
.hero-content{
    position:absolute;
    bottom:60px;
    left:60px;
    z-index:10;
    max-width:700px;
}

.hero-content h1{
    color:#fff;
    font-size:clamp(32px,5vw,70px);
    font-weight:900;
    line-height:1.1;
    text-transform:uppercase;
    letter-spacing:1px;
    text-shadow:0 2px 20px rgba(0,0,0,.5);
}

.hero-content p{
    color:rgba(255,255,255,.85);
    margin-top:14px;
    font-size:clamp(13px,1.4vw,18px);
    letter-spacing:2px;
    text-transform:uppercase;
}

/* Slide dots */
.hero-dots{
    position:absolute;
    bottom:28px;
    left:60px;
    z-index:10;
    display:flex;
    gap:10px;
}

.hero-dot{
    width:28px;
    height:3px;
    background:rgba(255,255,255,.35);
    border-radius:2px;
    cursor:pointer;
    transition:background .3s;
}

.hero-dot.active{
    background:#f3b14f;
    width:44px;
}

/* Mobile hero */
@media(max-width:768px){
    .hero-content{
        bottom:80px;
        left:24px;
        right:24px;
    }
    .hero-dots{
        left:24px;
        bottom:50px;
    }
}

@media (max-width: 768px) {
    .desktop-slide { display: none !important; }
}
@media (min-width: 769px) {
    .mobile-slide { display: none !important; }
}
/* ============================================
   MOBILE — max 991px
   ============================================ */

@media(max-width:991px){

    /* Header bar */
    .header{
        top:0;
        padding:10px 0;
        /* background:rgba(0,0,0,.9); */
    }

    /* Brand text hide — sirf logo */
    .brand-text{
        display:none;
    }

    .logo{
        width:70px;
        height:70px;
    }

    /* Right side controls dikhao */
    .mobile-controls{
        display:flex;
    }
    .mobile-search-btn{
        display:flex;
    }
    .menu-toggle{
        display:flex;
    }

    /* Desktop navbar hide karo — 
       mobile pe #mobile-nav use hoga */
    .navbar{
        display:none;
    }

}

/* ============================================
   MOBILE NAV PANEL — completely separate element
   body ka direct child, koi nesting nahi
   ============================================ */

#mobile-nav{
    display:none; /* JS se control hoga */
    position:fixed;
    top:70px;
    left:3%;
    right:3%;
    z-index:9998;

    background:#222;
    border-radius:8px;
    box-shadow:0 8px 30px rgba(0,0,0,.4);

    /* Scrollable agar content zyada ho */
    max-height:calc(100vh - 90px);
    overflow-y:auto;
}

#mobile-nav.open{
    display:block;
}

#mobile-nav ul{
    list-style:none;
    padding:0;
    margin:0;
}

#mobile-nav ul li{
    border-bottom:1px solid #333;
}

#mobile-nav ul li:last-child{
    border-bottom:none;
}

/* Nav link */
#mobile-nav ul li > a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:#fff;
    text-decoration:none;
    padding:16px 20px;
    font-size:14px;
    font-weight:700;
    transition:color .2s;
}

#mobile-nav ul li > a:hover{
    color:#f3b14f;
}

/* Chevron */
#mobile-nav .has-mega > a::after{
    content:'▾';
    font-size:14px;
    color:#888;
    transition:transform .3s;
    display:inline-block;
}

#mobile-nav .has-mega.open > a::after{
    transform:rotate(180deg);
    color:#f3b14f;
}

/* Mega dropdown inside mobile nav */
#mobile-nav .mob-mega{
    display:none;
    background:#1a1a1a;
    border-top:1px solid #333;
}

#mobile-nav .has-mega.open .mob-mega{
    display:block;
}

#mobile-nav .mob-mega a{
    display:block;
    color:#bbb;
    text-decoration:none;
    padding:13px 20px 13px 32px;
    font-size:14px;
    font-weight:500;
    border-bottom:1px solid #252525;
    transition:color .2s, background .2s;
}

#mobile-nav .mob-mega a:last-child{
    border-bottom:none;
}

#mobile-nav .mob-mega a:hover{
    color:#f3b14f;
    background:#202020;
}

.mob-mega {
  max-height: 0;
  overflow: hidden;
  pointer-events: none;   /* ✅ Yahi main fix hai */
  transition: max-height 0.3s ease;
}

.has-mega.open .mob-mega {
  max-height: 500px;
  pointer-events: all;    /* ✅ Open hone par enable */
}

@media(max-width:480px){
    .logo{width:74px;height:74px;}
    #mobile-nav{top:100px;}
}



/* section 2 .......................................................................... */
/* SECTION 2 */

.section2-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 40px 0;
}

.section2-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 20px 30px;
    position: relative;
}

.section2-item:not(:last-child) {
    border-right: 1px solid #e5e5e5;
}

.section2-ghost {
    position: absolute;
    font-size: 130px;
    font-weight: 900;
    color: #ebebeb;
    line-height: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.section2-num {
    font-size: 52px;
    font-weight: 900;
    color: #cc2027;
    line-height: 1;
    font-family: 'Zen Maru Gothic', sans-serif;
    position: relative;
    z-index: 1;
}

.section2-label {
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.section2-label span {
    font-size: 11px;
    letter-spacing: 2px;
    color: #888;
    text-transform: uppercase;
    font-weight: 500;
}

.section2-label strong {
    font-size: 16px;
    font-weight: 700;
    color: #1a2a5e;
    font-family: 'Zen Maru Gothic', sans-serif;
}

.section2-divider {
    width: 100%;
    height: 3px;
    background: #cc2027;
}

/* SECTION 2 — MOBILE */
@media (max-width: 600px) {
    .section2-item {
        border-right: none !important;
        border-bottom: 1px solid #e5e5e5;
        width: 100%;
    }
    .section2-ghost {
        font-size: 90px;
    }
    .section2-wrap {
        flex-direction: column;
    }
}

/* section 3 .......................................................................... */
/* SECTION 3 — VARIABLES */
.section3 {
    --brand: #7a5c3a;
    --brand-dark: #4a3520;
    --brand-light: #c9a876;
    /* --bg-section: #12100e; */
    --card-bg: #1e1a14;
    --card-border: #2e2820;
    --text-main: #f0e8d8;
    --text-muted: #8a7a68;

    display: flex;
    height: 100vh;       /* ya fixed height e.g. 680px */
    background: var(--bg-section);
    font-family: 'Zen Maru Gothic', sans-serif;
    overflow: hidden;
}

/* SIDEBAR — fixed left */
.s3-sidebar {
    width: 68px;
    min-width: 68px;
    background: var(--brand-dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-right: 1px solid var(--brand);
    position: sticky;   /* stays put while right side scrolls */
    top: 0;
    align-self: flex-start;
    height: 100%;
}

.s3-talwar {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 44px;
    font-weight: 900;
    color: var(--brand-light);
    letter-spacing: 10px;
    text-transform: uppercase;
    line-height: 1;
}

.s3-sidebar-line {
    width: 1px;
    height: 32px;
    background: var(--brand);
    opacity: 0.4;
    margin: 16px 0;
}

.s3-sidebar-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-light);
    opacity: 0.6;
}

/* SCROLLABLE RIGHT SIDE */
.s3-content {
    flex: 1;
    overflow-y: auto;
    padding: 36px 28px;
    scrollbar-width: thin;
    scrollbar-color: var(--brand) transparent;
}

.s3-content::-webkit-scrollbar { width: 4px; }
.s3-content::-webkit-scrollbar-track { background: transparent; }
.s3-content::-webkit-scrollbar-thumb { background: var(--brand); border-radius: 2px; }

/* HEADER ROW */
.s3-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 28px;
}

.s3-header-label {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--brand-light);
    opacity: 0.7;
}

.s3-header-line {
    flex: 1;
    height: 1px;
    background: var(--brand);
    opacity: 0.25;
}

/* 3-COLUMN GRID */
.s3-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

/* CARD */
.s3-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.25s;
}

.s3-card:hover {
    border-color: var(--brand);
}

.s3-card-top {
    position: relative;
    aspect-ratio: 16 / 10;
    background: #1a1510;
    overflow: hidden;
}

.s3-card-top img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.s3-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--brand-dark);
    color: var(--brand-light);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    border: 1px solid var(--brand);
}

.s3-card-body {
    padding: 14px 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.s3-card-title {
    font-size: 12px;
    font-weight: 900;
    color: var(--text-main);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.s3-divider {
    height: 1px;
    background: var(--card-border);
    margin-bottom: 10px;
}

.s3-specs {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--card-border);
    border-radius: 7px;
    overflow: hidden;
}

.s3-spec-row {
    display: flex;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--card-border);
}

.s3-spec-row:last-child {
    border-bottom: none;
}

.s3-spec-row:nth-child(even) {
    background: rgba(122, 92, 58, 0.04);
}
.s3-spec-key {
    font-size: 9.5px;
    color: var(--text-muted);
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-weight: 700;
    padding: 6px 9px;
    width: 42%;
    min-width: 42%;
    border-right: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    background: rgba(122, 92, 58, 0.03);
}

.s3-spec-val {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--brand-light);
    padding: 6px 9px;
    flex: 1;
    display: flex;
    align-items: center;
    line-height: 1.4;
}

.s3-card-footer {
    margin-top: 14px;
    padding-top: 10px;
    border-top: 1px solid var(--card-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.s3-enquire {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-light);
    opacity: 0.7;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
}

.s3-arrow {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 1px solid var(--brand);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-light);
    font-size: 12px;
}

/* MOBILE */
@media (max-width: 640px) {
    .section3 { height: auto; flex-direction: column; }
    .s3-sidebar { width: 100%; min-width: unset; height: 52px; flex-direction: row; border-right: none; border-bottom: 1px solid var(--brand); position: relative; }
    .s3-talwar { writing-mode: horizontal-tb; transform: none; font-size: 28px; letter-spacing: 8px; }
    .s3-sidebar-line { width: 32px; height: 1px; margin: 0 12px; }
    .s3-grid { grid-template-columns: repeat(1, 1fr); gap: 12px; }
}

/* Background white */
.section3 {
    --bg: #ffffff;
    --card-bg: #ffffff;
    --card-border: #ede8e0;
    --text-main: #1a1208;
    --text-muted: #9a8a78;
}

/* Card image area light cream */
.s3-card-top {
    background: #faf7f3;
}

/* Scrollbar completely hidden */
.s3-content {
    overflow-y: scroll;
    scrollbar-width: none;          /* Firefox */
    -ms-overflow-style: none;       /* IE */
}
.s3-content::-webkit-scrollbar {
    display: none;                  /* Chrome/Safari */
}

/* section 4 .......................................................................... */
/* SECTION 4 — ABOUT */

.section4 {
    background: #fff;
    font-family: 'Zen Maru Gothic', sans-serif;
    padding: 72px 0;
    overflow: hidden;
}

.s4-inner {
    width: min(1200px, 92%);
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* LEFT */
.s4-left { display: flex; flex-direction: column; gap: 28px; }

.s4-eyebrow { display: flex; align-items: center; gap: 12px; }
.s4-eyebrow-line { width: 32px; height: 2px; background: #c9a876; }
.s4-eyebrow span { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: #7a5c3a; font-weight: 700; }

.s4-heading { font-size: clamp(28px, 3.5vw, 46px); font-weight: 900; color: #1a1208; line-height: 1.15; letter-spacing: -0.5px; }
.s4-heading em { font-style: normal; color: #7a5c3a; }

.s4-tagline { font-size: 13px; letter-spacing: 3px; text-transform: uppercase; color: #c9a876; font-weight: 700; border-left: 3px solid #c9a876; padding-left: 12px; }

.s4-body { font-size: 15px; color: #9a8a78; line-height: 1.8; }
.s4-body strong { color: #1a1208; font-weight: 700; }

.s4-btn {
    display: inline-flex; align-items: center; gap: 10px;
    background: #4a3520; color: #c9a876;
    font-family: 'Zen Maru Gothic', sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    padding: 14px 28px; border-radius: 6px; border: none;
    cursor: pointer; text-decoration: none; width: fit-content;
    transition: background .2s;
}
.s4-btn:hover { background: #7a5c3a; }

/* RIGHT */
.s4-right { display: flex; flex-direction: column; gap: 20px; }

.s4-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.s4-stat { background: #faf7f3; border: 1px solid #ede8e0; border-radius: 12px; padding: 22px 20px; }
.s4-stat-num { font-size: 36px; font-weight: 900; color: #4a3520; line-height: 1; }
.s4-stat-num span { font-size: 20px; color: #c9a876; }
.s4-stat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #9a8a78; font-weight: 700; margin-top: 6px; }

.s4-highlights { display: flex; flex-direction: column; }
.s4-hl { display: flex; align-items: flex-start; gap: 14px; padding: 16px 0; border-bottom: 1px solid #ede8e0; }
.s4-hl:first-child { border-top: 1px solid #ede8e0; }
.s4-hl-icon { width: 36px; height: 36px; background: #faf7f3; border: 1px solid #ede8e0; border-radius: 8px; display: flex; align-items: center; justify-content: flex-start; flex-shrink: 0; justify-content: center; }
.s4-hl-icon i { font-size: 16px; color: #7a5c3a; }
.s4-hl-title { font-size: 13px; font-weight: 700; color: #1a1208; margin-bottom: 2px; }
.s4-hl-desc { font-size: 12px; color: #9a8a78; line-height: 1.6; }

.s4-quote { background: #4a3520; border-radius: 12px; padding: 24px 22px; position: relative; overflow: hidden; }
.s4-quote::before { content: '\201C'; position: absolute; top: -10px; right: 16px; font-size: 100px; color: #c9a876; opacity: 0.15; font-family: serif; line-height: 1; }
.s4-quote p { font-size: 13px; color: #c9a876; line-height: 1.75; font-style: italic; position: relative; z-index: 1; }
.s4-quote-author { margin-top: 12px; font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: #c9a876; opacity: 0.6; font-weight: 700; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .section4 { padding: 48px 0; }
    .s4-inner { grid-template-columns: 1fr; gap: 40px; }
    .s4-heading { font-size: clamp(26px, 7vw, 38px); }
}
@media (max-width: 480px) {
    .s4-stat-num { font-size: 28px; }
}

/* section 5 .......................................................................... */
/* SECTION 5 */
.section5 {
    background: #fff;
    font-family: 'Zen Maru Gothic', sans-serif;
    padding: 80px 0;
}

.s5-inner {
    width: min(1200px, 92%);
    margin: auto;
}

.s5-top {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 56px;
}

.s5-top-line {
    flex: 1;
    height: 1px;
    background: #ede8e0;
}

.s5-top-badge {
    background: #4a3520;
    color: #c9a876;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 6px;
    white-space: nowrap;
}

.s5-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}
/* GRID — 2px gap creates the divider lines */
.s5-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #ede8e0;
    border-radius: 16px;
    overflow: hidden;
}

.s5-item {
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 42px 20px;
    transition: background .25s;
    cursor: default;
}

.s5-item:hover { background: #faf7f3; }

.s5-icon-wrap {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    background: #faf7f3;
    border: 1.5px solid #ede8e0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .25s, background .25s;
}

.s5-item:hover .s5-icon-wrap {
    background: #f2ece0;
    border-color: #c9a876;
}

.s5-icon-wrap i {
    font-size: 38px;
    color: #4a3520;
}

.s5-item:hover .s5-icon-wrap i { color: #7a5c3a; }

.s5-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #1a1208;
    text-align: center;
    line-height: 1.4;
}

.s5-bottom {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.s5-bottom-line { width: 60px; height: 1px; background: #ede8e0; }

.s5-bottom-text {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #c9a876;
    font-weight: 700;
}

@media(max-width:640px){
  .section5 { padding: 40px 0; }
  
  /* 2 columns */
  .s5-grid { 
    grid-template-columns: repeat(2, 1fr); 
    border-radius: 12px; 
  }
  
  /* 9th item (odd last child) full width — centered */
  .s5-item:last-child:nth-child(odd) { 
    grid-column: 1 / -1; 
  }
  
  .s5-top { gap: 12px; margin-bottom: 32px; }
  .s5-top-badge { font-size: 9px; letter-spacing: 2px; padding: 8px 14px; }
  .s5-item { padding: 24px 10px; gap: 10px; }
  .s5-icon-wrap { width: 60px; height: 60px; border-radius: 14px; }
  .s5-icon-wrap i { font-size: 26px; }
  .s5-label { font-size: 9px; letter-spacing: 1.5px; }
  .s5-bottom { margin-top: 32px; }
}

@media(max-width:380px){
  .s5-item { padding: 18px 8px; gap: 8px; }
  .s5-icon-wrap { width: 50px; height: 50px; border-radius: 12px; }
  .s5-icon-wrap i { font-size: 22px; }
  .s5-label { font-size: 8px; letter-spacing: 1px; }
}


/* section 6 .......................................................................... */
.s6{background:#faf7f3;font-family:'Zen Maru Gothic',sans-serif;padding:80px 0;}
.s6-inner{width:min(1200px,92%);margin:auto;}
.s6-head{text-align:center;margin-bottom:52px;display:flex;flex-direction:column;align-items:center;gap:12px;}
.s6-eyebrow{display:flex;align-items:center;gap:12px;}
.s6-eyebrow-line{width:32px;height:2px;background:#c9a876;}
.s6-eyebrow span{font-size:10px;letter-spacing:4px;text-transform:uppercase;color:#7a5c3a;font-weight:700;}
.s6-title{font-size:clamp(26px,3vw,40px);font-weight:900;color:#1a1208;line-height:1.15;}
.s6-title em{font-style:normal;color:#7a5c3a;}
.s6-sub{font-size:12px;letter-spacing:2px;text-transform:uppercase;color:#c9a876;font-weight:700;}
.s6-google-badge{display:inline-flex;align-items:center;gap:8px;background:#fff;border:1px solid #ede8e0;border-radius:8px;padding:8px 16px;margin-top:4px;}
.s6-google-badge svg{width:18px;height:18px;}
.s6-google-badge span{font-size:11px;font-weight:700;color:#4a3520;letter-spacing:1px;}
.s6-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.s6-card{background:#fff;border:1px solid #ede8e0;border-radius:14px;padding:24px 22px 20px;display:flex;flex-direction:column;gap:14px;transition:border-color .2s;}
.s6-card:hover{border-color:#c9a876;}
.s6-card-top{display:flex;align-items:center;justify-content:space-between;}
.s6-stars{display:flex;gap:3px;}
.s6-stars i{font-size:15px;color:#f5a623;}
.s6-google-g{width:20px;height:20px;border-radius:50%;background:#fff;border:1px solid #ede8e0;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.s6-google-g svg{width:12px;height:12px;}
.s6-quote-text{font-size:13px;color:#5a4a38;line-height:1.75;flex:1;}
.s6-quote-text::before{content:'\201C';color:#c9a876;font-size:22px;font-weight:900;line-height:0;vertical-align:-6px;margin-right:2px;}
.s6-quote-text::after{content:'\201D';color:#c9a876;font-size:22px;font-weight:900;line-height:0;vertical-align:-6px;margin-left:2px;}
.s6-author{display:flex;align-items:center;gap:10px;padding-top:12px;border-top:1px solid #ede8e0;}
.s6-avatar{width:36px;height:36px;border-radius:50%;background:#f2ece0;border:1.5px solid #c9a876;display:flex;align-items:center;justify-content:center;font-size:13px;font-weight:900;color:#4a3520;flex-shrink:0;text-transform:uppercase;}
.s6-author-info{}
.s6-author-name{font-size:12px;font-weight:700;color:#1a1208;}
.s6-author-tag{font-size:10px;color:#9a8a78;letter-spacing:1px;}
.s6-bottom{margin-top:48px;display:flex;align-items:center;justify-content:center;gap:20px;}
.s6-bottom-stat{text-align:center;}
.s6-bottom-stat-num{font-size:28px;font-weight:900;color:#4a3520;}
.s6-bottom-stat-num span{font-size:16px;color:#c9a876;}
.s6-bottom-stat-label{font-size:9px;letter-spacing:2.5px;text-transform:uppercase;color:#9a8a78;font-weight:700;margin-top:2px;}
.s6-bottom-sep{width:1px;height:40px;background:#ede8e0;}
@media(max-width:768px){
  .s6-grid{grid-template-columns:repeat(2,1fr);}
}
@media(max-width:480px){
  .s6{padding:52px 0;}
  .s6-grid{grid-template-columns:1fr;gap:14px;}
  .s6-title{font-size:26px;}
}


/* FOOTER STYLES */
.site-footer {
  --brand: #ffffff;
  --brand-dark: #4a3520;
  --brand-mid: #ffffff;
  --bg: #302110c0;
  --bg2: #ffffff;
  --bg3: #261d11;
  --border: #ffffff;
  --text: #ffffff;
  --muted: #ffffff;
  font-family: 'Zen Maru Gothic', sans-serif;
  background: var(--bg);
  color: var(--text);
  width: 100%;
  overflow: hidden;
}
 
.footer-top-bar {
  height: 3px;
  background: linear-gradient(90deg, #cc2027 0%, #4a3520 40%, #c9a876 70%, #cc2027 100%);
}
 
.footer-inner {
  width: min(1280px, 94%);
  margin: auto;
}
 
/* MAIN GRID */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.3fr;
  gap: 52px;
  padding: 64px 0 48px;
  border-bottom: 1px solid var(--border);
}
 
/* BRAND COL */
.f-logo-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
 
.f-logo-box {
  width: 76px;
  height: 76px;
  background: white;
  border-radius: 10px;
  border: 1px solid var(--brand-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
 
.f-logo-box img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}
 
.f-brand-name {
  font-size: 18px;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: 1px;
  line-height: 1;
}
 
.f-brand-sub {
  font-size: 9px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
 
.f-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 22px;
}
 
.f-contact-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
.f-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}
 
.f-contact-item i {
  font-size: 15px;
  color: var(--brand);
  flex-shrink: 0;
  margin-top: 1px;
}
 
.f-contact-item span {
  color: #ffffff;
  line-height: 1.55;
}
 
/* NAV COLS */
.f-col-title {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--brand);
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
 
.f-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
 
.f-link {
  color: var(--muted);
  font-size: 13px;
  text-decoration: none;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s, gap 0.2s;
}
 
.f-link i {
  font-size: 13px;
  color: var(--brand-mid);
  transition: color 0.2s;
}
 
.f-link:hover {
  color: var(--brand);
  gap: 12px;
}
 
.f-link:hover i {
  color: var(--brand);
}
 
/* NEWSLETTER */
.f-nl-text {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
 
.f-nl-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  /* border: none; */
}
 
.f-nl-input {
  background: var(--bg3);
  /* border: 1px solid var(--border); */
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--text);
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
 
.f-nl-input::placeholder {
  color: var(--muted);
}
 
.f-nl-input:focus {
  border-color: var(--brand-mid);
}
 
.f-nl-btn {
  background: var(--brand-dark);
  color: var(--brand);
  /* border: 1px solid var(--brand-mid); */
  border-radius: 8px;
  padding: 12px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
}
 

 
/* SOCIAL ICONS WITH TOOLTIPS */
.f-social-row {
  display: flex;
  gap: 8px;
  margin-top: 18px;
}
 
.f-social-wrap {
  position: relative;
}
 
.f-social {
  width: 38px;
  height: 38px;
  background: var(--bg3);
  /* border: 1px solid var(--border); */
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  cursor: pointer;
}
 
.f-social i {
  font-size: 17px;
}
 
.f-social:hover {
  background: var(--brand-dark);
  border-color: var(--brand-mid);
  color: var(--brand);
  transform: translateY(-3px);
}
 
.f-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(0.85);
  background: var(--brand-dark);
  border: 1px solid var(--brand-mid);
  color: var(--brand);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  z-index: 100;
}
 
.f-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--brand-mid);
}
 
.f-social-wrap:hover .f-tooltip {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}
 
/* BOTTOM BAR */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  gap: 16px;
  flex-wrap: wrap;
}
 
.f-copy {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.5px;
}
 
.f-copy span {
  color: var(--brand);
}
 
.f-bottom-links {
  display: flex;
  gap: 20px;
}
 
.f-bottom-link {
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
 
.f-bottom-link:hover {
  color: var(--brand);
}
 
.f-made {
  font-size: 11px;
  color: var(--muted);
}
 
.f-made span {
  color: var(--brand-mid);
}
 
/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
 
  .f-brand {
    grid-column: 1 / -1;
  }
}
 
@media (max-width: 540px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 44px 0 36px;
  }
 
  .f-brand {
    grid-column: auto;
  }
 
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
 
  .f-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
 
  .f-social-row {
    justify-content: center;
  }
 
  .f-logo-row {
    justify-content: center;
  }
 
  .f-brand-name,
  .f-brand-sub {
    text-align: center;
  }
 
  .f-desc {
    text-align: center;
  }
 
  .f-contact-row {
    align-items: center;
  }
 
  .f-contact-item {
    justify-content: center;
  }
 
  .f-col-title {
    text-align: center;
  }
 
  .f-links {
    align-items: center;
  }
 
  .f-nl-text {
    text-align: center;
  }
}


/* Sticky Button */
.enq-btn{
  position: fixed;
  right: -40px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: linear-gradient(90deg, #0a3dff, #00b7ff);
  color: #fff;
  border: none;
  padding: 12px 26px;
  font-weight: 900;
  letter-spacing: 0.5px;
  border-radius: 12px 12px 0 0;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 18px 40px rgba(10,61,255,0.35);
}

/* Panel */
.enq-panel{
  position: fixed;
  top: 0;
  right: -420px;
  width: 380px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -20px 0 60px rgba(0,0,0,0.18);
  transition: 0.45s ease;
  z-index: 9999;
  display: flex;
  flex-direction: column;
}

/* Open State */
.enq-panel.active{
  right: 0;
}

/* Header */
.enq-header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.enq-header img{
  height: 80px;
  object-fit: contain;
}

.enq-close{
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #0a3dff;
}

/* Form */
.enq-form{
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.enq-form h3{
  margin-bottom: 8px;
  font-size: 22px;
  font-weight: 900;
  color: #07112a;
}

.enq-form input,
.enq-form select,
.enq-form textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.14);
  font-weight: 600;
  outline: none;
}

.enq-form textarea{
  resize: none;
  height: 90px;
}

.enq-form input:focus,
.enq-form select:focus,
.enq-form textarea:focus{
  border-color: #0a3dff;
}

/* Submit */
.enq-form button{
  margin-top: 10px;
  padding: 14px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(90deg, #0a3dff, #00b7ff);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(10,61,255,0.28);
}

.enq-form button:hover{
  transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 600px){
  .enq-panel{
    width: 100%;
  }
  .enq-btn{
    right: -25px;
  }
}

/* Sticky WhatsApp Icon */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 22px;
  z-index: 9999;
  cursor: pointer;
  display: inline-block;
  animation: waFloat 2.2s ease-in-out infinite;
}

.wa-float img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(0, 255, 0, 0.5));
  transition: transform 0.3s ease;
}

/* Hover effect */
.wa-float:hover img {
  transform: scale(1.18) rotate(3deg);
  filter: drop-shadow(0 0 12px rgba(0, 255, 0, 0.7));
}

/* ////////////////////////////////////////// translator ////////////////////////////////////////////// */
.site-translate{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap: 10px;
}

/* translate widget styling */
#google_translate_element{
  display:flex;
  align-items:center;
}

.goog-te-gadget{
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif !important;
  font-weight: 800 !important;
  color: transparent !important; /* Google ka extra text hide */
}

.goog-te-gadget span{ display:none !important; } /* "Select Language" text hide */
.goog-te-gadget a{ display:none !important; }    /* powered by link hide (optional) */

.goog-te-combo{
  padding: 8px 12px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(255,255,255,0.35) !important;
  background: rgba(255,255,255,0.14) !important;
  color: #fff !important;
  outline: none !important;
  font-weight: 850 !important;
}

/* If your header bg is light, set combo text dark */



/* =============================================
   BOTTOM NAV (mobile)
============================================= */
.bottom-nav{
  display:none;
  position:fixed;
  bottom:0;left:0;right:0;
  height:var(--nav-h-mob);
  background:#fff;
  border-top:1px solid var(--border);
  z-index:900;
  box-shadow:0 -4px 24px rgba(0,0,0,0.07);
}
.bottom-nav__inner{
  display:flex;
  align-items:stretch;
  height:100%;
}
.bnav-item{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;
  text-decoration:none;
  color:var(--text3);
  font-size:10px;
  font-weight:700;
  letter-spacing:0.06em;
  transition:color 0.2s;
  padding:6px 4px 8px;
  border:none;
  background:none;
  cursor:pointer;
  position:relative;
}
.bnav-item.active{color:var(--accent-dark);}
.bnav-item.active::before{
  content:'';
  position:absolute;
  top:0;left:50%;transform:translateX(-50%);
  width:32px;height:2.5px;
  background:var(--accent);
  border-radius:0 0 3px 3px;
}
.bnav-item svg{width:22px;height:22px;flex-shrink:0;}
.bnav-label{font-size:9.5px;line-height:1;}
/* call button special */
.bnav-call{
  background:var(--accent);
  color:#000 !important;
  border-radius:0;
  font-weight:900;
}
.bnav-call::before{display:none !important;}
.bnav-call svg{color:#000;}
@media(max-width:768px){.bottom-nav{display:block;}}