/**
 * Orient Brands Ltd – Main Stylesheet v2.0
 * Child of Twenty Twenty-Five
 */

/* ── CSS Variables ─────────────────────────────────────────────────────────── */
:root {
    --orange:      #E87722;
    --orange-dark: #c9660f;
    --black:       #111111;
    --dark:        #1a1a1a;
    --white:       #ffffff;
    --gray:        #f5f5f5;
    --text-muted:  #777777;
}

/* ── Reset & Base ──────────────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html  { scroll-behavior: smooth; }
body  {
    font-family: 'Barlow', sans-serif;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
}

/* Kill Twenty Twenty-Five's own layout on our homepage */
.orientbrands-home .wp-site-blocks { display: none !important; }
.orientbrands-home { margin: 0 !important; padding: 0 !important; }



/* ── NAV ───────────────────────────────────────────────────────────────────── */
#site-nav {
    background: var(--white);
    border-bottom: 1px solid #eee;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 2px 8px rgba(0,0,0,.06);
    transition: box-shadow .3s;
}
#site-nav.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,.12); }

a.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    padding: 12px 0;
}
.site-logo-img   { max-height: 52px; width: auto; display: block; }
.footer-logo-img { max-height: 48px; width: auto; display: block; }

.logo-icon {
    width: 44px; height: 44px;
    background: var(--orange);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 900;
    font-size: 20px;
    color: white;
    letter-spacing: -1px;
    flex-shrink: 0;
}
.logo-text { line-height: 1.15; }
.logo-text strong {
    display: block;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--black);
}
.logo-text span { font-size: 11px; color: var(--text-muted); letter-spacing: 1.5px; text-transform: uppercase; }

/* Nav links */
ul.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
ul.nav-links li { display: inline-block; }
ul.nav-links li a {
    display: inline-block;
    padding: 8px 14px;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .5px;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    border-bottom: 3px solid transparent;
    transition: color .2s, border-color .2s;
}
ul.nav-links li a:hover,
ul.nav-links li.current-menu-item > a,
ul.nav-links li.current_page_item > a {
    color: var(--orange);
    border-bottom-color: var(--orange);
}

/* ── DROPDOWN / MEGA MENU ──────────────────────────────────────────────────── */
ul.nav-links li { position: relative; }

/* Hide all sub-menus by default */
ul.nav-links li .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 9999;
    background: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,.13);
    border-top: 3px solid var(--orange);
    min-width: 220px;
    list-style: none;
    margin: 0;
    padding: 12px 0;
}

/* Show on hover */
ul.nav-links li:hover > .sub-menu,
ul.nav-links li:focus-within > .sub-menu {
    display: block;
}

/* Simple single-level dropdown items */
ul.nav-links li .sub-menu li {
    display: block;
    width: 100%;
}
ul.nav-links li .sub-menu li a {
    display: block;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    text-transform: none;
    letter-spacing: 0;
    border-bottom: none;
    white-space: nowrap;
}
ul.nav-links li .sub-menu li a:hover {
    color: var(--orange);
    background: #f9f5f0;
    border-bottom: none;
}

/* ── MEGA MENU (Products & Services — multi-column panel) ──────────────────── */
ul.nav-links li.menu-item-has-children:nth-child(2) > .sub-menu,
ul.nav-links li.mega-menu > .sub-menu {
    left: 0;
    width: 1100px;
    max-width: 96vw;
    display: none;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
    padding: 24px 8px 16px;
    overflow: visible;
    max-height: none;
}
ul.nav-links li.menu-item-has-children:nth-child(2):hover > .sub-menu,
ul.nav-links li.menu-item-has-children:nth-child(2):focus-within > .sub-menu,
ul.nav-links li.mega-menu:hover > .sub-menu,
ul.nav-links li.mega-menu:focus-within > .sub-menu {
    display: flex;
}

/* Each category column */
ul.nav-links .sub-menu li.menu-item-has-children {
    flex: 0 0 auto;
    width: calc(100% / 4);
    max-height: none;
    min-width: 160px;
    padding-bottom: 12px;
    vertical-align: top;
}

