/* ============================================================
   Iffah Foods — Premium Design System
   Fonts: Playfair Display (display) + Plus Jakarta Sans (body)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400;1,500&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #3f290e;
    background-color: #eddcb4;
    overflow-x: hidden;
}

/* Navbar Styling */
/* .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    z-index: 150;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(63, 41, 14, 0.06);
    box-shadow: 0 4px 30px rgba(63, 41, 14, 0.03);
    transition: all 0.3s ease;
} */
.navbar {
    position: fixed;
    top: 15px;                    /* floats down from the very top edge */
    left: 50%;
    transform: translateX(-50%);  /* centers it horizontally */
    width: 95%;                   /* not full-bleed — leaves side margins */
    max-width: 1300px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    z-index: 150;
    background: rgba(255, 255, 255, 0.35);   /* more transparent than before */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;          /* oval / pill shape */
    box-shadow: 0 8px 30px rgba(63, 41, 14, 0.08);
    transition: all 0.3s ease;
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    margin-bottom: 0;
}

.nav-links a {
    text-decoration: none;
    color: #3f290e;
    font-weight: 600;
    font-size: 15px;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}
   /* mobile nav*/
   /* Hamburger Icon */
.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #3f290e;
}

/* Tablet */
@media (max-width: 992px) {

    .navbar {
        width: 92%;
        padding: 12px 25px;
    }

    .nav-links {
        gap: 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    .navbar {
        width: 92%;
        padding: 12px 20px;
        border-radius: 20px;
    }

    .logo-img {
        height: 38px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 75px;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 20px;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 25px 0;
        display: none;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        width: 100%;
        font-size: 17px;
    }
}
/* ========================================================
   HERO CONTAINER
   ======================================================== */
.hero-container {
    position: relative;
    width: 100%;
    height: 100vh;  
    display: flex;
    align-items: center;
    padding: 0 8%;
    z-index: 2;
    overflow: hidden;
    background: #f7e6ce;
}

.hero-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #f7e6ce;
    pointer-events: none;
    z-index: 1;
}

.text-area {
    width: 50%;
    position: relative;
    height: 660px;
    margin-top: 100px; /* was 85px */
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dynamic-content-wrapper {
    position: relative;
    height: 340px;
    width: 100%;
}

/* .text-block {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(-40px);
    pointer-events: none;
}

.text-block.initial-active {
    opacity: 1;
    transform: translateX(0);
} */
 .text-block {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(60px);
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.text-block.is-1 {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
/* .asset-group {
    opacity: 0;
    transition: opacity 0.6s ease;
} */
.asset-group.is-1 {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.step-tag {
    font-size: 12px;
    font-weight: 800;
    color: #a06e38;
    letter-spacing: 3px;
    display: block;
    margin-bottom: 16px;
}

.main-title {
    font-size: 55px;
    font-weight: 800;
    color: #1c120b;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing:-0.6px;
    text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.description {
    font-size: 16px;
    color: rgba(14,30,23,0.8);
    line-height: 1.75;
    max-width: 460px;
}

.static-brand-elements {
    width: 100%;
    margin-top: 10px;
}

.cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 45px;
}

.btn-primary {
    background-color: #1a3221;
    color: #ffffff;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 20px rgba(26, 50, 33, 0.15);
    display: inline-block;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    background-color: #112216;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(26, 50, 33, 0.25);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(26, 50, 33, 0.2);
}

.btn-secondary {
    background-color: transparent;
    color: #3f290e;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid #c2b18c;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(63, 41, 14, 0.02);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3f290e;
    color: #ffffff;
    border-color: #3f290e;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(63, 41, 14, 0.12);
}

.btn-secondary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(63, 41, 14, 0.08);
}

.trust-badges {
    display: flex;
    gap: 28px;
    max-width: 650px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon-circle {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(63, 41, 14, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: rgba(255, 255, 255, 0.1);
}

.vector-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #3f290e;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.badge-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-title {
    font-size: 14px;
    font-weight: 700;
    color: #3f290e;
}

.badge-sub {
    font-size: 11px;
    font-weight: 600;
    color: #7a6855;
}

.visual-area {
    width: 55%;
    height: 90%;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 5;
    padding-right: 1%;
}

.asset-group {
    position: absolute;
    width: 760px;
    height: 760px;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    pointer-events: none;
    transition: opacity 0.6s ease, transform 0.6s ease; /* add this */
}

.asset-group.initial-active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.hero-img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* filter: drop-shadow(0 35px 70px rgba(63, 41, 14, 0.25)); */
}

.scroll-explore-container {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 10;
    pointer-events: none;
}

.scroll-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #3f290e;
    text-transform: uppercase;
    opacity: 0.6;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid rgba(63, 41, 14, 0.4);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: #3f290e;
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnim 1.6s infinite;
}

@keyframes scrollAnim {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 10px); }
}

.scroll-indicator {
    position: fixed;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #3f290e;
    border-radius: 50%;
    opacity: 0.35;
    position: relative;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    border: 1.5px solid #1a3221;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.dot.active {
    transform: scale(1);
    opacity: 1;
    background-color: #1a3221;
}

.dot.active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}
/* ==========================================================
   MOBILE HERO
========================================================== */

