@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=IBM+Plex+Sans+Thai:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #FF6748;            /* Premium Coral Red */
    --primary-hover: #E55536;
    --primary-light: #FFF0EC;
    --bg-page: #F8FAFC;            /* Minimal light grey page bg */
    --bg-white: #FFFFFF;
    --bg-dark: #0A0F1D;            /* Deep Space Navy */
    --bg-dark-surface: #131B31;
    
    --text-dark: #0F172A;          /* Charcoal text */
    --text-muted: #64748B;
    --text-light: #F8FAFC;
    --border-color: #E2E8F0;
    --border-dark: #1E293B;
    
    --orange: #FF6B00;             /* Accents */
    --green-accent: #10B981;
    --gold: #F59E0B;
    --purple-accent: #8B5CF6;
    
    --font: 'Plus Jakarta Sans', 'IBM Plex Sans Thai', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text-dark);
    background: var(--bg-page);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 800;
    line-height: 1.35;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Reusable Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font);
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 14px rgba(255, 103, 72, 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 103, 72, 0.4);
}

.btn-white {
    background: var(--bg-white);
    color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.btn-white:hover {
    background: #F1F5F9;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.btn-outline {
    background: transparent;
    color: var(--text-muted);
    border: 1.5px solid var(--border-color);
}

.btn-outline:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-outline-white {
    background: rgba(255,255,255,0.08);
    color: white;
    border: 1.5px solid rgba(255,255,255,0.3);
}

.btn-outline-white:hover {
    background: rgba(255,255,255,0.2);
    border-color: white;
    transform: translateY(-2px);
}

/* Section Header Utility */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.section-header h4 {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.section-header p {
    color: var(--text-muted);
    margin-top: 15px;
    font-size: 1.05rem;
}

/* ===== NAVBAR ===== */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    background: transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    position: fixed;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); 
    padding: 14px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Mobile Toggle Menu Button */
.mobile-menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--text-dark);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.mobile-menu-toggle:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: var(--primary);
    transform: translateY(-1px);
}

/* Backdrop for Mobile Menu Drawer */
.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(10, 15, 29, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.nav-backdrop.active {
    opacity: 1;
    pointer-events: auto;
}

/* Mobile drawer classes */
.mobile-only-item {
    display: none;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 1.45rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.logo i {
    color: var(--primary);
    font-size: 1.5rem;
}

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

.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

.nav-links a:hover, 
.nav-links a.active {
    color: var(--primary);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lang-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-muted);
    padding: 6px 12px;
    border-radius: 50px;
    background: var(--bg-page);
    border: 1px solid var(--border-color);
    cursor: pointer;
}

/* ===== HERO SECTION ===== */
.hero-section-new {
    padding: 110px 0 60px;
    background: var(--bg-page);
}

.hero-navy-card {
    position: relative;
    background: var(--bg-dark);
    border-radius: 32px;
    padding: 80px 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(10, 15, 29, 0.4);
}

/* Dark Map grid pattern */
.hero-navy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 103, 72, 0.15), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(255, 103, 72, 0.12), transparent 50%),
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px, 40px 40px;
    z-index: 1;
}

.hero-navy-card * {
    position: relative;
    z-index: 3;
}

.hero-navy-card h1 {
    font-size: 3.8rem;
    color: var(--bg-white);
    max-width: 800px;
    margin-bottom: 24px;
    line-height: 1.15;
    letter-spacing: -1px;
}

.hero-navy-card h1 span {
    color: var(--primary);
}

.hero-navy-card p {
    color: rgba(248, 250, 252, 0.8);
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 36px;
    font-weight: 400;
}

/* Map Graphic Background Overlay inside Hero */
.hero-map-graphics {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.75;
    background-image: url('../images/heroimgtop.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.map-line-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

/* ===== THREE-COLUMN STATS SECTION ===== */
.stats-cards-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    gap: 24px;
    margin-top: -30px;
    position: relative;
    z-index: 10;
    padding-bottom: 60px;
}

.stats-card-blue {
    background: var(--primary);
    color: white;
    padding: 36px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 40px -10px rgba(255, 103, 72, 0.35);
}

.stats-card-blue h3 {
    font-size: 1.45rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: white;
}

.stats-card-blue p {
    font-size: 0.98rem;
    opacity: 0.9;
    line-height: 1.5;
}

.stats-card-white {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 15px 30px rgba(0,0,0,0.03);
}

.stats-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -1px;
    line-height: 1;
}

.stats-label {
    font-size: 0.92rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 6px;
    margin-bottom: 20px;
}

/* Avatar Bubbles Overlap */
.avatar-bubbles {
    display: flex;
    align-items: center;
}

.avatar-bubble {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
    margin-left: -12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.avatar-bubble:first-child {
    margin-left: 0;
}

.avatar-plus {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 3px solid white;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -12px;
}

/* Store Badge Rows */
.store-icons-row {
    display: flex;
    gap: 10px;
}

.store-badge-mini {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg-dark);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 0.72rem;
    font-weight: 700;
}

.store-badge-mini i {
    font-size: 0.95rem;
}

/* ===== DETAILED CSS IPHONE MOCKUP ===== */
.iphone-wrapper {
    position: relative;
    width: 290px;
    height: 590px;
    margin: 0 auto;
    z-index: 5;
}

.iphone-body {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 46px;
    background: #000;
    border: 5px solid #1E293B;
    box-shadow: 0 30px 60px -15px rgba(15, 23, 42, 0.3), inset 0 2px 8px rgba(255,255,255,0.2);
    overflow: hidden;
}