/* Category header label */
ul.nav-links .sub-menu li.menu-item-has-children > a {
    display: block;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--orange) !important;
    padding: 4px 16px 8px !important;
    cursor: default;
    pointer-events: none;
    border-bottom: 1px solid #f0ebe4 !important;
    background: none !important;
    margin-bottom: 4px;
    white-space: nowrap;
}

/* Sub-items inside each column */
ul.nav-links .sub-menu li.menu-item-has-children .sub-menu {
    position: static !important;
    display: block !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0 !important;
    min-width: 0 !important;
    background: transparent !important;
    width: 100% !important;
}
ul.nav-links .sub-menu li.menu-item-has-children .sub-menu li {
    width: 100%;
}
ul.nav-links .sub-menu li.menu-item-has-children .sub-menu li a {
    padding: 4px 16px !important;
    font-size: 12.5px;
    color: #555;
    white-space: normal;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 500;
}
ul.nav-links .sub-menu li.menu-item-has-children .sub-menu li a:hover {
    color: var(--orange) !important;
    background: #fdf6f0 !important;
}

/* View All link at bottom */
.mega-menu-view-all {
    width: 100% !important;
    border-top: 1px solid #f0ebe4;
    margin-top: 8px;
    padding-top: 8px !important;
}
.mega-menu-view-all a {
    color: var(--orange) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 8px 16px !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
}

/* ── MOBILE: hide dropdowns, show as flat list ─────────────────────────────── */
@media (max-width: 900px) {
    ul.nav-links li .sub-menu,
    ul.nav-links .sub-menu li.menu-item-has-children .sub-menu {
        position: static;
        display: none !important;
        box-shadow: none;
        border: none;
        background: #f9f9f9;
        padding: 0;
    }
    ul.nav-links li.nav-open > .sub-menu {
        display: block !important;
    }
    ul.nav-links .sub-menu li a {
        padding: 8px 36px;
        font-size: 13px;
    }
    ul.nav-links .sub-menu li.menu-item-has-children > a {
        padding: 10px 24px 4px;
        pointer-events: auto;
        cursor: pointer;
    }
    ul.nav-links .sub-menu li.menu-item-has-children .sub-menu {
        display: block !important;
    }
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--black);
    border-radius: 2px;
    transition: all .25s;
}

/* ── BUTTONS ───────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
}
.btn-primary  { background: var(--orange);  color: white; border-color: var(--orange); }
.btn-primary:hover  { background: var(--orange-dark); border-color: var(--orange-dark); color: white; }
.btn-outline  { background: transparent; color: white; border-color: rgba(255,255,255,.5); }
.btn-outline:hover  { background: white; color: var(--black); border-color: white; }
.btn-dark     { background: var(--black); color: white; border-color: var(--black); }
.btn-dark:hover     { background: #333; border-color: #333; color: white; }
.btn-whatsapp { background: #25D366; color: white; border-color: #25D366; }
.btn-whatsapp:hover { background: #1fba59; border-color: #1fba59; color: white; }

.btn-sm {
    display: block;
    width: 100%;
    text-align: center;
    padding: 9px;
    background: var(--orange);
    color: white;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s;
}
.btn-sm:hover { background: var(--orange-dark); color: white; }

/* ── SECTION LABEL ─────────────────────────────────────────────────────────── */
.section-label {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 36px;
}
.section-label::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--orange);
    margin-top: 8px;
}
.trusted .section-label,
.why .section-label { text-align: center; }
.trusted .section-label::after,
.why .section-label::after { margin: 8px auto 0; }