@media screen and (max-width:768px){

    .hero-container{
        flex-direction:column-reverse;
        justify-content:space-between;
        align-items:center;
        height:auto;
        /* min-height:100svh; */
        padding:86px 18px 24px;
        gap:14px;
        overflow:hidden;
        text-align:center;
        background: #f7e6ce;
    }

    .hero-container::after{
        display:none;
    }

    /* ---------------- IMAGE ---------------- */

    .visual-area{
        width:100%;
        height:auto;
        min-height:340px;
        position:relative;
        padding:0;
        display:flex;
        justify-content:center;
        align-items:center;
        margin-bottom:0;
    }

    .asset-group{
        position:absolute;
        inset:0;
        display:none;
        justify-content:center;
        align-items:center;
        width:100%;
        height:100%;
        max-width:520px;
        opacity:0;
        transform:none;
        transition:none;
        visibility:hidden;
        pointer-events:none;
    }

    .asset-group.initial-active{
        opacity:1;
        display:flex;
        transform:none;
        visibility:visible;
        pointer-events:auto;
    }

    .asset-group.mobile-active{
        opacity:1;
        display:flex;
        transform:none;
        visibility:visible;
        pointer-events:auto;
    }

    .hero-img{
        width:115%;
        max-width:100%;
        height:auto;
        object-fit:contain;
        filter:drop-shadow(0 18px 30px rgba(0,0,0,.15));
    }

    /* ---------------- TEXT ---------------- */

    .text-area{
        width:100%;
        height:auto;
        margin-top:0;
        display:flex;
        align-items:center;
    }

    .dynamic-content-wrapper{
        position:relative;
        width:100%;
        min-height:220px;
    }
.static-brand-elements {
   
    margin-top: -60px;
}
    .text-block{
        position:absolute;
        inset:0;
        display:none;
        flex-direction:column;
        justify-content:center;
        align-items:center;
        opacity:0;
        transform:none;
        visibility:hidden;
        pointer-events:none;
        transition:none;
    }

    .text-block.initial-active{
        opacity:1;
        display:flex;
        transform:none;
        visibility:visible;
        pointer-events:auto;
    }

    .text-block.mobile-active{
        opacity:1;
        display:flex;
        transform:none;
        visibility:visible;
        pointer-events:auto;
    }

    .main-title{
        
        font-size:32px;
        line-height:1.02;
        margin-bottom:-130px;
        letter-spacing:-0.02em;
    }

    .description{
        max-width:100%;
        font-size:14px;
        line-height:1.6;
        text-align:left;
        margin:auto;
        color:#6d583f;
        padding: 0 12px;
    }

    .step-tag.hero-tag{
        display:inline-flex;
        align-items:center;
        justify-content:center;
        align-self:center;
        padding:8px 14px;
        border-radius:999px;
        margin:0 0 10px;
        background:rgba(255,255,255,0.62);
        color:#1f7a3b;
        font-size:10px;
        font-weight:800;
        letter-spacing:1.6px;
        box-shadow:0 8px 20px rgba(63,41,14,.06);
    }

    /* ---------------- BUTTONS ---------------- */

    .cta-group{
        flex-direction:row;
        width:100%;
        gap:14px;
        margin-top:-60px;
        margin-bottom:10px;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        min-height:46px;
        text-align:center;
        padding:0 14px;
        font-size:14px;
        display:flex;
        align-items:center;
        justify-content:space-between;
        position:relative;
        overflow:hidden;
        white-space: nowrap;
        justify-content: center;
    }

.btn-primary{
    color:#fff;
}

.btn-secondary{
    color:#1e140b;
    border:1px solid rgba(63,41,14,0.45);
    background:rgba(255,255,255,0.25);
}
    /* .btn-primary::after {
        content: "\2192";
        color: rgba(255,255,255,0.9);
        font-size: 30px;
        line-height: 1;
    } */

    .btn-secondary {
        /* color: transparent; */
        border: 1px solid rgba(63, 41, 14, 0.45);
        background: rgba(255,255,255,0.25);
    }

    /* .btn-secondary::before {
        content: "Explore Flavours";
        color: #1e140b;
        font-size: 18px;
        font-weight: 700;
        white-space: nowrap;
    } */

    /* .btn-secondary::after {
        content: "\2192";
        color: #1e140b;
        font-size: 30px;
        line-height: 1;
    } */

    /* ---------------- BADGES ---------------- */

    .trust-badges{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:8px;
}

.badge-item{
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.badge-icon-circle{
    width:42px;
    height:42px;
    margin-bottom:2px;
    /* background:rgba(244, 222, 128, 0.85); */
}

.badge-title{
    font-size:12px;
}

.badge-sub{
    font-size:10px;
}

    .badge-text-group {
        align-items: flex-start;
    }

    /* ---------------- HIDE DESKTOP ELEMENTS ---------------- */

    .scroll-explore-container,
    .story-page-indicator{
        display:none;
    }

    .scroll-indicator{
        display:flex;
        position:absolute;
        left:50%;
        right:auto;
        top:auto;
        bottom:-139px;
        transform:translateX(-50%);
        flex-direction:row;
        gap:10px;
        padding:10px 14px;
        border-radius:999px;
        background:rgba(255,255,255,0.22);
        backdrop-filter:blur(12px);
        -webkit-backdrop-filter:blur(12px);
        box-shadow:0 8px 30px rgba(63,41,14,.08);
        z-index:6;
        display:none;

    }

    .dot{
        width:34px;
        height:6px;
        border-radius:999px;
        background:rgba(63,41,14,.18);
    }

    .dot::after{
        display:none;
    }

    .dot.active{
        transform:none;
        background:#1f7a3b;
    }

    /* ---------------- JOURNEY SECTION ---------------- */

}

@media (max-width: 1024px) {
    .story-page-indicator {
        display: flex;
        position: fixed;
        left: 50%;
        right: auto;
        top: auto;
        bottom: 18px;
        transform: translateX(-50%);
        flex-direction: row;
        gap: 10px;
        padding: 10px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.22);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        box-shadow: 0 8px 30px rgba(63, 41, 14, 0.08);
        z-index: 100;
        pointer-events: none;
        opacity: 0;
        transition: opacity 0.4s ease;
    }

    .story-page-indicator.visible {
        opacity: 1;
        pointer-events: auto;
    }
}
/* ========================================================
   HERO IMAGE GLOW (new, isolated)
   ======================================================== */
