/* ==========================================
   JBP Digital Hub - Premium Light Styles
   Theme: Luxurious Light / Warm Off-White + Gold & Slate
   ========================================== */

:root {
    color-scheme: light !important;
    --bg-main: #f8f7f4;          /* Soft luxury off-white background matching brand logo canvas */
    --bg-darker: #ffffff;        /* Pure white for section contrast & cards */
    --bg-card: #ffffff;          /* Pure white card backgrounds */
    --bg-card-hover: #f3efe6;    /* Subtle golden cream hover state */
    --text-main: #1e2631;        /* Rich dark slate / charcoal text */
    --text-muted: #5c6675;       /* Medium slate grey for readable secondary text */
    --gold: #b8860b;             /* Rich metallic gold tuned for optimal contrast */
    --gold-hover: #946b06;       /* Deeper gold for hover states */
    --gold-light: rgba(184, 134, 11, 0.08);
    --gold-mid: rgba(184, 134, 11, 0.22);
    --border-color: #e2ded4;     /* Soft warm border color */
    --border-gold: rgba(184, 134, 11, 0.35);
    --shadow: 0 10px 30px rgba(30, 38, 49, 0.05);
    --shadow-hover: 0 16px 40px rgba(184, 134, 11, 0.15);
}

/* Force light theme regardless of OS dark mode setting */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: light !important;
        --bg-main: #f8f7f4 !important;
        --bg-darker: #ffffff !important;
        --bg-card: #ffffff !important;
        --bg-card-hover: #f3efe6 !important;
        --text-main: #1e2631 !important;
        --text-muted: #5c6675 !important;
        --gold: #b8860b !important;
        --border-color: #e2ded4 !important;
    }
    html, body {
        background-color: #f8f7f4 !important;
        color: #1e2631 !important;
    }
}

/* RESET & BASE */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main) !important;
    color: var(--text-main) !important;
    color-scheme: light !important;
}

body {
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-main) !important;
    color: var(--text-main) !important;
}

a { text-decoration: none; color: inherit; transition: all 0.15s ease; }
ul { list-style: none; }
img { max-width: 100%; }

/* UTILITIES */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 90px 0; }
.bg-darker { background-color: var(--bg-darker); }
.gold { color: var(--gold); }
.gold-text { color: var(--gold); font-weight: 600; }
.text-center { text-align: center; }
.mb-3 { margin-bottom: 1rem; }
.mt-2 { margin-top: 0.5rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

.section-pre {
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 700;
}

.section-title h2 {
    font-size: 2.6rem;
    margin-bottom: 12px;
    font-weight: 800;
    color: var(--text-main);
}

.underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 20px;
    border-radius: 2px;
}

.subtitle-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* PARTICLE BACKGROUND */
.particles {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    15% { opacity: 0.6; }
    85% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1.5); }
}

/* BUTTONS - FAST & RESPONSIVE */
.btn-primary, .btn-secondary, .btn-primary-sm, .btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.15s ease-out;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #c59b27, #9b720d);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(184, 134, 11, 0.25);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #d8ac32, #b8860b);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(184, 134, 11, 0.4);
}

.btn-glow {
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.3);
    animation: glowPulse 1.2s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 15px rgba(184, 134, 11, 0.3); }
    50% { box-shadow: 0 0 25px rgba(184, 134, 11, 0.6), 0 0 45px rgba(184, 134, 11, 0.2); }
}

