/* ================================================================
   YOULAN TRADING — style.css  (HERO SECTION REPLACEMENT BLOCK)
   Replace the old "HERO SECTION" block entirely with this section.
   All other CSS rules in your file remain unchanged.
   ================================================================ */

/* ===== GLOBAL (unchanged, kept for reference) ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Outfit', sans-serif;
    background-color: #fefaf5;
    overflow-x: hidden;
}
.text-accent { color: #ff6b35; }
.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}
.section-title .dot {
    color: #ff6b35;
    font-size: 4rem;
    line-height: 0;
}

/* ===== NAVBAR (unchanged) ===== */
#creativeNav {
    background: #000000cc !important;
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    padding: 0.8rem 0;
}
#creativeNav.navbar-scrolled {
    background: #000000 !important;
    padding: 0.4rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.navbar-brand {
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -1px;
    color: white !important;
    transition: transform 0.2s ease;
}
.navbar-brand:hover {
    transform: scale(1.02);
    color: #ff6b35 !important;
}
.brand-icon {
    color: #ff6b35;
    margin-right: 5px;
    transition: transform 0.2s ease;
}
.navbar-brand:hover .brand-icon { transform: rotate(5deg); }
.brand-sub { font-weight: 400; font-size: 0.8rem; }
.nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 0.8rem;
    position: relative;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}
.nav-link:hover {
    color: #ff6b35 !important;
    transform: translateY(-2px);
}
.nav-link.active, .nav-link:active { color: #ff6b35 !important; }
.nav-link.active::after, .nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ff6b35;
    animation: slideIn 0.3s ease forwards;
}
@keyframes slideIn {
    from { width: 0; opacity: 0; }
    to   { width: 100%; opacity: 1; }
}
.navbar-collapse {
    background: #000000cc;
    padding: 1rem;
    border-radius: 20px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.navbar-collapse.show { animation: fadeInMenu 0.3s ease; }
@keyframes fadeInMenu {
    from { opacity: 0; transform: translateY(-10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.navbar-toggler {
    border: none !important;
    background: transparent !important;
    padding: 0;
}
.custom-toggler-icon {
    font-size: 1.8rem;
    color: white;
    transition: all 0.2s ease;
}
.navbar-toggler:hover .custom-toggler-icon {
    color: #ff6b35;
    transform: rotate(90deg);
}
@media (max-width: 991px) {
    .navbar-collapse {
        margin-top: 1rem;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    .nav-link { padding: 0.6rem 0; margin: 0; }
    .nav-link:hover { transform: translateX(5px); }
}


/* ================================================================
   ===== HERO SECTION — FULL REPLACEMENT =====
   ================================================================ */

/* Hero shell */
.yl-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: #07090e;
}

/* Background image layer */
.yl-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    transform: scale(1.03);
    z-index: 0;
    filter: brightness(0.75) saturate(1.1);
    transition: transform 8s ease-out;
}

/* Dark gradient overlay — strong left, fades right & bottom */
.yl-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(100deg,
            rgba(4, 6, 12, 0.88) 0%,
            rgba(4, 6, 12, 0.60) 55%,
            rgba(4, 6, 12, 0.20) 100%),
        linear-gradient(180deg,
            rgba(4, 6, 12, 0.0) 50%,
            rgba(4, 6, 12, 0.85) 100%);
}

/* Content area */
.yl-hero__body {
    position: relative;
    z-index: 2;
    padding-top: 7rem;
    padding-bottom: 4rem;
}

/* Entrance animation */
.yl-badge--anim {
    opacity: 0;
    transform: translateY(22px);
    animation: ylFadeUp 0.75s cubic-bezier(.22,.68,0,1.2) forwards;
    animation-delay: var(--delay, 0s);
}
@keyframes ylFadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Award recognition badge */
.yl-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    background: rgba(255, 107, 53, 0.15);
    border: 1px solid rgba(255, 107, 53, 0.35);
    color: #ffb899;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.38rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.6rem;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.yl-badge__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #ff6b35;
    box-shadow: 0 0 0 0 rgba(255,107,53,0.6);
    animation: ylPulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes ylPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,107,53,0.5); }
    50%       { box-shadow: 0 0 0 6px rgba(255,107,53,0); }
}

/* Main headline */
.yl-hero__heading {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 1.4rem;
}
.yl-hero__heading em {
    font-style: normal;
    color: #ff6b35;
    position: relative;
    display: inline-block;
}
.yl-hero__heading em::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #ff6b35, transparent);
    border-radius: 2px;
    opacity: 0.6;
}

/* Sub-headline */
.yl-hero__sub {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    color: rgba(255,255,255,0.72);
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 2.2rem;
    font-weight: 400;
}

/* Stats row */
.yl-stats {
    display: flex;
    align-items: center;
    margin-bottom: 2.4rem;
    flex-wrap: wrap;
    row-gap: 1rem;
}
.yl-stats__item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    padding: 0 1.5rem;
}
.yl-stats__item:first-child { padding-left: 0; }
.yl-stats__num {
    font-size: 1.95rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.03em;
}
.yl-stats__label {
    font-size: 0.73rem;
    font-weight: 500;
    color: rgba(255,255,255,0.48);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    white-space: nowrap;
}
.yl-stats__divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    flex-shrink: 0;
}