/* ── HERO ──────────────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 88vh;
    background-color: #0d0d0d;
    background-image: var(--hero-bg, none);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(100deg, rgba(10,10,10,.55) 40%, rgba(10,10,10,.2) 100%);
    z-index: 0;
}
.hero-content {
    position: relative;
    padding: 80px 40px;
    max-width: 720px;
    z-index: 1;
}
.hero-badge {
    display: inline-block;
    background: var(--orange);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 2px;
    margin-bottom: 24px;
    animation: fadeUp .6s ease both;
}
.hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(52px, 8vw, 86px);
    font-weight: 900;
    line-height: .95;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: -1px;
    animation: fadeUp .7s .1s ease both;
}
.hero h1 .accent { color: var(--orange); }
.hero-sub {
    margin-top: 20px;
    color: #bbb;
    font-size: 17px;
    max-width: 480px;
    line-height: 1.6;
    animation: fadeUp .7s .2s ease both;
}
.hero-btns {
    margin-top: 36px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeUp .7s .3s ease both;
}

/* ── CATEGORIES ────────────────────────────────────────────────────────────── */
.categories { background: white; padding: 60px 40px; }
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}
.cat-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
    color: inherit;
    display: block;
}
.cat-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,.12); }
.cat-img { height: 180px; background: var(--gray); overflow: hidden; }
.cat-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; display: block; }
.cat-card:hover .cat-img img { transform: scale(1.06); }
.cat-img-placeholder {
    display: flex; align-items: center; justify-content: center;
    height: 100%; font-size: 52px; background: var(--gray);
}
.cat-body { padding: 18px 20px 22px; }
.cat-icon {
    width: 38px; height: 38px;
    background: var(--orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 10px;
    font-size: 18px;
}
.cat-body h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 6px;
    color: var(--black);
}
.cat-body p { font-size: 13.5px; color: var(--text-muted); line-height: 1.5; }

/* ── TRUSTED ───────────────────────────────────────────────────────────────── */
.trusted { background: var(--gray); padding: 50px 40px; text-align: center; }
.logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}
.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #555;
    letter-spacing: 1px;
    border: 1px solid #ddd;
    padding: 14px 28px;
    border-radius: 6px;
    background: white;
    text-decoration: none;
    transition: border-color .2s, color .2s, box-shadow .2s;
    min-width: 140px;
    min-height: 70px;
}
.logo-item:hover { border-color: var(--orange); color: var(--orange); box-shadow: 0 4px 14px rgba(232,119,34,.15); }
.logo-item img { max-height: 52px; max-width: 160px; object-fit: contain; display: block; }

/* ── FEATURED PRODUCTS ─────────────────────────────────────────────────────── */
.products { padding: 70px 40px; background: white; }
.products-header { max-width: 1200px; margin: 0 auto; }
.products-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.product-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.product-img {
    height: 160px;
    background: var(--gray);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}
.product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.product-img-placeholder { font-size: 48px; }
.product-body { padding: 14px 16px 18px; }
.product-body h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 2px;
}
.product-body .sub { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }

/* ── WHY CHOOSE ────────────────────────────────────────────────────────────── */
.why { background: var(--dark); padding: 70px 40px; text-align: center; }
.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
}
.why-item { color: white; padding: 10px; }
.why-icon {
    width: 56px; height: 56px;
    border: 2px solid var(--orange);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin: 0 auto 14px;
    color: var(--orange);
}
.why-item h4 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 8px;
}
.why-item p { font-size: 13px; color: #aaa; line-height: 1.5; }

/* ── ABOUT ─────────────────────────────────────────────────────────────────── */
.about { padding: 70px 40px; background: white; }
.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.about-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}
.about h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(38px, 5vw, 56px);
    font-weight: 900;
    line-height: .95;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.about h2 span { color: var(--orange); }
.about p { color: #555; line-height: 1.7; margin-bottom: 20px; font-size: 15px; }
.about-imgs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 12px;
    height: 420px;
}
.about-imgs .img-main { grid-row: 1 / 3; border-radius: 8px; overflow: hidden; background: var(--gray); }
.about-imgs .img-sm   { border-radius: 8px; overflow: hidden; background: var(--gray); }
.about-imgs img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; color: #ccc; background: var(--gray);
}