.hero-glow {
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(65px);
    opacity: 0.85;
    background: radial-gradient(circle, #f0c265 0%, #b3862b 70%);
    z-index: 0;
}
@media screen and (max-width:768px){
    .hero-glow {
        width: 85%;
        height: 85%;
        filter: blur(40px);
        opacity: 0.7;
    }
}
/* ========================================================
   HERO BADGE (new, isolated — ported from .premium-badge)
   ======================================================== */
.hero-badge {
    position: absolute;
    right: 1%;
    top: 46%;
    transform: translateY(-50%);
    width: 110px;
    height: 110px;
    border: 2px solid #e5c158;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #0d2818;
    box-shadow: 0 20px 45px rgba(13,40,24,0.4), inset 0 0 15px rgba(229,193,88,0.2);
    z-index: 6;
    padding: 10px;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.hero-badge-top {
    font-size: 0.55rem;
    color: #e5c158;
    opacity: 0.9;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero-badge-mid {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    margin: 2px 0;
    text-transform: uppercase;
    background: linear-gradient(135deg, #fff 0%, #e5c158 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-badge-star {
    font-size: 0.6rem;
    margin: 1px 0;
    color: #e5c158;
}

.hero-badge-bot {
    font-size: 0.5rem;
    color: #ffffff;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.2;
    font-weight: 500;
}
@media screen and (max-width:768px){
    .hero-badge {
        display: none;
    }
}

/* ========================================================
   PRODUCTS SHOWCASE SECTION
   ======================================================== */
.products-showcase-section {
    position: relative;
    background: #eddcb4;
    width: 100%;
    /* height: 80vh;
    min-height: 640px;
    max-height: 740px; */
   height: calc(100vh - 100px);       /* subtract navbar height */
    min-height: calc(100vh - 100px);
    max-height: calc(100vh - 100px);
    margin-top: 100px;                  /* push section below the fixed navbar */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 5%;
    overflow: hidden;
    z-index: 25;
}

.glass-showcase-wrapper {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 32px;
    width: 100%;
    height: 100%;
    padding: 40px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 20px 50px rgba(63, 41, 14, 0.04);
    overflow: hidden;
}

.showcase-main-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 80%;
    gap: 40px;
}

.showcase-header {
    text-align: left;
    width: 28%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-header .export-tag {
    font-size: 12px;
    font-weight: 800;
    color: #a06e38;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}

.showcase-header .main-title {
    font-size: 38px;
    font-weight: 800;
    color: #1c120b;
    margin-bottom: 16px;
    line-height: 1.2;
}

.showcase-header .description {
    font-size: 14.5px;
    color: #5a4833;
    line-height: 1.5;
    margin-bottom: 24px;
}

.view-all-btn {
    align-self: flex-start;
    background-color: #1a3221;
    color: #ffffff;
    padding: 14px 34px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background-color 0.3s;
}
.view-all-btn:hover{
    background-color: #1a3221;
    color: #ffffff;
}

.showcase-track-container {
    width: 72%;
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
}

.products-horizontal-track {
    display: flex;
    gap: 24px;
    padding: 10px 0;
    will-change: transform;
}

.product-luxury-card {
    background: #fbfaf6;
    border: 1px solid rgba(63, 41, 14, 0.05);
    border-radius: 20px;
    padding: 1px 10px 1px 10px;
    width: 260px;
    height: 290px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(63, 41, 14, 0.03), inset 0 1px 0 #ffffff;
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, border-color 0.4s ease;
}

.product-luxury-card:hover {
    transform: translateY(-12px) scale(1.02) !important;
    box-shadow: 0 25px 50px rgba(63, 41, 14, 0.12);
    border-color: rgba(63, 41, 14, 0.12);
    background: #ffffff;
}

.card-img-wrapper {
    width: 100%;
    flex: 1 1 auto;    
    min-height: 0;  
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-card-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 15px 25px rgba(63, 41, 14, 0.15));
    transition: transform 0.4s ease;
}

.product-luxury-card:hover .product-card-img {
    transform: scale(1.04) rotate(1deg);
}

.card-details-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid rgba(63, 41, 14, 0.04);
    flex-shrink: 0; 
}

.product-title {
    font-size: 15px;
    font-weight: 700;
    color: #21160a;
}

.product-tagline {
    font-size: 11.5px;
    font-weight: 500;
    color: #8c7b68;
}

.card-action-arrow {
    width: 36px;
    height: 36px;
    background-color: #1a3221;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.product-luxury-card:hover .card-action-arrow {
    background-color: #112216;
    transform: scale(1.1);
}

.arrow-svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Compact Brands Banner */
.showcase-brands-footer {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding-top: 20px;
    margin-top: 10px;
}

.brands-inner-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 30px;
}

.brands-title-tag {
    font-size: 11px;
    font-weight: 800;
    color: #a06e38;
    letter-spacing: 2px;
    text-transform: uppercase;
    width: 25%;
    flex-shrink: 0;
}

.brands-logo-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 75%;
    gap: 20px;
}

.brand-logo-item {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: all 0.3s ease;
}

.brand-logo-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.brand-logo-item img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(63, 41, 14, 0.08));
}

.brand-fallback {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #5a4833;
    opacity: 0.7;
}
/* ===========================================
   MOBILE RESPONSIVE
=========================================== */