/* CTA buttons */
.yl-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.yl-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.72rem 1.6rem;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.01em;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.yl-btn:hover { transform: translateY(-2px); text-decoration: none; }
.yl-btn--primary {
    background: #ff6b35;
    color: #ffffff;
    box-shadow: 0 4px 22px rgba(255,107,53,0.40);
}
.yl-btn--primary:hover {
    background: #ff7d4d;
    box-shadow: 0 8px 28px rgba(255,107,53,0.52);
    color: #ffffff;
}
.yl-btn--ghost {
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.9);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.yl-btn--ghost:hover {
    background: rgba(255,255,255,0.15);
    color: #ffffff;
    border-color: rgba(255,255,255,0.4);
}
.yl-btn--wa {
    background: #25d366;
    color: #ffffff;
    box-shadow: 0 4px 18px rgba(37,211,102,0.35);
}
.yl-btn--wa:hover {
    background: #1ebe5d;
    box-shadow: 0 8px 24px rgba(37,211,102,0.45);
    color: #ffffff;
}

/* Ticker / partner strip */
.yl-ticker {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border-top: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
    height: 46px;
}
.yl-ticker__label {
    flex-shrink: 0;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    padding: 0 1.4rem;
    border-right: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
    height: 100%;
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.25);
}
.yl-ticker__track-wrap {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    height: 100%;
}
.yl-ticker__track {
    display: flex;
    align-items: center;
    animation: ylTicker 40s linear infinite;
    white-space: nowrap;
}
.yl-ticker__track:hover { animation-play-state: paused; }
.yl-ticker__item {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
    padding: 0 2rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    height: 46px;
    transition: color 0.2s;
    gap: 0.4rem;
    letter-spacing: 0.01em;
}
.yl-ticker__item:hover { color: rgba(255,255,255,0.9); }
@keyframes ylTicker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Parallax helper class (applied via JS) */
.yl-hero__bg.is-parallax { will-change: transform; }

/* Responsive */
@media (max-width: 991px) {
    .yl-hero { min-height: 75vh; }
    .yl-hero__body { padding-top: 6rem; padding-bottom: 2rem; }
    .yl-ticker__label { display: none; }
}
@media (max-width: 575px) {
    .yl-hero { min-height: 88vh; }
    .yl-hero__body { padding-top: 5.5rem; }
    .yl-stats__num { font-size: 1.6rem; }
    .yl-stats__item { padding: 0 1rem; }
    .yl-btn { padding: 0.65rem 1.3rem; font-size: 0.85rem; }
    .yl-hero__sub { font-size: 0.9rem; }
    .yl-ticker { height: 40px; }
    .yl-ticker__item { font-size: 0.72rem; padding: 0 1.2rem; height: 40px; }
}


/* ================================================================
   ===== BELOW: all your other existing CSS sections unchanged =====
   ================================================================ */

/* ===== SERVICES DIAGONAL ===== */
.services-diagonal {
    padding: 80px 0;
    background: #fefaf5;
}
.service-diagonal-card {
    background-size: cover;
    background-position: center;
    border-radius: 32px;
    overflow: hidden;
    min-height: 320px;
    position: relative;
    transition: all 0.4s;
}
.service-diagonal-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
}
.service-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.service-icon-card {
    background: white;
    border-radius: 28px;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 20px 35px rgba(0,0,0,0.05);
    transition: 0.2s;
}
.service-icon-card:hover { transform: translateY(-8px); }
.service-icon-card i { font-size: 2.5rem; color: #ff6b35; margin-bottom: 1rem; }

/* ===== TESTIMONIALS ===== */
.testimonials-full {
    background: #0a0c10;
    padding: 100px 0;
    color: white;
}
.testi-quote {
    font-size: 1.3rem;
    padding: 2rem 0;
}
.testi-quote i { color: #ff6b35; font-size: 2rem; margin-bottom: 1rem; }

/* ===== TRACK SECTION ===== */
.track-section {
    padding: 80px 0;
    background: #ffffff;
}
.map-placeholder {
    background: #f0f2f5;
    border-radius: 48px;
    padding: 3rem;
    text-align: center;
    color: #ff6b35;
}

/* ===== WHY US CREATIVE ===== */
.why-creative {
    background: linear-gradient(120deg, #fefaf5, #fff4ed);
    padding: 80px 0;
}
.why-number {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255,107,53,0.2);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* ===== CONTACT SPLIT ===== */
.contact-split { padding: 80px 0; }
.contact-info {
    background: #1a1f2a;
    color: white;
    border-radius: 24px 0 0 24px;
}
.contact-info li { margin-bottom: 1rem; }
.contact-info i { width: 30px; color: #ff6b35; }

/* ===== FOOTER ===== */
.creative-footer {
    background: #0a0c10;
    color: #aaa;
    padding: 3rem 0;
}
.social-icons a {
    color: white;
    font-size: 1.5rem;
    margin: 0 0.8rem;
    transition: 0.2s;
}
.social-icons a:hover { color: #ff6b35; }

/* ===== CHATBOT ===== */
#chat-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
}
#chat-toggle {
    background: #ff6b35;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    color: white;
    font-size: 26px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.chat-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 300px;
    background: white;
    border-radius: 24px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 20px 35px rgba(0,0,0,0.2);
}
.chat-header {
    background: #1a1f2a;
    color: white;
    padding: 12px;
    display: flex;
    justify-content: space-between;
}
.chat-body {
    height: 250px;
    overflow-y: auto;
    padding: 12px;
    background: #f9f9f9;
}
.bot-msg, .user-msg {
    max-width: 85%;
    margin-bottom: 8px;
    padding: 8px 12px;
    border-radius: 18px;
}
.bot-msg { background: #e9ecef; align-self: flex-start; }
.user-msg { background: #ff6b35; color: white; margin-left: auto; }
.chat-footer { display: flex; border-top: 1px solid #ddd; }
.chat-footer input { flex: 1; border: none; padding: 10px; }
.chat-footer button { background: #ff6b35; border: none; color: white; padding: 0 15px; }