.btn-secondary {
    background-color: #ffffff;
    color: var(--text-main);
    border: 2px solid var(--gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.btn-secondary:hover {
    background-color: var(--gold);
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-primary-sm {
    padding: 9px 22px;
    background: linear-gradient(135deg, #c59b27, #9b720d);
    color: #ffffff;
    font-size: 0.9rem;
}
.btn-primary-sm:hover { background: linear-gradient(135deg, #d8ac32, #b8860b); }

.btn-outline {
    background-color: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 9px 18px;
    font-size: 0.9rem;
    border-radius: 6px;
}
.btn-outline:hover {
    background-color: var(--gold);
    color: #ffffff;
}

.btn-block { display: flex; width: 100%; justify-content: center; }

/* HEADER - LIGHT MODE */
.header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background-color: rgba(248, 247, 244, 0.94);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    transition: all 0.15s ease;
}
.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
    gap: 12px;
}

.logo {
    display: flex;
    align-items: center;
    min-width: 0;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-wrap: nowrap;
    min-width: 0;
}

.logo-img {
    width: 42px !important;
    max-width: 42px !important;
    height: 42px !important;
    max-height: 42px !important;
    object-fit: contain !important;
    display: block;
    flex-shrink: 0;
    transition: transform 0.15s ease;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.08));
}
.logo-img:hover { transform: scale(1.08) rotate(-4deg); }

.logo-text {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-list li a {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-main);
    position: relative;
    padding-bottom: 3px;
    transition: color 0.15s ease;
}
.nav-list li a:not(.btn-primary-sm)::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.15s ease;
}
.nav-list li a:not(.btn-primary-sm):hover::after { width: 100%; }
.nav-list li a:hover:not(.btn-primary-sm) { color: var(--gold); }

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
}

/* HERO SECTION - FAST FLOATING & LIGHT MODE */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 75px;
    overflow: hidden;
    background-color: var(--bg-main);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 60px 20px;
}

/* Floating icons - Fast speed */
.hero-floats {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
}

.float-item {
    position: absolute;
    color: var(--gold);
    opacity: 0.15;
    z-index: 0;
    font-size: 2rem;
    animation: floatAnim linear infinite;
}
.float-item i { display: block; }

.float-1 { top: 15%; left: 5%;  animation-duration: 3.5s; animation-delay: 0s; }
.float-2 { top: 10%; left: 55%; animation-duration: 3s;   animation-delay: 0.4s; }
.float-3 { top: 60%; left: 8%;  animation-duration: 4s;   animation-delay: 0.8s; }
.float-4 { top: 75%; left: 45%; animation-duration: 2.8s; animation-delay: 0.2s; }
.float-5 { top: 30%; left: 90%; animation-duration: 3.8s; animation-delay: 1s; }
.float-6 { top: 80%; left: 85%; animation-duration: 3.2s; animation-delay: 0.6s; }
.float-7 { top: 50%; left: 50%; animation-duration: 4.2s; animation-delay: 1.2s; }
.float-8 { top: 20%; left: 80%; animation-duration: 2.5s; animation-delay: 1.5s; }