@media (max-width: 768px) {

    .products-showcase-section{
        height: auto;
        min-height: auto;
        max-height: none;
        margin-top: 80px;
        padding: 20px 15px;
    }

    .glass-showcase-wrapper{
        padding: 25px 18px;
        border-radius: 24px;
        gap: 25px;
    }

    .showcase-main-content{
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        height: auto;
    }

    /* Header Top */

    .showcase-header{
        width: 100%;
        text-align: center;
        align-items: center;
    }

    .showcase-header .export-tag{
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 10px;
    }

    .showcase-header .main-title{
        font-size: 30px;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .showcase-header .description{
        font-size: 14px;
        max-width: 340px;
        margin-bottom: 20px;
    }

    .view-all-btn{
        align-self: center;
        padding: 13px 28px;
        font-size: 14px;
    }

    /* Product Slider Bottom */

    .showcase-track-container{
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 10px;

        scrollbar-width: none;
    }

    .showcase-track-container::-webkit-scrollbar{
        display: none;
    }

    .products-horizontal-track{
        gap: 16px;
        padding: 5px;
        width: max-content;
    }

    .product-luxury-card{
        width: 240px;
        min-width: 240px;
        height: 280px;
        padding: 10px;
    }

    .card-img-wrapper{
        height: 190px;
    }

    .product-card-img{
        max-width: 100%;
        max-height: 100%;
    }

    .product-title{
        font-size: 15px;
    }

    .product-tagline{
        font-size: 11px;
    }

    .card-action-arrow{
        width: 34px;
        height: 34px;
    }

    /* Brands */

    .showcase-brands-footer{
        margin-top: 25px;
        padding-top: 18px;
    }

    .brands-inner-wrap{
        flex-direction: column;
        gap: 20px;
    }

    .brands-title-tag{
        width: 100%;
        text-align: center;
        font-size: 11px;
    }

    .brands-logo-grid{
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
    }

    .brand-logo-item{
        height: 40px;
    }

    .brand-logo-item img{
        max-height: 38px;
    }

}
/* ========================================================
   OUR JOURNEY — ORBITING DIAL SECTION
   ======================================================== */
.story-pinned-section {
    position: relative;
    width: 100%;
    /* height: 100vh; */
    height: calc(100vh - 100px);
    min-height: calc(100vh - 100px);
    margin-top: 0px;              /* it follows right after products section, no extra gap needed */
    overflow: hidden;
    background: #f7e6ce;
    z-index: 20;
    border-bottom: 1px solid rgba(63, 41, 14, 0.05);
}

.story-layout-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 8%;
    gap: 60px;
}

.story-text-column {
    width: 50%;
    position: relative;
    /* height: 500px; */
     height: 100%; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 10;
}

.story-eyebrow-journey {
    font-size: 12px;
    font-weight: 800;
    color: #a06e38;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 24px;
    display: block;
}

.story-slider-panel {
    position: relative;
    width: 100%;
    height: 320px;
}

.story-text-card {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateY(40px);
    pointer-events: none;
}

.story-text-card.initial-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.story-timeline-tag {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: #a06e38;
    margin-bottom: 12px;
    display: block;
}

.story-headline {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: #3f290e;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.story-description {
    font-size: 16.5px;
    color: #6d583f;
    line-height: 1.7;
}

.story-visual-column {
    width: 58%;
    /* height: 540px; */
    height: 100%;  
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.orbit-dial-container {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-origin: center center;
       /* Smoothly scale between 0.85 (short screens) and 1 (tall screens)
       based on actual viewport height, instead of jumping between
       fixed breakpoints */
    transform: scale(0.75);
}


.orbit-dial-track {
    width: 600px;
    height: 600px;
    border-radius: 50%;
    border: 2px dashed #a06e38;
    position: absolute;
    right: -150px;
    top: 50%;
    transform: translate(0, -50%) rotate(0deg);
    will-change: transform;
}

.orbit-center-badge {
    position: absolute;
    top: 50%;
    right: 150px;
    transform: translate(50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #ffffff;
    box-shadow: 0 15px 35px rgba(63, 41, 14, 0.12), 0 0 0 1px rgba(160, 110, 56, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    pointer-events: none;
    padding: 15px;
}

.center-badge-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: normal;
}

.orbit-node {
    position: absolute;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    filter: grayscale(80%) sepia(20%);
    opacity: 0.65;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    will-change: width, height, border-radius, filter, opacity;
    z-index: 2;
}

.orbit-node.node-1 { left: 0px; top: 300px; }
.orbit-node.node-2 { left: 88px; top: 88px; }
.orbit-node.node-3 { left: 300px; top: 0px; }
.orbit-node.node-4 { left: 512px; top: 88px; }
/* .orbit-node.node-5 { left: 590px; top: 279px; } */

.node-glow-ring {
    position: absolute;
    inset: -8px;
    border-radius: inherit;
    /* border: 1px solid rgba(160, 110, 56, 0.3); */
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.orbit-node.dot.active .node-glow-ring {
    opacity: 1;
}
 /* .orbit-node.active .node-glow-ring {
    opacity:1;
} */

.node-image-clip {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ffffff;
    box-shadow: 0 10px 25px rgba(63, 41, 14, 0.12);
    position: relative;
    background: #ffffff;
    will-change: border-radius;
}

.visual-card-img, .visual-card-video {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    object-position: center center;
    display: block;
}

.node-year-label {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 700;
    color: #3f290e;
    margin-top: 10px;
    position: absolute;
    bottom: -30px;
    white-space: nowrap;
    transition: opacity 0.3s;
}

.orbit-node.active .node-year-label {
    opacity: 0;
}

.sydney-overlay-badge {
    position: absolute;
    background: #1a3221;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    top: 15px;
    right: 15px;
    box-shadow: 0 8px 20px rgba(26, 50, 33, 0.25);
    opacity: 0;
    transition: opacity 0.4s;
}

.orbit-node.active .sydney-overlay-badge {
    opacity: 1;
}

.orbit-node.active {
    width: 380px;
    height: 420px;
    border-radius: 18px;
    filter: none;
    opacity: 1;
    z-index: 5;
}
.orbit-node.active .node-image-clip {
    border-radius: 14px;
}

.story-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 8%;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    opacity: 0.7;
}

.indicator-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #3f290e;
    text-transform: uppercase;
}

.indicator-line {
    width: 60px;
    height: 1px;
    background-color: rgba(63, 41, 14, 0.3);
    position: relative;
}

.indicator-line::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #a06e38;
    border-radius: 50%;
    top: -2.5px;
    left: 0;
    animation: lineAnim 2s infinite ease-in-out;
}