.iphone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-page);
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.iphone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 25px;
    background: #000;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 100;
}

/* Custom CSS visual mockup for exploration map */
.iphone-map-screen {
    flex: 1;
    background: #E2E8F0;
    position: relative;
    background-image: 
        radial-gradient(circle at 30% 20%, rgba(255, 103, 72, 0.08) 0%, transparent 60%),
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 100% 100%, 25px 25px, 25px 25px;
}

/* Phone GPS route line */
.iphone-map-path {
    position: absolute;
    top: 40%;
    left: 10%;
    width: 80%;
    height: 40%;
    border-bottom: 4px dashed var(--primary);
    border-right: 4px dashed var(--primary);
    border-bottom-right-radius: 40px;
    transform: rotate(-10deg);
}

.iphone-map-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 103, 72, 0.5);
}

.iphone-map-marker.m1 { top: 35%; left: 10%; }
.iphone-map-marker.m2 { top: 68%; left: 82%; }

.iphone-explorer-dot {
    position: absolute;
    top: 50%;
    left: 45%;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 12px var(--primary);
}

.iphone-explorer-dot::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    top: -9px;
    left: -9px;
    animation: ripple 2s infinite ease-out;
}

/* Phone Floating Details Card */
.iphone-floating-card {
    position: absolute;
    bottom: 16px;
    left: 12px;
    right: 12px;
    background: white;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(226,232,240,0.8);
    z-index: 10;
}

.iphone-floating-card h4 {
    font-size: 0.9rem;
    font-weight: 800;
}

.iphone-floating-card .sub {
    font-size: 0.72rem;
    color: var(--text-muted);
}

.iphone-floating-card .card-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
}

/* iPhone Missions List Screen */
.iphone-missions-screen {
    flex: 1;
    padding: 40px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: var(--bg-page);
}

.iphone-screen-title {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.iphone-mission-item {
    background: white;
    border-radius: 14px;
    padding: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.iphone-mission-info h5 {
    font-size: 0.8rem;
    font-weight: 700;
}

.iphone-mission-info .pts {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 2px;
}

.iphone-mission-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 50px;
    background: #F1F5F9;
    color: var(--text-muted);
}

.iphone-mission-badge.active {
    background: rgba(16, 185, 129, 0.1);
    color: var(--green-accent);
}

/* Background Soft Glows */
.phone-bg-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: var(--primary-light);
    filter: blur(50px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    opacity: 0.6;
}

/* ===== FEATURE SECTIONS ===== */
.feature-section-row {
    padding: 100px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.feature-section-row.alt {
    background: var(--bg-page);
}

.feature-grid-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.feature-section-row.alt .feature-grid-layout {
    grid-template-columns: 0.9fr 1.1fr;
}

.feature-content-box h4 {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.feature-content-box h2 {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.feature-content-box p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 35px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.benefit-check {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===== SEARCH & MAP SECTION ===== */
.search-map-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.search-floating-card {
    background: white;
    border-radius: 20px;
    padding: 24px 30px;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    border: 1px solid var(--border-color);
    max-width: 1000px;
    margin: 0 auto -40px;
    position: relative;
    z-index: 20;
}

.search-inputs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 20px;
    align-items: flex-end;
}

.search-input-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-input-col label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-input-col select {
    padding: 12px 16px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--bg-page);
    color: var(--text-dark);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    outline: none;
    cursor: pointer;
}

.search-floating-card .btn-primary {
    height: 48px;
    border-radius: 12px;
    padding: 0 32px;
}

/* Map Display Container */
.map-display-container {
    background: var(--bg-dark);
    border-radius: 28px;
    height: 500px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.map-display-texture {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255, 103, 72, 0.48), transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 103, 72, 0.45), transparent 50%),
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 35px 35px, 35px 35px;
}

.map-thailand-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/inmaps.webp');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.25; /* Premium high visibility */
    z-index: 2;
    pointer-events: none;
    filter: brightness(0.9) contrast(1.1);
}

/* Glowing Route Dots on Map */
.map-glowing-dots {
    position: absolute;
    width: 100%;
    height: 100%;
}

.map-glow-node {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border: 3px solid white;
    border-radius: 50%;
    box-shadow: 0 0 15px var(--primary);
    cursor: pointer;
}

.map-glow-node::before {
    content: '';
    position: absolute;
    width: 32px;
    height: 32px;
    border: 1px solid var(--primary);
    border-radius: 50%;
    top: -11px;
    left: -11px;
    animation: ripple 3s infinite ease-out;
}

.map-glow-node span {
    position: absolute;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(10, 15, 29, 0.85);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    white-space: nowrap;
    border: 1px solid rgba(255,255,255,0.05);
}

.map-glow-node.node1 { top: 25%; left: 30%; }
.map-glow-node.node2 { top: 55%; left: 52%; }
.map-glow-node.node3 { top: 72%; left: 78%; }

/* Moving path icon on map */
.map-moving-path-car {
    position: absolute;
    top: 25%;
    left: 30%;
    width: 28px;
    height: 28px;
    background: var(--bg-white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 5;
    animation: moveAlong 12s infinite linear;
}

/* ===== FEATURED CAROUSEL SECTION ===== */
.missions-section-new {
    padding: 100px 0;
    background: var(--bg-page);
}

.missions-section-new .missions-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.missions-section-new .missions-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
}

.mission-cards-scroll {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.new-mission-card {
    background: var(--bg-white);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    transition: var(--transition);
}

.new-mission-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(255, 103, 72, 0.08);
    border-color: rgba(255, 103, 72, 0.25);
}