/* ── CTA BAR ───────────────────────────────────────────────────────────────── */
.cta-bar {
    background: var(--orange);
    padding: 36px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.cta-bar-left { display: flex; align-items: center; gap: 20px; }
.cta-bar-left .phone-icon {
    width: 52px; height: 52px;
    background: rgba(255,255,255,.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.cta-bar-left h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    color: white;
    letter-spacing: .5px;
}
.cta-bar-left p { color: rgba(255,255,255,.85); font-size: 14px; }
.cta-bar-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── FOOTER ────────────────────────────────────────────────────────────────── */
#site-footer {
    background: var(--black);
    color: #aaa;
    padding: 60px 40px 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.5fr 1.5fr 1.5fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo .logo-icon { flex-shrink: 0; }
.footer-logo .logo-text strong { color: white; }
#site-footer p { font-size: 13px; line-height: 1.7; }
#site-footer h5 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: white;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}
#site-footer ul { list-style: none; margin: 0; padding: 0; }
#site-footer ul li { margin-bottom: 8px; }
#site-footer ul li a { color: #888; font-size: 13px; text-decoration: none; transition: color .2s; }
#site-footer ul li a:hover { color: var(--orange); }
.footer-contact p { display: flex; gap: 8px; margin-bottom: 8px; font-size: 13px; }
.footer-contact a { color: #888; text-decoration: none; transition: color .2s; }
.footer-contact a:hover { color: var(--orange); }
.footer-hours p { font-size: 13px; margin-bottom: 6px; }
.footer-hours strong { color: white; display: block; margin-bottom: 2px; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
    width: 32px; height: 32px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #888;
    font-size: 13px;
    text-decoration: none;
    transition: border-color .2s, color .2s;
}
.footer-social a:hover { border-color: var(--orange); color: var(--orange); }
.footer-bottom {
    border-top: 1px solid #222;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #555;
    max-width: 1200px;
    margin: 0 auto;
}

/* ── ANIMATIONS ────────────────────────────────────────────────────────────── */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid      { grid-template-columns: repeat(3, 1fr); }
    .footer-grid   { grid-template-columns: 1fr 1fr; gap: 30px; }
}

@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    ul.nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: white;
        flex-direction: column;
        padding: 12px 0 20px;
        box-shadow: 0 8px 24px rgba(0,0,0,.1);
        z-index: 9998;
    }
    ul.nav-links.nav-open { display: flex; }
    ul.nav-links li { display: block; width: 100%; }
    ul.nav-links li a { display: block; padding: 10px 24px; border-bottom: none; }
}

@media (max-width: 768px) {
    #site-nav  { padding: 0 20px; }
    .hero-content { padding: 60px 20px; }
    .categories, .products, .why, .about,
    .trusted, .cta-bar, #site-footer { padding-left: 20px; padding-right: 20px; }
    .cat-grid      { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid      { grid-template-columns: repeat(2, 1fr); }
    .about-inner   { grid-template-columns: 1fr; }
    .about-imgs    { height: 280px; }
    .cta-bar       { flex-direction: column; }
    .footer-grid   { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .cat-grid      { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
    .why-grid      { grid-template-columns: 1fr; }
    .hero-btns     { flex-direction: column; }
    .cta-bar-btns  { flex-direction: column; width: 100%; }
    .cta-bar-btns .btn { width: 100%; justify-content: center; }
}

/* ══ HERO SLIDER ══════════════════════════════════════════════════════════════ */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 560px;
    overflow: hidden;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-image: var(--slide-bg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.9s ease;
    z-index: 0;
}
.hero-slide.active {
    opacity: 1;
    z-index: 1;
}
.hero-slide .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10,10,10,.60) 40%, rgba(10,10,10,.25) 100%);
    z-index: 0;
}
.hero-slide .hero-content {
    position: relative;
    z-index: 1;
    padding: 0 40px;
    max-width: 720px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-slide .hero-badge {
    display: inline-block;
    background: var(--orange);
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 2px;
    margin-bottom: 20px;
}
.hero-slide h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin: 0 0 16px;
    text-transform: uppercase;
}
.hero-slide h1 .accent { color: var(--orange); }
.hero-slide .hero-sub {
    color: rgba(255,255,255,.85);
    font-size: 1.05rem;
    max-width: 520px;
    margin: 0 0 28px;
    line-height: 1.6;
}
.hero-slide .hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255,255,255,.15);
    border: 2px solid rgba(255,255,255,.4);
    color: #fff;
    font-size: 1.3rem;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    cursor: pointer;
    transition: background .2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-arrow:hover { background: var(--orange); border-color: var(--orange); }
.hero-prev { left: 20px; }
.hero-next { right: 20px; }

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.45);
    border: none;
    cursor: pointer;
    transition: background .2s, transform .2s;
    padding: 0;
}
.hero-dot.active {
    background: var(--orange);
    transform: scale(1.3);
}

@media (max-width: 600px) {
    .hero-slide .hero-content { padding: 0 20px; }
    .hero-arrow { display: none; }
}