@keyframes floatAnim {
    0%   { transform: translateY(0px) rotate(0deg); }
    33%  { transform: translateY(-16px) rotate(6deg); }
    66%  { transform: translateY(8px) rotate(-4deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* Hero Content */
.hero-content { z-index: 2; }

/* Hero logo badge */
.hero-logo-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #ffffff;
    border: 1px solid var(--border-gold);
    border-radius: 30px;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.12);
    margin-bottom: 18px;
    animation: fadeInDown 0.3s ease 0.05s forwards;
}

.hero-logo-img {
    height: 38px !important;
    max-height: 38px !important;
    width: auto !important;
    max-width: 140px !important;
    object-fit: contain !important;
    display: block;
}

.hero-tagline {
    font-size: 0.9rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInDown 0.3s ease 0.1s forwards;
    opacity: 0;
}

.tagline-dot {
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    display: inline-block;
    animation: dotPulse 0.8s ease-in-out infinite;
}
@keyframes dotPulse {
    0%,100% { transform: scale(1); opacity:1; }
    50% { transform: scale(1.4); opacity:0.6; }
}

.hero-title {
    font-size: 3.6rem;
    line-height: 1.15;
    font-weight: 900;
    color: var(--text-main);
    margin: 18px 0 22px;
    animation: fadeInUp 0.3s ease 0.15s forwards;
    opacity: 0;
}

.gradient-text {
    background: linear-gradient(135deg, #b8860b, #d4af37, #966c05);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 2s linear infinite;
}
@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 540px;
    line-height: 1.8;
    animation: fadeInUp 0.3s ease 0.2s forwards;
    opacity: 0;
}

/* Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 0;
    background: #ffffff;
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 36px;
    box-shadow: 0 10px 30px rgba(30,38,49,0.06);
    animation: fadeInUp 0.3s ease 0.25s forwards;
    opacity: 0;
}

.stat-item { flex: 1; text-align: center; }
.stat-num {
    display: block;
    font-size: 1.9rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}
.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-top: 5px;
    font-weight: 600;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
    margin: 0 10px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
    animation: fadeInUp 0.3s ease 0.3s forwards;
    opacity: 0;
}

.we-work-with {
    animation: fadeInUp 0.3s ease 0.35s forwards;
    opacity: 0;
}

.ww-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    font-weight: 600;
}

.ww-items { display: flex; flex-wrap: wrap; gap: 10px; }
.ww-items span {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.15s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.ww-items span:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Device Mockup in Light Mode */
.hero-visual {
    position: relative;
    animation: fadeInRight 0.3s ease 0.2s forwards;
    opacity: 0;
    display: flex;
    justify-content: center;
}

.device-mockup { position: relative; width: 100%; max-width: 460px; }

.device-screen {
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(30,38,49,0.1), 0 0 0 1px #ffffff;
    animation: deviceGlow 1.5s ease-in-out infinite;
}
@keyframes deviceGlow {
    0%,100% { box-shadow: 0 20px 50px rgba(30,38,49,0.1), 0 0 15px rgba(184,134,11,0.08); }
    50% { box-shadow: 0 20px 50px rgba(30,38,49,0.12), 0 0 30px rgba(184,134,11,0.2); }
}

.screen-header {
    background: #f4f1e8;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 7px;
    border-bottom: 1px solid var(--border-color);
}
.dot { width: 11px; height: 11px; border-radius: 50%; }
.dot.red { background: #ff5f57; }
.dot.yellow { background: #febc2e; }
.dot.green { background: #28c840; }

.screen-body { padding: 20px; background: #ffffff; }

.screen-nav {
    height: 8px;
    background: #e5e0d3;
    border-radius: 4px;
    margin-bottom: 20px;
}

.screen-hero-block {
    background: linear-gradient(135deg, #faf7f0, #f0ede4);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 16px;
}

.sb-line { height: 10px; border-radius: 5px; margin-bottom: 10px; }
.sb-title { background: linear-gradient(90deg, var(--gold), #966c05); width: 80%; }
.sb-subtitle { background: #dcd6c8; width: 60%; }

.sb-btn-row { display: flex; gap: 10px; margin-top: 15px; }
.sb-btn { height: 28px; border-radius: 5px; flex: 1; }
.sb-btn.gold-bg { background: linear-gradient(90deg, var(--gold), #966c05); animation: shimmer 1.2s linear infinite; }
@keyframes shimmer { 0% { opacity: 1; } 50% { opacity: 0.75; } 100% { opacity: 1; } }
.sb-btn.outline-btn { border: 1px solid var(--gold); background: transparent; }

.screen-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.sc-card {
    background: #fdfbf7;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.sc-icon { color: var(--gold); font-size: 1.4rem; }
.sc-lines { flex: 1; }
.sc-line { height: 7px; background: #e5e0d3; border-radius: 3px; margin-bottom: 6px; }
.sc-line.short { width: 60%; }

/* Phone mockup */
.phone-mockup {
    position: absolute;
    bottom: -20px;
    right: -30px;
    width: 100px;
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(30,38,49,0.12);
    animation: phoneFloat 2s ease-in-out infinite;
}
@keyframes phoneFloat {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.phone-screen { padding: 12px; background: #ffffff; }
.ps-bar { height: 6px; background: #e5e0d3; border-radius: 3px; margin-bottom: 12px; }
.ps-content { text-align: center; }
.ps-line { height: 6px; background: #e5e0d3; border-radius: 3px; margin-bottom: 6px; }
.ps-line.short { width: 60%; margin: 0 auto 10px; }
.ps-icon { font-size: 1.8rem; margin-top: 5px; color: var(--gold); }

.device-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(184,134,11,0.12) 0%, transparent 70%);
    z-index: -1;
    border-radius: 50%;
    animation: glowPulse 1.8s ease-in-out infinite;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    animation: fadeInUp 0.3s ease 0.4s forwards;
    opacity: 0;
}

.scroll-mouse {
    width: 26px; height: 40px;
    border: 2px solid var(--gold);
    border-radius: 13px;
    margin: 0 auto 8px;
    position: relative;
    opacity: 0.8;
}
.scroll-wheel {
    width: 4px; height: 8px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.2s ease infinite;
}
@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}
.scroll-indicator p {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Keyframe helpers */
@keyframes fadeInDown { from { opacity:0; transform: translateY(-15px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeInUp   { from { opacity:0; transform: translateY(20px); }  to { opacity:1; transform: translateY(0); } }
@keyframes fadeInRight{ from { opacity:0; transform: translateX(30px); }  to { opacity:1; transform: translateX(0); } }
@keyframes fadeInLeft { from { opacity:0; transform: translateX(-30px); } to { opacity:1; transform: translateX(0); } }

/* SCROLL REVEAL ANIMATIONS - FAST */
.reveal-up {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: var(--delay, 0s);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-25px);
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right {
    opacity: 0;
    transform: translateX(25px);
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.visible, .reveal-left.visible, .reveal-right.visible {
    opacity: 1;
    transform: none;
}

/* ABOUT SECTION */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.85;
}
.mission-box {
    background: linear-gradient(135deg, #ffffff, #f7f4ec);
    padding: 28px;
    border-left: 4px solid var(--gold);
    border-radius: 0 12px 12px 0;
    margin-top: 28px;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.03);
    border-top: 1px solid var(--border-color);
    border-right: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.mission-box h3 {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    color: var(--text-main);
}

.poster-tagline { display: flex; gap: 20px; flex-wrap: wrap; }
.pt-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
}

.about-team { display: flex; flex-direction: column; gap: 20px; }

.team-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.15s ease-out;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.team-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.15s ease;
}
.team-card:hover::before { transform: scaleX(1); }
.team-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.team-avatar {
    width: 70px; height: 70px;
    background: var(--gold-light);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 16px;
    border: 2px solid var(--border-gold);
    font-size: 1.8rem;
}
.team-card h3 { font-size: 1.2rem; margin-bottom: 4px; color: var(--text-main); }
.team-card .role { color: var(--gold); font-weight: 600; font-size: 0.9rem; margin-bottom: 10px; }
.team-card .team-desc { color: var(--text-muted); font-size: 0.88rem; }

/* SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.service-card {
    background: #ffffff;
    padding: 36px 28px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    transition: all 0.15s ease-out;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(184,134,11,0.05), transparent);
    opacity: 0;
    transition: opacity 0.15s;
}
.service-card:hover::after { opacity: 1; }
.service-card:hover {
    border-color: var(--border-gold);
    box-shadow: var(--shadow-hover);
    transform: translateY(-6px);
}

.service-card-featured {
    border-color: var(--border-gold);
    background: linear-gradient(135deg, #ffffff, #fcf9f2);
}

.featured-badge {
    position: absolute;
    top: 18px; right: 18px;
    background: linear-gradient(135deg, #c59b27, #9b720d);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

.service-icon-wrap { margin-bottom: 22px; }

.service-icon {
    width: 66px; height: 66px;
    background: var(--gold-light);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    position: relative;
    transition: all 0.15s ease;
}
.service-card:hover .service-icon {
    background: linear-gradient(135deg, #c59b27, #9b720d);
    color: #ffffff;
    transform: rotate(-6deg) scale(1.05);
}

.service-icon-badge {
    position: absolute;
    top: -6px; right: -6px;
    width: 22px; height: 22px;
    background: #ffffff;
    border: 1px solid var(--gold);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.6rem;
}

.service-card h3 { font-size: 1.25rem; margin-bottom: 6px; color: var(--text-main); }
.service-desc { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 18px; font-style: italic; }

.service-list li {
    margin-bottom: 10px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.93rem;
}

.service-footer {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

/* WHY CHOOSE US */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-top: 44px;
}

.feature-item {
    background: #ffffff;
    padding: 18px 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
    font-size: 0.93rem;
    color: var(--text-main);
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: all 0.15s ease;
}
.feature-item:hover {
    border-color: var(--border-gold);
    background: #fdfbf7;
    transform: translateX(4px);
}
.feature-item .gold { font-size: 1.5rem; }

/* PROCESS TIMELINE */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 50px auto 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0; left: 28px;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), transparent);
}

.timeline-item {
    position: relative;
    padding-left: 72px;
    margin-bottom: 40px;
}
.timeline-item:last-child { margin-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: 0; top: 0;
    width: 56px; height: 56px;
    background: linear-gradient(135deg, #c59b27, #9b720d);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    border: 3px solid #ffffff;
    box-shadow: 0 4px 20px rgba(184,134,11,0.3);
    transition: all 0.15s ease;
}
.timeline-item:hover .timeline-dot {
    transform: scale(1.08);
    box-shadow: 0 6px 25px rgba(184,134,11,0.5);
}

.timeline-content {
    background: #ffffff;
    padding: 22px 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: all 0.15s ease;
}
.timeline-content:hover {
    border-color: var(--border-gold);
    transform: translateY(-2px);
}
.timeline-content h3 {
    color: var(--gold);
    margin-bottom: 6px;
    font-size: 1.08rem;
    font-weight: 700;
}
.timeline-content p { color: var(--text-muted); font-size: 0.92rem; }

/* PORTFOLIO */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 28px;
    margin-top: 10px;
}

.portfolio-card {
    background: #ffffff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: all 0.15s ease-out;
}
.portfolio-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.portfolio-content { padding: 30px; }
.portfolio-content h3 { margin-bottom: 14px; font-size: 1.3rem; color: var(--text-main); }
.portfolio-content p { color: var(--text-muted); margin-bottom: 8px; font-size: 0.92rem; }
.portfolio-content .desc {
    margin: 18px 0;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
}

/* CONTACT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 44px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 26px;
}
.contact-item .icon {
    width: 48px; height: 48px;
    background: var(--gold-light);
    color: var(--gold);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.contact-item h4 { margin-bottom: 4px; font-size: 0.95rem; color: var(--text-main); font-weight: 700; }
.contact-item p, .contact-item a { color: var(--text-muted); font-size: 0.92rem; }
.contact-item a:hover { color: var(--gold); }

.social-links { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
.social-links a {
    width: 42px; height: 42px;
    background: #ffffff;
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    transition: all 0.15s ease;
    font-size: 1.2rem;
}
.social-links a:hover {
    background: var(--gold);
    color: #ffffff;
    transform: translateY(-3px);
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 600;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,134,11,0.15);
    background: #ffffff;
}

/* FOOTER - LIGHT MODE */
.footer {
    border-top: 1px solid var(--border-color);
    background: #ffffff;
    padding: 50px 0 24px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 14px;
}
.footer-logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.08));
}
.footer-logo .logo-text { font-size: 1.3rem; display: block; margin-bottom: 2px; color: var(--text-main); }
.footer-logo p { color: var(--text-muted); font-size: 0.8rem; font-style: italic; }

.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; font-weight: 500; transition: color 0.15s; }
.footer-links a:hover { color: var(--gold); }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 38px; height: 38px;
    background: var(--bg-main);
    color: var(--text-muted);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--border-color);
    transition: all 0.15s ease;
    font-size: 1.1rem;
}
.footer-social a:hover { background: var(--gold); color: #ffffff; transform: translateY(-2px); }

.footer-bottom { text-align: center; }
.footer-bottom p { color: var(--text-muted); font-size: 0.85rem; }
.footer-tagline { margin-top: 6px; font-size: 0.9rem !important; color: var(--gold) !important; font-weight: 600; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
        padding: 40px 20px;
    }
    .hero-content { max-width: 100%; }
    .hero-tagline { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-btns { justify-content: center; }
    .ww-items { justify-content: center; }
    .hero-logo-badge { justify-content: center; }
    .hero-visual { justify-content: center; }
    .device-mockup { max-width: 360px; }
    .hero-title { font-size: 3rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .section { padding: 60px 0; }
    .container { padding: 0 16px; }
    .section-title h2 { font-size: 1.95rem; }
    .subtitle-text { font-size: 1rem; margin-bottom: 36px; }

    .header .container { height: 65px; padding: 0 16px; }
    .logo-link { gap: 8px; }
    .logo-img { width: 34px; height: 34px; }
    .logo-text { font-size: 1.05rem; max-width: 180px; }

    .nav-list {
        position: fixed;
        top: 65px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 65px);
        background-color: rgba(248, 247, 244, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 30px 0;
        gap: 10px;
        transition: left 0.2s ease;
        z-index: 1001;
        overflow-y: auto;
        border-top: 1px solid var(--border-gold);
    }
    .nav-list.active { left: 0; }
    .nav-list li { width: 100%; text-align: center; }
    .nav-list li a { font-size: 1.1rem; padding: 14px 20px; display: inline-block; width: 100%; }
    .hamburger { display: block; }

    .hero-title { font-size: 2.4rem; }
    .hero-desc { font-size: 1rem; }
    .hero-btns { flex-direction: column; gap: 12px; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }

    .hero-stats { flex-direction: column; gap: 16px; padding: 20px; }
    .stat-divider { width: 60px; height: 1px; }

    .hero-visual { display: none; }
    .scroll-indicator { display: none; }
    .float-item { opacity: 0.1; font-size: 1.5rem; }

    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }

    .timeline::before { left: 20px; }
    .timeline-dot { width: 44px; height: 44px; font-size: 1.2rem; }
    .timeline-item { padding-left: 58px; }

    .contact-form { padding: 24px; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
    .footer-links { gap: 16px; }
    .poster-tagline { justify-content: center; }
    .team-card { padding: 22px; }
    .phone-mockup { display: none; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.9rem; }
    .features-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .stat-num { font-size: 1.5rem; }
    .logo-text { font-size: 0.95rem; max-width: 140px; }
    .contact-grid { gap: 30px; }
    .section-title h2 { font-size: 1.7rem; }
    .btn-primary, .btn-secondary { padding: 12px 20px; font-size: 0.93rem; }
}

/* ==========================================
   LOGO ANIMATED PRELOADER & OFFLINE OVERLAY
   ========================================== */
.preloader-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #f8f7f4;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.25s ease-out, visibility 0.25s ease-out;
}

.preloader-overlay.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    max-width: 420px;
}

.preloader-logo-wrap {
    position: relative;
    width: 110px;
    height: 110px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.preloader-logo {
    width: 75px;
    height: 75px;
    object-fit: contain;
    z-index: 2;
    animation: preloaderPulse 1.2s ease-in-out infinite alternate;
    filter: drop-shadow(0 4px 15px rgba(184, 134, 11, 0.3));
}

@keyframes preloaderPulse {
    0% { transform: scale(0.95); opacity: 0.9; }
    100% { transform: scale(1.08); opacity: 1; }
}

.preloader-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--gold);
    border-bottom-color: var(--gold);
    animation: spinRing 0.9s linear infinite;
    box-shadow: 0 0 15px rgba(184, 134, 11, 0.2);
}

@keyframes spinRing {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.preloader-glow {
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(184, 134, 11, 0.25) 0%, transparent 70%);
    animation: glowPulse 1.2s ease-in-out infinite;
    z-index: 0;
}

.preloader-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
    letter-spacing: 0.5px;
}

.preloader-dots {
    display: flex;
    gap: 4px;
}

.preloader-dots span {
    width: 5px;
    height: 5px;
    background-color: var(--gold);
    border-radius: 50%;
    display: inline-block;
    animation: dotBounce 0.8s infinite ease-in-out alternate;
}

.preloader-dots span:nth-child(2) { animation-delay: 0.2s; }
.preloader-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dotBounce {
    0% { transform: translateY(0); opacity: 0.3; }
    100% { transform: translateY(-5px); opacity: 1; }
}

.offline-box {
    background: #ffffff;
    border: 1px solid var(--border-gold);
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 10px 30px rgba(30, 38, 49, 0.08);
    animation: fadeInUp 0.25s ease-out forwards;
}

.offline-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 1px solid rgba(231, 76, 60, 0.25);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.online-badge {
    background: rgba(39, 174, 96, 0.1);
    color: #27ae60;
    border-color: rgba(39, 174, 96, 0.25);
}

.offline-box p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 12px;
    line-height: 1.5;
}