@keyframes lineAnim {
    0% { left: 0; }
    100% { left: 54px; }
}

.story-page-indicator {
    position: fixed;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.story-page-indicator.visible {
    opacity: 1;
    pointer-events: auto;
}

.story-dot {
    width: 8px;
    height: 8px;
    background-color: #3f290e;
    border-radius: 50%;
    opacity: 0.35;
    position: relative;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.story-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 22px;
    border: 1.5px solid #1a3221;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0;
    pointer-events: none;
}

.story-dot.active {
    transform: scale(1);
    opacity: 1;
    background-color: #1a3221;
}

.story-dot.active::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}


/* Hide mobile version on desktop */

.journey-mobile{
    display:none;
}

/* Hide desktop orbit */

@media(max-width:1024px){

.story-pinned-section{
    display:none;
}

.journey-mobile{
    display:block;
    background:#f6ecd2;
}

.journey-card{

    height:100vh;
    height:100dvh;
    display:flex;
    flex-direction:column;
    justify-content:center;

    padding:20px;

    position:relative;

    overflow:hidden;

    background:#f6ecd2;
}

.journey-card img{

    width:100%;

    height:45vh;

    object-fit:cover;

    border-radius:18px;

    margin-bottom:25px;
}

.journey-content span{

    color:#a06e38;

    font-weight:700;

    letter-spacing:1px;

    font-size:14px;

    text-transform:uppercase;
}

.journey-content h2{

    font-size:30px;

    margin:15px 0;

    color:#3f290e;
}

.journey-content p{

    font-size:16px;

    line-height:1.7;

    color:#6d583f;
}

}
/* ===================================================
   LOVED ACROSS BORDERS — TESTIMONIAL MAP SECTION
   =================================================== */
.testi-section {
    position: relative;
    /* background: #eddcb4; */
    background:
        linear-gradient(rgba(247, 230, 206, 0.9),
        rgba(247, 230, 206, 0.5)),
        url("/static/iffahassets/peoplesay_bg.png") center center/cover no-repeat;

    /* padding: 90px 8%; */
    min-height: calc(100vh - 100px);   /* fills remaining viewport below navbar */
    padding: 30px 8%;                  /* reduced from 90px so content isn't pushed out */
    overflow: hidden;
    z-index: 20;
    border-bottom: 1px solid rgba(63, 41, 14, 0.05);
}

.deco-leaf {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}
.deco-leaf-tl { top: 100px; left: 15px; width: 180px; }
.deco-leaf-br { bottom: 50px; right: 15px; width: 140px; transform: scaleX(-1) rotate(8deg); }
.deco-chips-bowl { position: absolute; bottom: -15px; left: 30px; width: 210px; z-index: 1; pointer-events: none; }
.deco-cloth { position: absolute; bottom: -15px; right: 30px; width: 170px; z-index: 1; pointer-events: none; }
.deco-chip-scatter { position: absolute; z-index: 1; pointer-events: none; }
.scatter-1 { width: 34px; bottom: 90px; left: 300px; transform: rotate(-12deg); }
.scatter-2 { width: 26px; bottom: 40px; left: 340px; transform: rotate(20deg); }
.scatter-3 { width: 24px; bottom: 130px; right: 230px; transform: rotate(15deg); }
.scatter-4 { width: 18px; bottom: 90px; right: 200px; transform: rotate(-25deg); }