.mission-card-image {
    position: relative;
    height: 170px;
    overflow: hidden;
}

.mission-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.new-mission-card:hover .mission-card-image img {
    transform: scale(1.05);
}

.mission-card-timer {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 4px;
}

.mission-card-timer i {
    color: var(--primary);
}

.mission-card-tag {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
}

.mission-card-body {
    padding: 20px;
}

.mission-card-body h3 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.mission-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
}

.mission-foot-col {
    display: flex;
    flex-direction: column;
}

.mission-foot-col span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.mission-foot-col strong {
    font-size: 0.88rem;
    color: var(--text-dark);
}

.mission-foot-col strong.pts {
    color: var(--primary);
    font-size: 1rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-page);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    border-color: rgba(255, 103, 72, 0.15);
}

.quote-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 500;
}

.reviewer-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-details h5 {
    font-size: 0.82rem;
    font-weight: 800;
}

.reviewer-stars {
    display: flex;
    gap: 2px;
    margin-top: 2px;
    color: var(--gold);
    font-size: 0.65rem;
}

/* ===== CTA BLUE CARD SECTION ===== */
.cta-section-new {
    padding: 60px 0 100px;
    background: var(--bg-white);
}

.cta-blue-card {
    background: var(--primary);
    border-radius: 28px;
    padding: 60px 80px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(255, 103, 72, 0.35);
}

.cta-blue-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 50%);
}

.cta-text-side {
    z-index: 5;
    color: white;
}

.cta-text-side h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.cta-text-side p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
}