.testi-header {
    position: relative;
    z-index: 3;
    text-align: center;
    max-width: 640px;
    margin: 0 auto 0px; /* reduced bottom margin from 10px... small trim */
}
.testi-eyebrow {
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #b6862f;
    display: block;
    margin-bottom: 10px; /* reduced from 14px */
}
.testi-divider-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;  /* reduced from 16px */
}
.testi-divider-top .line { width: 30px; height: 1px; background: #c7ad7a; }
.testi-divider-top .dot { width: 5px; height: 5px; border-radius: 50%; background: #b6862f; }

.testi-heading {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 44px;
    line-height: 1.15;
    color: #2e2013;
    margin-bottom: 10px; /* reduced from 16px */
}
.testi-desc {
    font-size: 15.5px;
    line-height: 1.6;
    color: #6d583f;
    max-width: 590px;
    margin: 0 auto 5px;
}

.testi-map-canvas {
    position: relative;
    height: 320px; /* reduced from 380px */
    max-width: 860px;
    margin: 0 auto;
    z-index: 2;
}

.map-texture {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.7;
}
.map-texture svg { width: 100%; height: 100%; display: block; }
.map-dot { fill: #b6862f; }

.bg-rings {
    position: absolute;
    top: 50%; left: 50%;
    width: 480px;
    height: 480px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(182, 134, 47, 0.12);
    z-index: 0;
    pointer-events: none;
}
.bg-rings::before {
    content: "";
    position: absolute;
    inset: 40px;
    border-radius: 50%;
    border: 1px solid rgba(182, 134, 47, 0.1);
}

.testi-connectors {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: visible;
}
.testi-connectors path {
    fill: none;
    stroke: #b6862f;
    stroke-width: 1.5;
    stroke-dasharray: 4 4;
    opacity: 0.25;
    transition: stroke 0.35s ease, opacity 0.35s ease, stroke-width 0.35s ease;
}

.testi-quote-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px; /* reduced from 300px */
    height: 260px; /* reduced from 30px */
    border-radius: 50%;
    background: #ffffff;
    box-shadow:
        0 0 0 8px rgba(255, 255, 255, 0.55),
        0 0 0 9px rgba(182, 134, 47, 0.25),
        0 30px 60px -20px rgba(63, 41, 14, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px; /* reduced from 30px */

    z-index: 3;
    transition: box-shadow 0.4s ease;
}

.tq-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}
.tq-mark-top {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #b6862f;
    line-height: 1;
    margin-bottom: 6px;
}
.tq-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 16.5px;
    line-height: 1.5;
    color: #2e2013;
    max-width: 250px;
    margin-bottom: 12px;
}
.tq-divider {
    width: 30px;
    height: 1px;
    background: #c7ad7a;
    margin-bottom: 10px;
}
.tq-author-name {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #1a3221;
    margin-bottom: 2px;
}
.tq-author-country {
    font-size: 12px;
    font-weight: 500;
    color: #8a7256;
}

.map-node {
    position: absolute;
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    width: 120px;
    text-align: center;
    transform: translate(-50%, -38px);
}
.map-node-avatar {
    position: relative;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    padding: 4px;
    background: #eddcb4;
    box-shadow: 0 0 0 1px rgba(182, 134, 47, 0.3), 0 14px 26px -10px rgba(63, 41, 14, 0.3);
    transition: box-shadow 0.4s ease, transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.map-node-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.map-node.is-active .map-node-avatar {
    box-shadow: 0 0 0 2px rgba(26, 50, 33, 0.55), 0 18px 32px -8px rgba(26, 50, 33, 0.4);
    transform: scale(1.18);
}
.map-pin {
    position: absolute;
    bottom: -3px;
    right: -7px;
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}
.map-pin svg path { fill: #b6862f; transition: fill 0.35s ease; }
.map-node.is-active .map-pin { transform: scale(1.15); }
.map-node.is-active .map-pin svg path { fill: #1a3221; }

.map-node-label {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #3a2a18;
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    gap: 2px;
    transition: color 0.3s ease;
}
.person-name {
    color: #a06e38;
    font-weight: 700;
}
.person-place {
    font-weight: 500;
    font-size: 12px;
    color: #6d583f;
    opacity: 0.85;
}
.map-node-label svg { width: 11px; height: 11px; flex-shrink: 0; }
.map-node-label svg path { fill: #b6862f; transition: fill 0.3s ease; }
.map-node.is-active .map-node-label { color: #1a3221; }
.map-node.is-active .map-node-label svg path { fill: #1a3221; }

/* Synchronized Node Positions */
.node-canada     { top: 13.1%; left: 26.8%; }
.node-uae        { top: 63.1%; left: 20.6%; }
.node-australia  { top: 13.1%; left: 75.0%; }
.node-singapore  { top: 63.1%; left: 81.2%; }

.testi-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 20px 0 16px;  /* reduced from 30px 0 20px */
    position: relative;
    z-index: 3;
}
.page-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #d8c39a;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.page-dot.active {
    background: #b6862f;
    transform: scale(1.3);
}

.testi-cta-wrap {
    text-align: center;
    position: relative;
    z-index: 3;
}
.testi-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1a3221;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 40px;
    font-size: 14.5px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}
.testi-btn svg { width: 15px; height: 15px; transition: transform 0.3s ease; }
.testi-btn:hover { background: #112216; transform: translateY(-2px); }
.testi-btn:hover svg { transform: translateX(3px); }

.leaf-ornament {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 22px;
}
.leaf-ornament svg { width: 60px; height: 14px; }

/* ======================================================
   TESTIMONIAL MOBILE
====================================================== */

@media (max-width:768px){

.testi-section{
    padding:70px 5px 60px;
    min-height:auto;
    overflow:hidden;
}

/* Header */

.testi-heading{
    font-size:52px;
    line-height:1.1;
    margin-bottom:18px;
}

.testi-desc{
    max-width:320px;
    margin:auto;
    font-size:18px;
}

/* Background */

.testi-connectors,
.bg-rings{
    display:none;
}

.map-texture{
    opacity:.18;
    display:block;
    position:absolute;
    inset:0;
}

/* Quote Card */

.testi-map-canvas{
    display:flex;
    flex-direction:column;
    align-items:center;
    height:auto;
    margin-top:30px;
}

.testi-quote-circle{
    position:relative;
    inset:auto;
    transform:none;
    width:346px;
    height:346px;
    margin-bottom:30px;
    border-radius:50%;
}

.tq-mark-top{
    font-size:60px;
}

.tq-text{
    font-size:20px;
    line-height:1.55;
    max-width:220px;
}

.tq-author-name{
    font-size:13px;
}

.tq-author-country{
    font-size:18px;
}

/* Customer Row */

.map-node{
    position:relative !important;
    transform:none !important;
    top:auto !important;
    left:auto !important;
    width:auto;
    flex-shrink:0;
}

.map-node-avatar{
    width:72px;
    height:72px;
}

.map-node.is-active .map-node-avatar{
    transform:scale(1.18);
}

.map-pin{
    display:none;
}

.map-node-label{
    font-size:13px;
    margin-top:10px;
}

.testi-map-canvas{

    display:flex;
    flex-wrap:nowrap;
    overflow-x:auto;
    gap:18px;

    scrollbar-width:none;
}

.testi-map-canvas::-webkit-scrollbar{
    display:none;
}

/* put quote first */

.testi-quote-circle{
    order:-1;
    flex:0 0 auto;
}

/* Pagination */

.testi-pagination{
    margin:30px 0;
}

/* Button */

.testi-btn{

    /* width:100%; */
    max-width:330px;
    justify-content:center;
    font-size:17px;
    padding:17px;
}

/* Decorations */

.deco-leaf,
.deco-chip-scatter,
.deco-cloth{
    opacity:.25;
}

.leaf-ornament{
    margin-top:25px;
}
}
@media (max-width:768px){

.testimonial-users{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:18px;
    overflow-x:auto;
    width:100%;
    padding:10px 0;
    scrollbar-width:none;
}

.testimonial-users::-webkit-scrollbar{
    display:none;
}

.map-node{
    position:relative !important;
    top:auto !important;
    left:auto !important;
    transform:none !important;
    flex:0 0 auto;
    width:80px;
}

.map-node-avatar{
    width:70px;
    height:70px;
}

.map-pin{
    display:none;
}
}
/* ========================================================
   CONTACT SECTION
   ======================================================== */
.contact-section {
    position: relative;
    background: #f7e6ce;
    padding: clamp(10px, 3vh, 40px) 8%;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    border-bottom: 1px solid rgba(63, 41, 14, 0.05);

    min-height: calc(100vh - 100px);
    overflow: visible;
}

.contact-info-col {
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-tag {
    font-size: 12px;
    font-weight: 800;
    color: #a06e38;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: clamp(6px, 1.5vh, 16px);
}

.contact-title {
    font-size: clamp(24px, 4vh, 36px);
    font-weight: 800;
    color: #3f290e;
    line-height: 1.15;
    margin-bottom: clamp(8px, 2vh, 16px);
    letter-spacing: -1px;
}

.contact-desc {
    font-size: clamp(13px, 2vh, 16px);
    color: #6d583f;
    line-height: 1.6;
    margin-bottom: clamp(10px, 2.5vh, 24px);
}

.contact-detail-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(8px, 2vh, 16px);
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-icon-circle {
    width: clamp(36px, 5vh, 46px);
    height: clamp(36px, 5vh, 46px);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-circle svg {
    width: 20px;
    height: 20px;
    stroke: #1a3221;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-detail-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: #3f290e;
    margin-bottom: 4px;
    color: inherit;
    text-decoration: none;
}

.contact-detail-text p {
    font-size: 14.5px;
    color: #6d583f;
    line-height: 1.4;
}

.contact-form-col {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.contact-detail-text a{
    position: relative;
    color: inherit;
    text-decoration: none;
    z-index: 10;
}
a { color: inherit; text-decoration: none; }
.glass-form-card {
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: clamp(12px, 2.5vh, 20px);
    box-shadow: 0 20px 45px rgba(63, 41, 14, 0.04);
}

.form-grid-row {
    display: flex;
    gap: 20px;
    margin-bottom: clamp(4px, 1vh, 10px);
}

.form-input-group {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: clamp(4px, 1vh, 8px);
}

.form-label {
    font-size: 12px;
    font-weight: 700;
    color: #6d583f;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-input-field {
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(63, 41, 14, 0.1);
    border-radius: 12px;
    padding: clamp(8px, 1.8vh, 14px) 20px;
    font-size: 14.5px;
    font-family: inherit;
    color: #3f290e;
    transition: all 0.3s ease;
    width: 100%;
}

.form-input-field:focus {
    outline: none;
    background: #ffffff;
    border-color: #1a3221;
    box-shadow: 0 8px 20px rgba(26, 50, 33, 0.05);
}

.form-textarea-field {
    resize: none;
    height: clamp(45px, 10vh, 70px);
}

.form-submit-btn {
    background-color: #1a3221;
    color: #ffffff;
    width: 100%;
    border: none;
    padding: clamp(8px, 1.6vh, 12px);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(26, 50, 33, 0.15);
    transition: background-color 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit-btn:hover {
    background-color: #112216;
    transform: translateY(-2px);
}

.form-submit-btn svg {
    width: 16px; 
    height: 16px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s;
}

.form-submit-btn:hover svg {
    transform: translateX(3px);
}
/* ========================================================
   CONTACT SECTION MOBILE RESPONSIVE
======================================================== */

@media (max-width: 768px) {

    .contact-section{
        flex-direction: column;
        padding: 30px 20px;
        gap: 45px;
        text-align: center;

        height: auto;
        min-height: auto;
        max-height: none;
        overflow: visible;
    }

    .contact-info-col,
    .contact-form-col{
        width:100%;
    }

    .contact-tag{
        font-size:12px;
        letter-spacing:2px;
        margin-bottom:12px;
    }

    .contact-title{
        font-size:38px;
        line-height:1.15;
        margin-bottom:18px;
    }

    .contact-desc{
        font-size:16px;
        line-height:1.7;
        max-width:340px;
        margin:0 auto 35px;
    }

    /* Contact Details */

    .contact-detail-list{
        grid-template-columns: 1fr;
        gap:20px;
    }

    .contact-detail-item{
        align-items:center;
        text-align:left;
        padding:18px;
        border-radius:18px;
        background:rgba(255,255,255,.25);
        border:1px solid rgba(255,255,255,.35);
        text-decoration: none;
    }

    .contact-icon-circle{
        width:52px;
        height:52px;
    }

    .contact-icon-circle svg{
        width:22px;
        height:22px;
    }

    .contact-detail-text h4{
        font-size:16px;
    }

    .contact-detail-text p{
        font-size:14px;
        word-break:break-word;
    }

    /* Form */

    .glass-form-card{
        padding:28px 22px;
        border-radius:24px;
    }

    .form-grid-row{
        flex-direction:column;
        gap:18px;
        margin-bottom:18px;
    }

    .form-input-group{
        width:100%;
    }

    .form-label{
        font-size:11px;
        text-align:left;
    }

    .form-input-field{
        padding:15px 18px;
        font-size:15px;
    }

    .form-textarea-field{
        height:150px;
    }

    .form-submit-btn{
        padding:16px;
        font-size:16px;
    }

}

/* Small Phones */

@media (max-width:480px){

    .contact-section{
        padding:50px 16px;
    }

    .contact-title{
        font-size:32px;
    }

    .contact-desc{
        font-size:15px;
    }

    .glass-form-card{
        padding:22px 18px;
    }

    .contact-detail-item{
        padding:15px;
    }

    .contact-icon-circle{
        width:46px;
        height:46px;
    }

}
.success-msg{
    margin-top:15px;
    color:#155724;
    background:#d4edda;
    padding:12px;
    border-radius:8px;
}

.error-msg{
    margin-top:15px;
    color:#721c24;
    background:#f8d7da;
    padding:12px;
    border-radius:8px;
}
.form-submit-btn:disabled,
.form-submit-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}
.field-error{
    color:#dc3545;
    font-size:13px;
    margin-top:2px;
     min-height:0;
}

.input-error{
    border:1px solid #dc3545 !important;
}



/* ========================================================
   Bootstrap Multiselect - Match Form Design
======================================================== */

/* Button */
.multiselect.dropdown-toggle {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(63, 41, 14, 0.1);
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 14.5px;
    font-family: inherit;
    color: #3f290e;
    text-align: left;
    height: auto;
    min-height: 52px;
    box-shadow: none;
    transition: all .3s ease;
}

.multiselect.dropdown-toggle:hover {
    background: rgba(255,255,255,.55);
    border-color: rgba(63,41,14,.15);
}

.multiselect.dropdown-toggle:focus,
.multiselect.dropdown-toggle.show {
    background: #fff;
    border-color: #1a3221;
    box-shadow: 0 8px 20px rgba(26,50,33,.05);
}

/* Remove bootstrap arrow */
.multiselect.dropdown-toggle::after {
    float: right;
    margin-top: 10px;
}

/* Selected text */
.multiselect-selected-text {
    color: #3f290e;
    font-weight: 500;
}

/* Dropdown */
.multiselect-container.dropdown-menu {
    width: 100%;
    margin-top: 8px;
    border-radius: 12px;
    border: 1px solid rgba(63,41,14,.08);
    box-shadow: 0 15px 35px rgba(63,41,14,.12);
    padding: 8px 0;
    max-height: 260px;
    overflow-y: auto;
}

/* Options */
.multiselect-container>li>a,
.multiselect-container>li>a>label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    font-size: 14px;
    color: #3f290e;
    cursor: pointer;
}

.multiselect-container>li>a:hover,
.multiselect-container>li.active>a {
    background: rgba(26,50,33,.08);
}

/* Checkbox */
.multiselect-container input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #1a3221;
    margin: 0;
}

/* Search */
.multiselect-search {
    margin: 8px;
    border-radius: 10px !important;
    border: 1px solid rgba(63,41,14,.1) !important;
    padding: 10px 14px !important;
}

/* Mobile */
@media (max-width:768px){

    .multiselect.dropdown-toggle{
        padding:15px 18px;
        font-size:15px;
    }

    .multiselect-container.dropdown-menu{
        font-size:15px;
    }
}
/* ========================================================
   NATIVE SELECT — MATCH BOOTSTRAP CARET (Category / Product)
   ======================================================== */
select.form-input-field {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* small solid triangle, same shape/color as .dropdown-toggle::after */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0L5 6L10 0Z' fill='%233f290e'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 10px 6px;

    padding-right: 46px;
    cursor: pointer;
}

select.form-input-field::-ms-expand {
    display: none;
}
/* ========================================================
   CONTACT SECTION — LAPTOP / TABLET FLUID FIX
   ======================================================== */

/* Large laptop / small desktop: tighten spacing, let height breathe */
@media (max-width: 1400px) {
    .contact-section {
        gap: 50px;
        padding: clamp(10px, 3vh, 40px) 5%;
    }
}

/* Laptop: if content doesn't fit the fixed viewport slot, stop clipping it */
@media (max-width: 1200px) {
    .contact-section {
        height: auto;
        min-height: calc(100vh - 100px);
        max-height: none;
        overflow: visible;
        gap: 35px;
        align-items: center;
    }

    .contact-detail-list {
        gap: 10px;
    }

    .form-grid-row {
        gap: 14px;
    }
}

/* Tablet: switch to stacked layout earlier than 768px so columns
   never get crushed into an unreadable width */
@media (max-width: 1024px) {
    .contact-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 6%;
        gap: 40px;
    }

    .contact-info-col,
    .contact-form-col {
        width: 100%;
    }

    .contact-detail-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-detail-item {
        text-align: left;
    }
}

/* Small tablet: single column detail list */
@media (max-width: 640px) {
    .contact-detail-list {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 1200px) {
    .contact-section {
        gap: 35px;
        align-items: center;
    }

    .contact-detail-list {
        gap: 10px;
    }

    .form-grid-row {
        gap: 14px;
    }
}