.cta-input-row {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 14px;
    padding: 6px;
    max-width: 440px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.cta-input-row input {
    flex: 1;
    border: none;
    padding: 10px 16px;
    outline: none;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.cta-input-row button {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 10px 24px;
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.cta-input-row button:hover {
    background: var(--primary-hover);
}

.cta-mockup-side {
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 5;
}

.cta-mockup-tilted {
    width: 210px;
    height: 430px;
    border-radius: 32px;
    background: #000;
    border: 6px solid #1E293B;
    box-shadow: -15px 25px 40px rgba(15, 23, 42, 0.4);
    transform: rotate(12deg);
    overflow: hidden;
    position: relative;
}

.cta-mockup-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-page);
    padding: 30px 14px 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cta-wallet-box {
    background: var(--primary);
    border-radius: 14px;
    padding: 14px;
    color: white;
}

.cta-wallet-box h6 {
    font-size: 0.72rem;
    opacity: 0.8;
}

.cta-wallet-box .balance {
    font-size: 1.45rem;
    font-weight: 800;
}

.cta-reward-mini {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-reward-mini i {
    color: var(--primary);
    font-size: 1.25rem;
}

.cta-reward-mini h6 {
    font-size: 0.75rem;
    font-weight: 800;
}

.cta-reward-mini .cost {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* ===== FOOTER SECTION ===== */
.footer-new {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-dark);
}

.footer-grid-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 0.8fr 0.8fr 1.3fr;
    gap: 40px;
    margin-bottom: 60px;
}

.foot-brand h3 {
    font-size: 1.5rem;
    color: white;
    font-weight: 800;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.foot-brand h3 i {
    color: var(--primary);
}

.foot-brand p {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.foot-socials-row {
    display: flex;
    gap: 12px;
}

.foot-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.92rem;
    border: 1px solid rgba(255,255,255,0.05);
}

.foot-social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.foot-col h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.foot-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.foot-col ul li a {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
}

.foot-col ul li a:hover {
    color: var(--primary);
}

.foot-newsletter-side h4 {
    color: white;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.foot-newsletter-side p {
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.foot-newsletter-box {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    padding: 4px;
}

.foot-newsletter-box input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 8px 12px;
    outline: none;
    font-family: var(--font);
    font-size: 0.85rem;
    color: white;
}

.foot-newsletter-box input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.foot-newsletter-box button {
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 8px 18px;
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--transition);
}

.foot-newsletter-box button:hover {
    background: var(--primary-hover);
}

.footer-bottom-bar {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-bar span {
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    font-size: 0.8rem;
}

/* ===== KEYFRAME ANIMATIONS ===== */
@keyframes ripple {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.2); opacity: 0; }
}

@keyframes moveAlong {
    0% { top: 25%; left: 30%; }
    40% { top: 55%; left: 52%; }
    80% { top: 72%; left: 78%; }
    100% { top: 25%; left: 30%; }
}


/* ===== NEW STYLE FEATURE SECTION ===== */
.style-feature-section {
    padding: 100px 0;
    background: #FFF;
    position: relative;
    overflow: hidden;
}

.style-feature-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.pill-badge-coral {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--bg-white);
    border: 1px solid var(--primary);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(255, 103, 72, 0.08);
}

.pill-badge-coral i {
    font-size: 0.9rem;
    background: var(--primary);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collage-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.collage-title span {
    color: var(--primary);
}

.collage-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Collage Container & Layering elements */
.collage-wrapper {
    position: relative;
    width: 100%;
    height: 460px;
    margin-top: 40px;
}

.collage-dots {
    position: absolute;
    top: 5%;
    right: 15%;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(var(--primary) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.35;
    z-index: 1;
}

.collage-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    height: 380px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    z-index: 2;
    border: 6px solid #FFF;
    transform: rotate(-2deg);
}

.collage-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.collage-card-sub {
    position: absolute;
    top: 80px;
    left: 280px;
    width: 140px;
    height: 140px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    z-index: 4;
    border: 4px solid #FFF;
    transform: rotate(4deg);
}

.collage-card-sub img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sub-card-heart {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FF3B30;
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(255, 59, 48, 0.4);
    z-index: 5;
    font-size: 0.9rem;
}

.collage-chat-bubble {
    position: absolute;
    bottom: 20px;
    left: -40px;
    background: #FFF;
    padding: 16px 20px;
    border-radius: 24px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    display: flex;
    gap: 15px;
    align-items: center;
    max-width: 320px;
    z-index: 5;
    border: 1px solid #F1F5F9;
}

.chat-user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.chat-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.chat-text-box {
    display: flex;
    flex-direction: column;
}

.chat-user-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.chat-message {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 4px 0;
    line-height: 1.3;
}

.chat-time {
    font-size: 0.75rem;
    color: #94A3B8;
}

.collage-phone-mockup {
    position: absolute;
    bottom: -40px;
    left: 240px;
    width: 220px;
    height: 290px;
    background: #111;
    border-radius: 36px;
    border: 4px solid #334155;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    z-index: 3;
    overflow: hidden;
    transform: rotate(-1deg);
}

.collage-phone-header {
    height: 20px;
    position: relative;
    background: #111;
}

.collage-phone-header .phone-notch {
    width: 90px;
    height: 10px;
    background: #000;
    margin: 0 auto;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.collage-phone-screen {
    background: #F8FAFC;
    height: calc(100% - 20px);
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phone-profile-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

.profile-avatar-small {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.profile-avatar-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-info-small h4 {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.2;
}

.profile-info-small span {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.phone-wallet-coral {
    background: var(--primary);
    color: white;
    padding: 12px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 16px rgba(255, 103, 72, 0.2);
}

.phone-wallet-coral span {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.phone-wallet-coral h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-top: 4px;
}

.phone-menu-items {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.phone-menu-items li {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    background: white;
    border-radius: 8px;
    border: 1px solid #E2E8F0;
}

.phone-menu-items li i {
    color: var(--primary);
}

/* Right Column: Style Info Cards */
.info-cards-column {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.style-info-card {
    background: #FFF;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.015);
    border: 1px solid #F1F5F9;
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.style-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(255, 103, 72, 0.05);
    border-color: rgba(255, 103, 72, 0.15);
}

.style-info-card .card-icon-box {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--primary);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 8px 16px rgba(255, 103, 72, 0.15);
}

.style-info-card .card-text-content {
    display: flex;
    flex-direction: column;
}

.style-info-card .card-text-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.style-info-card .card-text-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.card-learn-more {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.card-learn-more:hover {
    gap: 10px;
}


/* ===== NEW PREMIUM APP SHOWCASE SECTION ===== */
.premium-app-showcase {
    padding: 100px 0 60px 0;
    background: #FFF;
}

.app-showcase-card {
    background: linear-gradient(135deg, #FFFDFB 0%, #FFF8F5 100%);
    border-radius: 32px;
    border: 1px solid rgba(255, 103, 72, 0.08);
    padding: 80px;
    box-shadow: 0 30px 60px rgba(255, 103, 72, 0.02);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.showcase-left-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 480px;
}

.download-badge-area {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.download-badge-area span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.download-metric {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1;
}

.showcase-product-card {
    background: #FFF;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.04);
    border: 1px solid #F1F5F9;
    max-width: 280px;
    margin: 30px 0;
}

.showcase-product-image {
    width: 100%;
    height: 190px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 12px;
    position: relative;
}

.showcase-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-product-details {
    padding: 4px;
}

.showcase-product-details h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.showcase-product-details span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.showcase-left-bottom h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.showcase-left-bottom p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

/* Center Phone Mockup styling */
.showcase-center-column {
    display: flex;
    justify-content: center;
}

.iphone-welcome-mockup {
    width: 290px;
    height: 540px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 44px;
    border: 4px solid #27272A;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}


.welcome-screen-content {
    background-image: 
        linear-gradient(to bottom, rgba(10, 15, 29, 0.8), rgba(10, 15, 29, 0.2)), 
        url('../images/hero_hiker_sunset.webp');
    background-size: cover;
    background-position: top center;
    width: 100%;
    height: 100%;
    padding: 30px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: #FFF;
}

.welcome-app-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.25rem;
    font-weight: 800;
    margin-top: 10px;
}

.welcome-app-logo span {
    color: var(--primary);
}

.welcome-bottom-modal {
    background: #FFF;
    color: var(--text-dark);
    padding: 24px 20px;
    border-radius: 28px;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.15);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.welcome-bottom-modal h3 {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.3;
}

.welcome-bottom-modal h3 span {
    color: var(--primary);
}

.welcome-bottom-modal p {
    font-size: 0.78rem;
    line-height: 1.4;
    color: var(--text-muted);
}

.welcome-bottom-modal .btn-primary {
    width: 100%;
    padding: 12px 0;
    border-radius: 14px;
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

/* Right Column styling */
.showcase-right-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 480px;
    align-items: flex-end;
}

.showcase-right-top {
    text-align: right;
    max-width: 320px;
}

.showcase-right-top h2 {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    color: var(--text-dark);
}

.showcase-right-top h2 span {
    color: var(--primary);
}

.iphone-catalog-mockup {
    width: 290px;
    height: 540px;
    background: #F8FAFC;
    border-radius: 44px;
    border: 4px solid #27272A;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    color: var(--text-dark);
}

.iphone-catalog-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 25px;
    background: #000;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.catalog-screen-content {
    padding: 30px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.catalog-user-info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.catalog-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
}

.catalog-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-user-details h5 {
    font-size: 0.78rem;
    font-weight: 800;
    margin: 0;
}

.catalog-user-details span {
    font-size: 0.62rem;
    color: var(--text-muted);
}

.catalog-header-actions {
    display: flex;
    gap: 8px;
}

.catalog-action-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: white;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: var(--text-dark);
}

.catalog-search-bar {
    position: relative;
}

.catalog-search-bar input {
    width: 100%;
    padding: 10px 16px 10px 36px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    background: #FFF;
    font-size: 0.8rem;
    font-family: var(--font);
}

.catalog-search-bar i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: #94A3B8;
}

.catalog-categories {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.catalog-categories::-webkit-scrollbar {
    display: none;
}

.cat-item {
    padding: 6px 12px;
    border-radius: 100px;
    background: #FFF;
    border: 1px solid #E2E8F0;
    font-size: 0.7rem;
    font-weight: 700;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}

.cat-item.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.cat-item i {
    font-size: 0.75rem;
}

.catalog-featured-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    height: 140px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.06);
}

.catalog-featured-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-featured-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
    color: #FFFFFF;
    z-index: 2;
}

.catalog-featured-info h4 {
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0;
    color: #FFFFFF !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.catalog-featured-info span {
    font-size: 0.65rem;
    opacity: 0.95;
    color: #FF8F77 !important; /* Sleek coral to match branding */
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
}

.catalog-popular-section h4 {
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.catalog-popular-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.pop-item {
    background: white;
    border-radius: 12px;
    padding: 8px;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pop-img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pop-img img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.pop-info h5 {
    font-size: 0.68rem;
    font-weight: 700;
    margin: 0 0 2px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 80px;
}

.pop-info span {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--primary);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .stats-cards-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
    .stats-card-blue { grid-column: span 2; }
    .footer-grid-layout { grid-template-columns: 1fr 1fr; gap: 40px; }
    .foot-brand, .foot-newsletter-side { grid-column: span 2; }
    
    .app-showcase-card {
        grid-template-columns: 1fr;
        padding: 40px;
        gap: 60px;
    }
    .showcase-left-column,
    .showcase-right-column {
        min-height: auto;
        align-items: center;
        text-align: center;
    }
    .showcase-right-top {
        text-align: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 992px) {
    .style-feature-grid,
    .feature-grid-layout, 
    .feature-section-row.alt .feature-grid-layout,
    .cta-blue-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .feature-section-row.alt .feature-grid-layout .iphone-wrapper {
        order: 2;
    }
    
    .search-inputs-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .search-floating-card .btn-primary {
        grid-column: span 2;
        width: 100%;
    }
    
    .mission-cards-scroll, 
    .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .hero-navy-card h1 { font-size: 2.8rem; }
    .cta-blue-card { padding: 40px; }
}

@media (max-width: 768px) {
    /* Fixed Solid Navbar on mobile for enhanced usability */
    .navbar {
        position: fixed !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
        padding: 12px 0 !important;
        box-shadow: 0 4px 20px rgba(0,0,0,0.04) !important;
    }
    
    .navbar-right .lang-pill,
    .navbar-right .btn {
        display: none !important;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    /* Navigation Drawer Menu */
    .navbar .nav-links {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-white);
        padding: 100px 32px 40px;
        gap: 20px;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
        box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    }
    
    .navbar .nav-links.active {
        right: 0;
    }
    
    .navbar .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 12px;
    }
    
    .navbar .nav-links li:last-child {
        border-bottom: none;
    }
    
    .navbar .nav-links a {
        display: block;
        width: 100%;
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-dark);
    }
    
    .mobile-only-item {
        display: block;
        width: 100%;
        margin-top: 10px;
    }
    
    /* Grid scaling modifications */
    .search-inputs-grid { grid-template-columns: 1fr; }
    .search-floating-card .btn-primary { grid-column: span 1; }
    
    .mission-cards-scroll, 
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    /* Collage styling & premium scaling */
    .collage-wrapper {
        height: 340px;
        max-width: 440px;
        margin: 20px auto;
        transform: scale(0.8);
        transform-origin: center center;
    }
    
    .collage-img-main {
        width: 260px;
        height: 320px;
    }
    .collage-card-sub {
        left: 220px;
    }
    .collage-phone-mockup {
        left: 180px;
    }
    .collage-chat-bubble {
        left: -10px;
        bottom: 20px;
        max-width: 260px;
    }
    
    .stats-cards-grid {
        grid-template-columns: 1fr;
        margin-top: -15px;
    }
    .stats-card-blue {
        grid-column: span 1;
    }
    
    .download-metric {
        font-size: 3rem;
    }
    .showcase-left-bottom h2,
    .showcase-right-top h2 {
        font-size: 1.8rem;
    }

    .cta-blue-card h2 { font-size: 2.2rem; }
    .cta-blue-card p { font-size: 1rem; }
    
    .footer-grid-layout { grid-template-columns: 1fr; }
    .foot-brand, .foot-newsletter-side { grid-column: span 1; }
    .footer-bottom-bar { flex-direction: column; gap: 15px; text-align: center; }
}

@media (max-width: 576px) {
    .hero-navy-card {
        padding: 50px 20px;
        border-radius: 24px;
    }
    
    .hero-navy-card h1 {
        font-size: 2.0rem;
    }
    
    .hero-navy-card p {
        font-size: 1.0rem;
    }
    
    .map-display-container {
        height: 350px;
    }
    
    .page-hero {
        padding: 80px 20px 40px;
    }
    
    .page-hero h1 {
        font-size: 2.0rem;
    }
}

@media (max-width: 480px) {
    .collage-wrapper {
        height: 285px;
        transform: scale(0.65);
    }
    
    .cta-input-row {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        padding: 0;
        gap: 12px;
        width: 100%;
    }
    .cta-input-row input {
        background: white;
        border-radius: 12px;
        width: 100%;
        height: 50px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    .cta-input-row button {
        width: 100%;
        height: 50px;
        border-radius: 12px;
    }
    
    .foot-newsletter-box {
        flex-direction: column;
        background: transparent;
        border: none;
        padding: 0;
        gap: 10px;
    }
    .foot-newsletter-box input {
        background: rgba(255,255,255,0.05);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 10px;
        width: 100%;
        height: 44px;
    }
    .foot-newsletter-box button {
        width: 100%;
        height: 44px;
    }
}

/* ===== PROFILE SCREEN MOCKUP STYLING ===== */
.profile-screen-content {
    background: #F4F4F5;
    width: 100%;
    height: 100%;
    padding: 30px 12px 65px 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    scrollbar-width: none;
    position: relative;
}

.profile-screen-content::-webkit-scrollbar {
    display: none;
}

.profile-header {
    background: white;
    border-radius: 14px;
    padding: 10px 12px;
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.profile-user-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #E2E8F0;
    flex-shrink: 0;
}

.profile-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-user-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.profile-user-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profile-user-name h5 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
}

.profile-user-name .time-active {
    font-size: 0.58rem;
    color: var(--text-muted);
    font-weight: 600;
}

.profile-header-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
}

.btn-edit-image {
    background: #FFF;
    border: 1px solid #CBD5E1;
    border-radius: 100px;
    font-size: 0.58rem;
    font-weight: 700;
    padding: 2px 8px;
    color: #475569;
    cursor: pointer;
    transition: var(--transition);
}

.btn-edit-image:hover {
    background: #F8FAFC;
    border-color: #94A3B8;
}

.btn-logout {
    background: transparent;
    border: none;
    font-size: 0.58rem;
    font-weight: 700;
    color: #475569;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0;
}

.orange-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    display: inline-block;
}

.profile-tabs {
    display: flex;
    background: white;
    border-radius: 10px;
    padding: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.profile-tab {
    flex: 1;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 6px 0;
    color: var(--text-muted);
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
}

.profile-tab.active {
    color: var(--primary);
    background: rgba(255, 103, 72, 0.05);
    border-bottom: 2px solid var(--primary);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.profile-status-card {
    background: white;
    border-radius: 14px;
    padding: 12px;
    border: 1px solid #FFE4E0;
    box-shadow: 0 2px 6px rgba(255, 103, 72, 0.02);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
}

.status-label i {
    color: #F59E0B;
}

.status-value {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--text-dark);
}

.orange-highlight {
    color: var(--primary) !important;
}

.level-progress-container {
    height: 7px;
    background: #E2E8F0;
    border-radius: 100px;
    overflow: hidden;
    margin-top: 1px;
}

.level-progress-bar {
    height: 100%;
    background: linear-gradient(to right, #FF8F77, var(--primary));
    border-radius: 100px;
}

.level-exp-text {
    display: flex;
    justify-content: space-between;
    font-size: 0.58rem;
    font-weight: 700;
    color: #94A3B8;
    margin-top: -3px;
}

.dashed-tip-box {
    border: 1px dashed #FF8F77;
    background: #FFF5F3;
    border-radius: 8px;
    padding: 6px;
    text-align: center;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.stat-widgets-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
}

.stat-widget {
    background: white;
    border-radius: 10px;
    padding: 8px 4px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.widget-label {
    font-size: 0.55rem;
    font-weight: 700;
    color: #94A3B8;
}

.widget-num {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-dark);
}

.memory-routes-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 2px;
}

.memory-routes-section h4 {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--text-dark);
}

.memory-routes-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.memory-route-item {
    background: white;
    border-radius: 10px;
    padding: 8px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.route-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.route-num {
    font-size: 0.75rem;
    font-weight: 800;
    color: #94A3B8;
}

.route-info h5 {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0;
    margin-bottom: -10px !important;
}

.route-info span {
    font-size: 0.55rem;
    color: #94A3B8;
}

.route-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

.route-score {
    font-size: 0.68rem;
    font-weight: 800;
    color: var(--primary);
}

.route-icons {
    display: flex;
    gap: 5px;
    color: #94A3B8;
    font-size: 0.62rem;
}

.route-icons i {
    cursor: pointer;
    transition: var(--transition);
}

.route-icons i:hover {
    color: var(--primary);
}

.profile-bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    border-top: 1px solid #E2E8F0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 4px 0 8px 0;
    z-index: 10;
}

.profile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #94A3B8;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    gap: 1px;
}

.profile-bottom-nav .nav-item span {
    font-size: 0.5rem;
    font-weight: 700;
}

.profile-bottom-nav .nav-item.active {
    color: var(--primary);
}

/* ==========================================================================
   PREMIUM TILTED 3D MAP SCREEN MOCKUP
   ========================================================================== */
.new-tilted-map {
    background-image: url('../images/inmaps2.webp');
    background-size: cover;
    background-position: center 30%;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Star Score Badge */
.map-top-star-badge {
    position: absolute;
    top: 45px;
    left: 12px;
    background: white;
    padding: 4px 10px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-size: 0.72rem;
    font-weight: 800;
    color: #334155;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 10;
}

.map-top-star-badge i {
    color: #F59E0B;
}

/* Mascot Chick Node at Chachoengsao */
.map-mascot-chick-glow {
    position: absolute;
    left: 55px;
    top: 290px;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-chick-avatar {
    width: 26px;
    height: 26px;
    background: #FFC107;
    border-radius: 50%;
    border: 1.5px solid white;
    position: relative;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: chick-bounce 1.5s infinite alternate ease-in-out;
}

.map-chick-avatar::before {
    /* Beak */
    content: '';
    position: absolute;
    top: 11px;
    left: 9px;
    width: 0;
    height: 0;
    border-left: 3px solid transparent;
    border-right: 3px solid transparent;
    border-top: 4px solid #FF5722;
}

.map-chick-avatar::after {
    /* Eyes */
    content: '• •';
    position: absolute;
    top: 4px;
    left: 6px;
    font-size: 7px;
    font-weight: 800;
    color: #000;
    letter-spacing: 2px;
}

.map-chick-avatar .chick-wing-left {
    position: absolute;
    left: -4px;
    top: 8px;
    width: 6px;
    height: 8px;
    background: #FFC107;
    border-radius: 50% 0 0 50%;
    transform: rotate(-20deg);
    animation: wing-flap-left 0.4s infinite alternate ease-in-out;
}

.map-chick-avatar .chick-wing-right {
    position: absolute;
    right: -4px;
    top: 8px;
    width: 6px;
    height: 8px;
    background: #FFC107;
    border-radius: 0 50% 50% 0;
    transform: rotate(20deg);
    animation: wing-flap-right 0.4s infinite alternate ease-in-out;
}

/* Concentric Ripple Wave */
.ripple-wave {
    position: absolute;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 103, 72, 0.5);
    background: rgba(255, 103, 72, 0.12);
    border-radius: 50%;
    z-index: 1;
    animation: ripple 2s infinite ease-out;
}

/* SVG Route line */
.map-route-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

/* Siren Destination */
.map-siren-destination {
    position: absolute;
    left: 220px;
    top: 175px;
    z-index: 8;
    animation: siren-pulse 0.8s infinite alternate ease-in-out;
}

.map-siren-destination .siren-light {
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(239, 68, 68, 0.8);
}

/* Popup Bubble */
.map-popup-bubble {
    position: absolute;
    left: 24px;
    top: 178px;
    background: rgba(235, 243, 248, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 6px 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.15);
    z-index: 9;
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 175px;
}

.map-popup-bubble .popup-close-btn {
    position: absolute;
    right: 8px;
    top: 4px;
    font-size: 0.8rem;
    color: #94A3B8;
    cursor: pointer;
    line-height: 1;
}

.map-popup-bubble .popup-row {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: #334155;
    font-weight: 700;
}

.map-popup-bubble .popup-icon {
    font-size: 0.72rem;
}

.map-popup-bubble .popup-text {
    font-weight: 700;
}

.map-popup-bubble .popup-arrow {
    position: absolute;
    right: -6px;
    top: 12px;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid rgba(235, 243, 248, 0.95);
}

/* Bottom Megaphone Badge */
.map-circular-avatar-badge {
    position: absolute;
    bottom: 96px;
    right: 12px;
    width: 44px;
    height: 44px;
    background: radial-gradient(circle, #FFE4E6 0%, #FF8A8A 100%);
    border: 2px solid white;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.map-circular-avatar-badge .chick-head {
    width: 26px;
    height: 26px;
    background: #FFD166;
    border-radius: 50%;
    position: relative;
    box-shadow: inset -1.5px -1.5px 0 rgba(0,0,0,0.1);
}

.map-circular-avatar-badge .chick-head::before {
    content: '📢';
    position: absolute;
    bottom: -2px;
    right: -4px;
    font-size: 11px;
    transform: scaleX(-1);
}

/* Bottom Panel Banner */
.map-bottom-panel-container {
    position: absolute;
    bottom: 44px;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 9;
}

.map-orange-banner {
    background: linear-gradient(135deg, #FF6748 0%, #FF4136 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 6px 30px;
    border-radius: 48px 0 0 0;
    width: fit-content;
    box-shadow: 0 4px 10px rgba(255, 103, 72, 0.2); 
    align-items: center;  
    position: relative;
    left: 30px;
}

.map-checkin-btn-wrapper {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    padding: 8px 12px;
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0;;
    justify-content: flex-end;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(226,232,240,0.8);
    border-top-left-radius: 100px;
}

.map-checkin-btn {
    background: linear-gradient(135deg, #FF8A50 0%, #FF6748 100%);
    border: none;
    border-radius: 50px;
    color: white;
    padding: 15px;
    font-size: 0.82rem;
    font-weight: 800;
    display: flex;
    margin-bottom: -20px;
    align-items: center;
    top: 10px;
    left: 20px;
    position: relative;;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(255, 103, 72, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.map-checkin-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(255, 103, 72, 0.4);
}

.map-checkin-btn .checkin-grid-icon {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

.map-checkin-btn .grid-dot {
    width: 3px;
    height: 3px;
    background: white;
    border-radius: 50%;
}

.map-checkin-btn-wrapper .point-text {
    font-size: 0.62rem;
    font-weight: 800;
    color: #64748B;
    text-align: right;
    margin-top: 2px;
    margin-left: 10px;
    display: inline-block;
}

/* Map bottom navigation bar */
.map-bottom-tabbar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 44px;
    background: white;
    border-top: 1px solid #E2E8F0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 2px 0 6px 0;
    z-index: 10;
}

.map-bottom-tabbar .tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #94A3B8;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
    gap: 1px;
    font-weight: 700;
}

.map-bottom-tabbar .tab-item span {
    font-size: 0.5rem;
}

.map-bottom-tabbar .tab-item.active {
    color: var(--primary);
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes chick-bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-4px); }
}

@keyframes wing-flap-left {
    0% { transform: rotate(-20deg); }
    100% { transform: rotate(-40deg); }
}

@keyframes wing-flap-right {
    0% { transform: rotate(20deg); }
    100% { transform: rotate(40deg); }
}

@keyframes siren-pulse {
    0% { transform: scale(1); filter: brightness(1); }
    100% { transform: scale(1.1); filter: brightness(1.2) drop-shadow(0 0 8px rgba(239, 68, 68, 0.8)); }
}

/* ==========================================================================
   PREMIUM REWARD GIFT SHOP MOCKUP
   ========================================================================== */
.reward-shop-screen {
    background: #F8FAFC;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 36px 10px 48px 10px;
    font-family: 'Inter', 'Outfit', 'Kanit', sans-serif;
}

/* Top Balance Card */
.shop-balance-card {
    background: white;
    border-radius: 16px;
    padding: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.8);
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.balance-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Laurel Star Badge */
.balance-star-badge {
    width: 38px;
    height: 38px;
    background: radial-gradient(circle, #FFFBEB 0%, #FEF3C7 100%);
    border: 2px solid #F59E0B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F59E0B;
    font-size: 1.1rem;
    box-shadow: 0 2px 6px rgba(245, 158, 11, 0.2);
}

/* Diamond Gem Badge */
.balance-gem-badge {
    width: 38px;
    height: 38px;
    background: radial-gradient(circle, #ECFDF5 0%, #D1FAE5 100%);
    border: 2px solid #3B82F6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3B82F6;
    font-size: 1.1rem;
    box-shadow: 0 2px 6px rgba(59, 130, 246, 0.2);
}

.balance-details {
    display: flex;
    flex-direction: column;
}

.balance-title {
    font-size: 0.82rem;
    font-weight: 800;
}

.orange-text {
    color: #EA580C;
}

.blue-text {
    color: #2563EB;
}

.balance-sub {
    font-size: 0.6rem;
    font-weight: 600;
}

.yellow-text {
    color: #D97706;
}

.gray-text {
    color: #64748B;
}

.italic {
    font-style: italic;
}

.divider-line {
    height: 1px;
    background: #E2E8F0;
    width: 100%;
}

/* Scrollable rewards list */
.shop-rewards-list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 6px;
}

.shop-rewards-list::-webkit-scrollbar {
    display: none;
}

/* Reward item card */
.shop-reward-item {
    background: white;
    border-radius: 12px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.5);
    min-height: 64px;
}

.reward-thumb-box {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.reward-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-available {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #10B981;
    color: white;
    font-size: 0.45rem;
    font-weight: 800;
    text-align: center;
    padding: 1px 0;
}

.reward-info-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.badge-qty {
    background: #F1F5F9;
    color: #64748B;
    font-size: 0.52rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 4px;
    width: fit-content;
}

.reward-desc {
    font-size: 0.56rem;
    font-weight: 700;
    color: #334155;
    line-height: 1.2;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.reward-points-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #F59E0B;
    font-size: 0.85rem;
    width: 44px;
    flex-shrink: 0;
    gap: 1px;
}

.points-val {
    font-size: 0.68rem;
    font-weight: 800;
    color: #EA580C;
}

/* Pagination bar */
.shop-pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
    border-radius: 12px;
    padding: 6px 12px;
    margin-top: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.pag-btn {
    font-size: 0.62rem;
    font-weight: 800;
    cursor: pointer;
}

.pag-btn.disabled {
    color: #CBD5E1;
    cursor: not-allowed;
}

.pag-btn.active {
    color: #EA580C;
}

.pag-numbers {
    display: flex;
    gap: 6px;
}

.pag-num {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    font-weight: 800;
    cursor: pointer;
}

.pag-num.active {
    background: #EA580C;
    color: white;
}

.pag-num:not(.active) {
    background: #FFEDD5;
    color: #EA580C;
}

/* Bottom Nav bar */
.shop-bottom-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 48px;
    background: white;
    border-top: 1px solid #E2E8F0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 4px 0 8px 0;
    z-index: 10;
}

.shop-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #94A3B8;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    gap: 1px;
}

.shop-bottom-nav .nav-item span {
    font-size: 0.5rem;
    font-weight: 700;
}

.shop-bottom-nav .nav-item.active {
    color: #EA580C;
}

/* ===== DYNAMIC NAVBAR COLOR CONTRAST RULES ===== */
/* Logo and navigation links when navbar is NOT scrolled on inner pages */
.navbar-dark:not(.scrolled) .logo {
    color: #FFFFFF !important;
}

.navbar-dark:not(.scrolled) .nav-links a {
    color: rgba(255, 255, 255, 0.75) !important;
}

.navbar-dark:not(.scrolled) .nav-links a:hover,
.navbar-dark:not(.scrolled) .nav-links a.active {
    color: var(--primary) !important;
}

.navbar-dark:not(.scrolled) .lang-pill {
    color: rgba(255, 255, 255, 0.85) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
}

.navbar-dark:not(.scrolled) .mobile-menu-toggle {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: #FFFFFF !important;
}


