:root {
    --dawana-navy: #0F2A4A;
    --dawana-deep: #073B59;
    --dawana-gold: #E8A93C;
    --dawana-gold-dark: #D9861F;
    --dawana-gold-glow: rgba(232, 169, 60, 0.28);
    --dawana-cream: #FFF8EB;
    --dawana-mist: #EAF8FA;
    --dawana-muted: #6D8296;
    --dawana-line: #DDE8EE;
    --dawana-line-warm: #EEE6D8;
    --dawana-success: #10B981;
    --dawana-shadow-sm: 0 4px 14px rgba(15, 42, 74, .05);
    --dawana-shadow-md: 0 12px 32px rgba(15, 42, 74, .08);
    --dawana-shadow: 0 18px 45px rgba(15, 42, 74, .11);
    --dawana-shadow-lg: 0 26px 65px rgba(15, 42, 74, .14);
}

[x-cloak] {
    display: none !important;
}

body {
    color: var(--dawana-navy);
}

.site-title-tagline {
    color: var(--dawana-gold) !important;
}

.header .main-navigation {
    position: relative;
    z-index: 20;
}

/* top utility bar */
.header-top {
    min-height: 34px;
    padding: 6px 0;
    background: var(--dawana-navy);
    border-top: 0;
    border-bottom: 2px solid var(--dawana-gold);
}

.header-top-list li,
.header-top-list li a,
.header-top-social,
.header-top-social span,
.header-top-social a {
    line-height: 1;
}

.header-top .row {
    align-items: center;
}

.header-top-list li {
    border-right: 0;
    padding: 0;
    font-size: 13px;
}

.header-top-social {
    display: flex;
    align-items: center;
    gap: 14px;
}

.header-top-social span {
    color: #8fa0b3;
    font-weight: 600;
}

.header-top-social a {
    margin: 0;
    color: #cfd9e4;
    transition: color .2s ease;
}

.header-top-social a:hover,
.header-top-social a:hover i {
    color: var(--dawana-gold);
}

.header-top-list li .header-top-social a i {
    margin: 0;
}

.header-top-right {
    display: flex;
    justify-content: flex-end;
}

.header-top-right .header-top-list li a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #cfd9e4;
    font-weight: 600;
}

.header-top-right .header-top-list li a:hover,
.header-top-right .header-top-list li a.active {
    color: var(--dawana-gold);
}

/* main navbar */
.header .navbar {
    background: #fff;
    padding-block: 10px;
    border-bottom: 1px solid var(--dawana-line-warm);
}

.header .navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    padding: 6px 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, #16345A, #0A1F38);
}

.logo-badge img {
    height: 100%;
    width: auto;
    object-fit: contain;
}

.logo-badge--sm {
    height: 38px;
    padding: 5px 10px;
}

.header .offcanvas-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .main-menu {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 28px;
}

.header .main-menu .item-anchor {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cat-chevron {
    font-size: 10px;
    transition: transform .2s ease;
}

.cat-chevron.is-open {
    transform: rotate(180deg);
}

.header .main-menu .menu-item-has-children:hover .cat-chevron,
.header .main-menu .menu-item-has-children:focus-within .cat-chevron {
    transform: rotate(180deg);
}

.header .main-menu>li>a {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    color: var(--dawana-navy);
    font-weight: 600;
    transition: color .25s ease;
}

.header .main-menu>li>a::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: 2px;
    left: 0;
    height: 2px;
    background: var(--dawana-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .25s ease;
}

.header .main-menu>li>a:hover,
.header .main-menu>li>a:focus-visible,
.header .main-menu>li>a.is-active {
    color: var(--dawana-gold);
}

.header .main-menu>li>a:hover::after,
.header .main-menu>li>a:focus-visible::after,
.header .main-menu>li>a.is-active::after {
    transform: scaleX(1);
}

.header .user_profile {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header .user_profile li .list-item {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dawana-navy);
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
}

/* icon-only actions: cart, wishlist, notifications */
.header .user_profile .list-item-icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 1.5px solid var(--dawana-line);
    border-radius: 50%;
    background: #fff;
    color: var(--dawana-navy);
    font-size: 18px;
    line-height: 1;
    transition: background .25s ease, border-color .25s ease, color .25s ease;
}

.header .user_profile li .list-item:hover .list-item-icon,
.header .user_profile li .list-item:focus-visible .list-item-icon {
    background: var(--dawana-mist);
    border-color: var(--dawana-gold);
}

.header .user_profile .list-item-icon span {
    position: absolute;
    top: -4px;
    inset-inline-end: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    line-height: 18px;
    background: var(--dawana-gold);
    color: var(--dawana-navy);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    text-align: center;
}

/* account: icon + name pill, distinct from the plain icon actions */
.header .user_profile li .list-item.account-link {
    padding-inline-end: 14px;
    border: 1.5px solid var(--dawana-line);
    border-radius: 26px;
    background: #fff;
    transition: background .25s ease, border-color .25s ease;
}

.header .user_profile li .list-item.account-link:hover,
.header .user_profile li .list-item.account-link:focus-visible {
    background: var(--dawana-mist);
    border-color: var(--dawana-navy);
}

.header .user_profile li .list-item.account-link .list-item-icon {
    border-color: transparent;
    background: var(--dawana-mist);
    color: var(--dawana-gold);
    font-size: 20px;
}

.header .user_profile .list-item-info {
    display: block;
    max-width: 120px;
}

.header .user_profile .list-item-info h6 {
    margin: 0;
    color: var(--dawana-navy);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.header .main-menu .sub-menu,
.header .user_profile .sub-menu {
    border: 1px solid var(--dawana-line-warm);
    border-radius: 14px;
    box-shadow: var(--dawana-shadow);
    opacity: 0;
    transform: translateY(8px);
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.header .main-menu .menu-item-has-children:hover>.sub-menu,
.header .main-menu .menu-item-has-children:focus-within>.sub-menu,
.header .user_profile .dropdown-link:hover>.sub-menu,
.header .user_profile .dropdown-link:focus-within>.sub-menu {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.header .main-menu .sub-menu a,
.header .user_profile .sub-menu a {
    display: block;
    border-radius: 6px;
    text-decoration: none;
    transition: background .2s ease, color .2s ease, padding .2s ease;
}

.header .main-menu .sub-menu a:hover,
.header .main-menu .sub-menu a:focus-visible,
.header .user_profile .sub-menu a:hover,
.header .user_profile .sub-menu a:focus-visible {
    background: var(--dawana-mist);
    color: var(--dawana-deep);
    padding-inline-start: 18px;
}

.header .user_profile .sub-menu {
    width: 210px;
    padding: 8px;
}

.header .user_profile .sub-menu li {
    text-align: start;
}

.header .user_profile .sub-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: flex-start;
    color: var(--dawana-navy);
    font-weight: 600;
}

.header .user_profile .sub-menu a i {
    width: 18px;
    font-size: 15px;
    color: var(--dawana-gold);
    text-align: center;
    flex-shrink: 0;
}

.header .user_profile .sub-menu a:hover i,
.header .user_profile .sub-menu a:focus-visible i {
    color: var(--dawana-navy);
}

.header .user_profile .sub-menu li:last-child a {
    margin-top: 4px;
    border-top: 1px solid var(--dawana-line-warm);
    padding-top: 12px;
    color: #C0392B;
}

.header .user_profile .sub-menu li:last-child a i {
    color: #C0392B;
}

/* categories dropdown: icon rows */
.header .main-menu .categories-menu {
    padding: 10px;
}

.header .main-menu .categories-menu li+li {
    margin-top: 4px;
}

.header .main-menu .categories-menu a {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 10px 12px;
    justify-content: flex-start;
    text-align: start;
    border-radius: 10px;
    font-weight: 600;
}

.cat-menu-icon {
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(232, 169, 60, .14);
}

.categories-menu li:nth-child(2) .cat-menu-icon {
    background: rgba(224, 105, 148, .14);
}

.categories-menu li:nth-child(3) .cat-menu-icon {
    background: rgba(108, 99, 214, .12);
}

.cat-menu-icon img {
    width: 22px;
    height: 22px;
}

.cat-menu-label {
    font-size: 14px;
}

@media (min-width: 992px) {
    .header .main-menu .categories-menu {
        width: 300px;
        inset-inline-start: 0;
        left: auto;
    }

    .header .main-menu .categories-menu a {
        color: var(--dawana-navy);
    }
}

/* Footer Section */
.dawana-footer {
    background: var(--dawana-navy);
    color: #fff;
}

.dawana-footer .footer-items {
    padding: 48px 0 36px;
}

.dawana-footer .footer-brand {
    max-width: 280px;
    color: #b9c9d8;
    line-height: 1.8;
}

.dawana-footer .footer-title {
    margin-bottom: 14px;
    color: #fff;
    font-size: 16px;
}

.dawana-footer .footer-links {
    display: grid;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.dawana-footer .footer-links a,
.dawana-footer .footer-contact a {
    color: #b9c9d8;
    text-decoration: none;
    transition: color .2s ease, padding .2s ease;
}

.dawana-footer .footer-links a:hover,
.dawana-footer .footer-contact a:hover {
    padding-inline-start: 6px;
    color: var(--dawana-gold);
}

.dawana-footer .footer-contact {
    display: grid;
    gap: 10px;
    color: #b9c9d8;
}

.dawana-footer .footer-contact i {
    width: 22px;
    color: var(--dawana-gold);
}

.dawana-footer .footer-social a {
    background: rgba(255, 255, 255, .1);
}

.dawana-footer .copyright {
    margin-top: 0 !important;
    background: var(--dawana-gold);
}

/* Mobile Menu Navigation */
@media (max-width: 991px) {
    .header .navbar {
        padding: 10px 0;
    }

    .header .offcanvas {
        width: min(88vw, 360px);
        background: var(--dawana-navy);
    }

    .header .offcanvas-header {
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .header .offcanvas .btn-close {
        filter: invert(1);
        opacity: 1;
    }

    .header .offcanvas-body {
        padding: 22px 20px;
    }

    .header .main-menu {
        display: grid;
        gap: 4px;
    }

    .header .main-menu>li>a {
        width: 100%;
        min-height: 48px;
        padding: 8px 0;
        color: #fff;
    }

    .header .main-menu>li>a:hover,
    .header .main-menu>li>a:focus-visible,
    .header .main-menu>li>a.is-active {
        color: var(--dawana-gold);
    }

    .header .main-menu>li>a::after {
        right: auto;
        left: 0;
        width: 34px;
        transform-origin: left;
    }

    .header .main-menu .sub-menu {
        position: static;
        display: block;
        max-height: 0;
        overflow: hidden;
        padding: 0 12px;
        border: 0;
        box-shadow: none;
        opacity: 1;
        transform: none;
        visibility: visible;
        background: rgba(255, 255, 255, .06);
        transition: max-height .25s ease, padding .25s ease;
    }

    .header .main-menu .menu-item-has-children:hover>.sub-menu,
    .header .main-menu .menu-item-has-children:focus-within>.sub-menu {
        max-height: 400px;
        padding-block: 8px;
    }

    .header .main-menu .sub-menu a {
        color: #dbe8f1;
        padding: 8px 0;
    }

    .header .user_profile {
        display: grid;
        gap: 10px;
        margin-top: 18px;
        padding-top: 18px;
        border-top: 1px solid rgba(255, 255, 255, .12);
    }

    .header .user_profile li .list-item {
        color: #fff;
    }

    .header .user_profile li .list-item:not(.account-link) {
        justify-content: center;
    }

    .header .user_profile .list-item-icon {
        background: rgba(255, 255, 255, .06);
        border-color: rgba(255, 255, 255, .25);
        color: #fff;
    }

    .header .user_profile li .list-item:hover .list-item-icon,
    .header .user_profile li .list-item:focus-visible .list-item-icon {
        background: rgba(255, 255, 255, .14);
        border-color: var(--dawana-gold);
    }

    .header .user_profile li .list-item.account-link {
        justify-content: flex-start;
        padding: 6px 14px 6px 6px;
        border-color: rgba(255, 255, 255, .25);
        background: transparent;
    }

    .header .user_profile li .list-item.account-link:hover,
    .header .user_profile li .list-item.account-link:focus-visible {
        background: rgba(255, 255, 255, .08);
        border-color: var(--dawana-gold);
    }

    .header .user_profile li .list-item.account-link .list-item-icon {
        background: rgba(255, 255, 255, .1);
        color: var(--dawana-gold);
    }

    .header .user_profile .list-item-info {
        max-width: none;
    }
}

@media (max-width: 575px) {
    .dawana-footer .footer-items {
        padding: 48px 0 28px;
    }
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }

    .dawana-reveal,
    .cat-card-reveal,
    .feature-category-img {
        opacity: 1;
        transform: none;
    }
}

/* ==========================================================================
   BUTTON SYSTEM & MICRO-INTERACTIONS
   ========================================================================== */
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.dawana-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 52px;
    padding: 13px 26px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
}

.dawana-btn i {
    font-size: 14px;
    transition: transform .28s ease;
}

.dawana-btn:hover {
    transform: translateY(-3px);
}

.dawana-btn-primary {
    background: linear-gradient(135deg, #E8A93C 0%, #D9861F 100%);
    color: var(--dawana-navy);
    box-shadow: 0 10px 24px rgba(232, 169, 60, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.dawana-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
    transform: skewX(-25deg);
    transition: all .6s ease;
}

.dawana-btn-primary:hover::before {
    left: 180%;
}

.dawana-btn-primary:hover {
    background: linear-gradient(135deg, #0F2A4A 0%, #073B59 100%);
    color: #fff;
    box-shadow: 0 14px 30px rgba(15, 42, 74, 0.28);
}

.dawana-btn-ghost {
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(15, 42, 74, 0.16);
    color: var(--dawana-navy);
    box-shadow: 0 4px 14px rgba(15, 42, 74, 0.04);
}

.dawana-btn-ghost:hover {
    background: #fff;
    border-color: var(--dawana-navy);
    color: var(--dawana-navy);
    box-shadow: 0 10px 25px rgba(15, 42, 74, 0.09);
}

/* Direction-aware hover translation for button arrows */
[dir="rtl"] .dawana-btn:hover i {
    transform: translateX(-4px);
}

[dir="ltr"] .dawana-btn:hover i {
    transform: translateX(4px);
}

/* ==========================================================================
   HERO SECTION & SHOWCASE SLIDER
   ========================================================================== */
.dawana-hero {
    position: relative;
    overflow: hidden;
    padding: 50px 0 85px;
    background: radial-gradient(circle at 88% 18%, rgba(232, 169, 60, 0.11) 0%, transparent 45%),
        radial-gradient(circle at 12% 82%, rgba(7, 59, 89, 0.08) 0%, transparent 50%),
        #F8FAFD;
    border-bottom: 1px solid var(--dawana-line);
}

.dawana-hero .container {
    max-width: 1320px;
}

/* Ambient glowing orbs */
.hero-ambient-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(40px);
}

.hero-ambient-orb-1 {
    top: -120px;
    inset-inline-end: -80px;
    width: 440px;
    height: 440px;
    background: radial-gradient(circle, rgba(232, 169, 60, 0.18) 0%, transparent 70%);
    animation: dawana-pulse-glow 7s ease-in-out infinite alternate;
}

.hero-ambient-orb-2 {
    bottom: -100px;
    inset-inline-start: -60px;
    width: 460px;
    height: 460px;
    background: radial-gradient(circle, rgba(7, 59, 89, 0.14) 0%, transparent 70%);
    animation: dawana-pulse-glow 9s 2s ease-in-out infinite alternate;
}

.hero-ambient-orb-3 {
    top: 30%;
    inset-inline-start: 45%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    animation: dawana-pulse-glow 8s 1s ease-in-out infinite alternate;
}

/* Hero Carousel Structure */
.dawana-hero .hero-slider {
    position: relative;
    z-index: 2;
}

.dawana-hero .hero-single {
    padding: 20px 0 35px;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.dawana-hero .hero-content {
    max-width: 580px;
    position: relative;
    z-index: 5;
}

.dawana-hero .hero-sub-title {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 9px 20px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid rgba(232, 169, 60, 0.35);
    box-shadow: 0 6px 20px rgba(232, 169, 60, 0.12);
    color: var(--dawana-navy) !important;
    font-size: 13.5px !important;
    font-weight: 800;
}

.dawana-hero .hero-sub-title i {
    color: var(--dawana-gold);
    font-size: 14px;
    animation: dawana-pulse-glow 2.5s infinite;
}

.dawana-hero .hero-title {
    margin: 0 0 20px;
    color: var(--dawana-navy);
    font-size: clamp(30px, 3.4vw, 48px);
    line-height: 1.32;
    font-weight: 800;
    letter-spacing: -0.4px;
}

.dawana-hero .hero-title strong,
.dawana-hero .hero-title span {
    color: #D9861F;
    background: linear-gradient(135deg, #E8A93C 0%, #D9861F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dawana-hero .hero-copy {
    max-width: 530px;
    margin-bottom: 0;
    color: #435971;
    font-size: 16.5px;
    line-height: 1.88;
}

.dawana-hero .hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(15, 42, 74, 0.08);
}

.dawana-hero .hero-proof span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    font-weight: 700;
    color: #2B425B;
}

.dawana-hero .hero-proof i {
    color: var(--dawana-success);
    font-size: 15px;
}

.dawana-hero .hero-proof i.fa-bolt {
    color: var(--dawana-gold);
}

/* Hero Visual 3D Showcase */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    width: 100%;
}

.hero-stage-card {
    position: absolute;
    width: 86%;
    height: 86%;
    border-radius: 40px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.85), rgba(234, 248, 250, 0.55));
    border: 1.5px solid rgba(255, 255, 255, 0.95);
    box-shadow: 0 25px 60px rgba(15, 42, 74, 0.07);
    backdrop-filter: blur(12px);
    z-index: 1;
}

.hero-stage-ring {
    position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    border: 2px dashed rgba(232, 169, 60, 0.32);
    z-index: 2;
    pointer-events: none;
    animation: dawana-spin-slow 45s linear infinite;
}

.hero-aura {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 169, 60, 0.22) 0%, rgba(7, 59, 89, 0.14) 55%, transparent 75%);
    filter: blur(35px);
    z-index: 2;
    pointer-events: none;
    animation: dawana-pulse-glow 6s ease-in-out infinite alternate;
}

.hero-img-wrap {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hero-3d-img {
    max-width: 88%;
    max-height: 390px;
    object-fit: contain;
    filter: drop-shadow(0 25px 35px rgba(15, 42, 74, 0.17));
    animation: dawana-levitate 5s ease-in-out infinite;
    transition: transform .4s ease, filter .4s ease;
}

.hero-visual:hover .hero-3d-img {
    transform: scale(1.03) translateY(-8px);
    filter: drop-shadow(0 30px 45px rgba(232, 169, 60, 0.25));
}

/* Floating interactive badges */
.float-badge {
    position: absolute;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    border: 1.5px solid rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 34px rgba(15, 42, 74, 0.11);
    color: var(--dawana-navy);
    white-space: nowrap;
    animation: dawana-float 5s ease-in-out infinite;
    transition: transform .3s ease, box-shadow .3s ease;
}

.float-badge:hover {
    transform: scale(1.06) !important;
    box-shadow: 0 18px 40px rgba(15, 42, 74, 0.16);
}

.float-badge .badge-icon {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--dawana-mist);
    color: var(--dawana-navy);
    font-size: 16px;
    flex-shrink: 0;
}

.float-badge .badge-icon.icon-gold {
    background: rgba(232, 169, 60, 0.18);
    color: #D9861F;
}

.float-badge .badge-icon.icon-success {
    background: rgba(16, 185, 129, 0.14);
    color: var(--dawana-success);
}

.float-badge .badge-text {
    display: flex;
    flex-direction: column;
    text-align: start;
    line-height: 1.3;
}

.float-badge .badge-text strong {
    font-size: 15px;
    font-weight: 800;
    color: var(--dawana-navy);
}

.float-badge .badge-text span {
    font-size: 12px;
    font-weight: 600;
    color: var(--dawana-muted);
}

.badge-top-start {
    top: 25px;
    inset-inline-start: -10px;
    animation-delay: 0s;
}

.badge-top-end {
    top: 45px;
    inset-inline-end: -10px;
    animation-delay: 1.2s;
}

.badge-bottom-center {
    bottom: 20px;
    inset-inline-start: 15%;
    animation-delay: 2.4s;
}

/* Owl Controls: Dots & Navigation */
.dawana-hero .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 36px;
    position: relative;
    z-index: 10;
}

.dawana-hero .owl-dots .owl-dot span {
    display: block;
    width: 10px;
    height: 10px;
    margin: 0;
    border-radius: 50%;
    background: rgba(15, 42, 74, 0.18);
    transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
}

.dawana-hero .owl-dots .owl-dot.active span {
    width: 34px;
    border-radius: 6px;
    background: linear-gradient(90deg, #E8A93C, #D9861F);
    box-shadow: 0 4px 14px rgba(232, 169, 60, 0.4);
}

.dawana-hero .owl-nav {
    position: absolute;
    bottom: 25px;
    inset-inline-end: 25px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dawana-hero .owl-nav button.owl-prev,
.dawana-hero .owl-nav button.owl-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 1.5px solid rgba(15, 42, 74, 0.1) !important;
    color: var(--dawana-navy) !important;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 20px rgba(15, 42, 74, 0.08);
    transition: all .3s ease !important;
    font-size: 16px !important;
    margin: 0;
}

.dawana-hero .owl-nav button.owl-prev:hover,
.dawana-hero .owl-nav button.owl-next:hover {
    background: var(--dawana-navy) !important;
    color: var(--dawana-gold) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(15, 42, 74, 0.2) !important;
}

/* ==========================================================================
   CATEGORY SECTION
   ========================================================================== */
.category-area {
    padding-top: 85px !important;
    padding-bottom: 100px !important;
    background: #fff;
}

.category-area .site-heading-inline {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 34px;
}

.category-area .site-title {
    margin: 0;
    font-size: 34px;
    font-weight: 800;
    color: var(--dawana-navy);
    position: relative;
    padding-bottom: 16px;
}

.category-area .site-title::after {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    width: 60px;
    height: 3.5px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--dawana-gold), rgba(232, 169, 60, 0.3));
}

.category-slider2 {
    direction: ltr;
    margin: 0 -10px;
}

.category-slider2 .owl-stage {
    display: flex;
}

.category-slider2 .owl-item {
    display: flex;
    padding: 10px;
}

.category-item-wrap {
    width: 100%;
    display: flex;
}

.category-item {
    width: 100%;
    text-decoration: none;
    border-radius: 20px;
    background: #fff;
    border: 1.5px solid rgba(15, 42, 74, 0.08);
    padding: 24px 22px;
    box-shadow: 0 8px 24px rgba(15, 42, 74, 0.04);
    transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.category-item:hover {
    transform: translateY(-8px);
    border-color: rgba(232, 169, 60, 0.55);
    box-shadow: 0 20px 45px rgba(15, 42, 74, 0.12);
}

.category-info {
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
}

.category-item .icon {
    flex: 0 0 62px;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: linear-gradient(135deg, #EAF8FA 0%, #F0F9FF 100%);
    display: grid;
    place-items: center;
    transition: all .35s ease;
}

.category-item:hover .icon {
    transform: scale(1.1) rotate(-6deg);
    background: linear-gradient(135deg, rgba(232, 169, 60, 0.18) 0%, rgba(232, 169, 60, 0.3) 100%);
}

.category-item .icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.category-item .content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--dawana-navy);
    margin: 0 0 6px;
    transition: color .25s ease;
}

.category-item:hover .content h4 {
    color: #D9861F;
}

.category-action-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #8295A8;
    transition: all .25s ease;
}

[dir="rtl"] .category-item:hover .category-action-link {
    color: var(--dawana-navy);
    transform: translateX(-4px);
}

[dir="ltr"] .category-item:hover .category-action-link {
    color: var(--dawana-navy);
    transform: translateX(4px);
}

.category-slider2 .owl-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 28px;
}

.category-slider2 .owl-dots .owl-dot span {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--dawana-line);
    transition: all .3s ease;
}

.category-slider2 .owl-dots .owl-dot.active span {
    width: 28px;
    border-radius: 4px;
    background: var(--dawana-gold);
}

/* ==========================================================================
   ABOUT SECTION: "HOW DAWANA WORKS"
   ========================================================================== */
.about-area {
    padding: 90px 0;
    background: #F8FAFD;
    border-top: 1px solid var(--dawana-line);
    border-bottom: 1px solid var(--dawana-line);
    position: relative;
}

.about-img-wrapper {
    position: relative;
    border-radius: 28px;
}

.main-about-img {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 20px 50px rgba(15, 42, 74, 0.12);
    border: 4px solid #fff;
}

.about-experience-card {
    position: absolute;
    bottom: -20px;
    inset-inline-end: -15px;
    background: #fff;
    padding: 14px 22px;
    border-radius: 20px;
    box-shadow: 0 16px 36px rgba(15, 42, 74, 0.12);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid rgba(232, 169, 60, 0.3);
    z-index: 2;
    animation: dawana-float-soft 6s ease-in-out infinite;
}

.about-experience-card .exp-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(232, 169, 60, 0.18), rgba(232, 169, 60, 0.3));
    color: #D9861F;
    display: grid;
    place-items: center;
    font-size: 20px;
}

.about-experience-card .exp-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.about-experience-card .exp-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--dawana-navy);
}

.about-experience-card .exp-sub {
    font-size: 12px;
    font-weight: 600;
    color: var(--dawana-muted);
}

.about-partner-pill {
    position: absolute;
    top: 25px;
    inset-inline-start: -15px;
    background: var(--dawana-navy);
    color: #fff;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(15, 42, 74, 0.2);
    z-index: 2;
}

.about-partner-pill i {
    color: var(--dawana-gold);
}

.about-right .site-title {
    position: relative;
    padding-bottom: 16px;
    font-size: 32px;
    font-weight: 800;
    color: var(--dawana-navy);
}

.about-right .site-title::after {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    width: 60px;
    height: 3.5px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--dawana-gold), rgba(232, 169, 60, 0.3));
}

.about-description {
    font-size: 16.5px;
    line-height: 1.9;
    color: #435971;
}

.about-features-grid {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 16px;
    background: #fff;
    border: 1.5px solid rgba(15, 42, 74, 0.06);
    transition: all .3s ease;
}

[dir="rtl"] .about-feature-item:hover {
    transform: translateX(-6px);
    box-shadow: 0 12px 28px rgba(15, 42, 74, 0.07);
    border-color: rgba(232, 169, 60, 0.35);
}

[dir="ltr"] .about-feature-item:hover {
    transform: translateX(6px);
    box-shadow: 0 12px 28px rgba(15, 42, 74, 0.07);
    border-color: rgba(232, 169, 60, 0.35);
}

.about-feature-item .feature-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(232, 169, 60, 0.15) 0%, rgba(232, 169, 60, 0.28) 100%);
    color: #D9861F;
    display: grid;
    place-items: center;
    font-size: 18px;
}

.about-feature-item .feature-text strong {
    display: block;
    font-size: 15.5px;
    font-weight: 800;
    color: var(--dawana-navy);
    margin-bottom: 3px;
}

.about-feature-item .feature-text p {
    font-size: 14px;
    color: #5B7288;
    margin-bottom: 0;
    line-height: 1.6;
}

/* ==========================================================================
   CHOOSE US SECTION
   ========================================================================== */
.choose-area {
    padding: 95px 0 105px;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.choose-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 42, 74, 0.1);
}

.choose-img-wrapper img {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    transition: transform .5s ease;
}

.choose-img-wrapper:hover img {
    transform: scale(1.04);
}

.choose-img-badge {
    position: absolute;
    bottom: 18px;
    inset-inline-start: 18px;
    background: rgba(15, 42, 74, 0.92);
    backdrop-filter: blur(8px);
    color: #fff;
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(232, 169, 60, 0.35);
}

.choose-img-badge i {
    color: var(--dawana-gold);
}

.choose-header-content .site-title {
    position: relative;
    padding-bottom: 16px;
    font-size: 32px;
    font-weight: 800;
    color: var(--dawana-navy);
}

.choose-header-content .site-title::after {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    width: 60px;
    height: 3.5px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--dawana-gold), rgba(232, 169, 60, 0.3));
}

.choose-subtitle {
    font-size: 16px;
    line-height: 1.8;
    color: #5B7288;
}

.choose-item {
    position: relative;
    padding: 36px 28px;
    border-radius: 24px;
    background: #fff;
    border: 1.5px solid rgba(15, 42, 74, 0.08);
    box-shadow: 0 10px 30px rgba(15, 42, 74, 0.05);
    transition: all .35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.choose-item:hover {
    transform: translateY(-8px);
    border-color: rgba(232, 169, 60, 0.5);
    box-shadow: 0 24px 55px rgba(15, 42, 74, 0.12);
}

.choose-step-num {
    position: absolute;
    top: 18px;
    inset-inline-end: 22px;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
    color: rgba(15, 42, 74, 0.06);
    transition: all .35s ease;
    font-family: 'Montserrat', sans-serif;
}

.choose-item:hover .choose-step-num {
    color: rgba(232, 169, 60, 0.28);
    transform: scale(1.1);
}

.choose-icon {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(232, 169, 60, 0.15) 0%, rgba(232, 169, 60, 0.28) 100%);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    transition: all .35s ease;
}

.choose-item:hover .choose-icon {
    transform: rotate(-8deg) scale(1.08);
    background: var(--dawana-navy);
}

.choose-item:hover .choose-icon img {
    filter: brightness(0) invert(1);
}

.choose-info h4 {
    font-size: 19px;
    font-weight: 800;
    color: var(--dawana-navy);
    margin-bottom: 12px;
}

.choose-info p {
    font-size: 15px;
    line-height: 1.8;
    color: #5B7288;
    margin-bottom: 0;
}

/* ==========================================================================
   GLOBAL KEYFRAMES & MICRO-ANIMATIONS
   ========================================================================== */
@keyframes dawana-levitate {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-16px) rotate(1.2deg);
    }
}

@keyframes dawana-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes dawana-float-soft {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(2deg);
    }
}

@keyframes dawana-pulse-glow {
    0% {
        transform: scale(0.95);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.08);
        opacity: 0.95;
    }
}

@keyframes dawana-spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes dawana-underline-grow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

/* Reveal transition classes */
.dawana-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.dawana-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.dawana-reveal.is-visible .site-title::after {
    animation: dawana-underline-grow .6s .15s ease both;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1199px) {
    .hero-3d-img {
        max-height: 340px;
    }

    .hero-stage-ring {
        width: 380px;
        height: 380px;
    }

    .badge-top-start {
        inset-inline-start: 0;
    }

    .badge-top-end {
        inset-inline-end: 0;
    }
}

@media (max-width: 991px) {
    .dawana-hero {
        padding: 36px 0 65px;
    }

    .dawana-hero .hero-single {
        min-height: auto;
        padding: 15px 0 30px;
        text-align: center;
    }

    .dawana-hero .hero-content {
        max-width: 100%;
        margin-inline: auto;
    }

    .dawana-hero .hero-copy {
        margin-inline: auto;
    }

    .dawana-hero .hero-actions,
    .dawana-hero .hero-proof {
        justify-content: center;
    }

    .hero-visual {
        min-height: 400px;
        margin-top: 30px;
    }

    .hero-3d-img {
        max-height: 300px;
    }

    .hero-stage-ring {
        width: 320px;
        height: 320px;
    }

    .hero-stage-card {
        width: 92%;
        height: 92%;
        border-radius: 28px;
    }

    .dawana-hero .owl-nav {
        display: none;
    }

    .about-left {
        margin-bottom: 30px;
    }

    .about-experience-card {
        bottom: -10px;
        inset-inline-end: 0;
    }
}

@media (max-width: 575px) {
    .dawana-hero {
        padding: 24px 0 45px;
    }

    .dawana-hero .hero-title {
        font-size: 26px;
    }

    .dawana-hero .hero-sub-title {
        font-size: 12px !important;
        padding: 7px 14px;
    }

    .dawana-hero .hero-copy {
        font-size: 14.5px;
        line-height: 1.8;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .dawana-btn {
        width: 100%;
    }

    .hero-visual {
        min-height: 340px;
    }

    .hero-3d-img {
        max-height: 240px;
    }

    .float-badge {
        padding: 8px 14px;
        border-radius: 14px;
    }

    .float-badge .badge-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }

    .float-badge .badge-text strong {
        font-size: 13px;
    }

    .float-badge .badge-text span {
        font-size: 10.5px;
    }

    .badge-top-start {
        top: 10px;
        inset-inline-start: -5px;
    }

    .badge-top-end {
        top: 25px;
        inset-inline-end: -5px;
    }

    .badge-bottom-center {
        bottom: 10px;
        inset-inline-start: 5%;
    }

    .category-area .site-title,
    .about-right .site-title,
    .choose-header-content .site-title {
        font-size: 24px;
    }

    .about-experience-card {
        padding: 10px 16px;
        border-radius: 16px;
    }

    .about-experience-card .exp-title {
        font-size: 16px;
    }

    .about-partner-pill {
        top: 10px;
        inset-inline-start: -5px;
        font-size: 11px;
        padding: 7px 14px;
    }
}

/* ==========================================================================
   NEW HOMEPAGE SECTIONS — Featured Categories / How It Works / Why Choose / CTA
   ========================================================================== */
.dawana-section-header {
    max-width: 640px;
    margin: 0 auto 48px;
    text-align: center;
}

.dawana-section-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dawana-gold-dark);
    background: #FBEED7;
    padding: 7px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.dawana-section-header .site-title {
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--dawana-navy);
}

.dawana-section-header p {
    font-size: 15px;
    color: #5C6C7C;
    margin: 0;
    line-height: 1.8;
}

/* Featured category cards */
.cat-card-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.3s cubic-bezier(.2, .7, .3, 1), transform 1.3s cubic-bezier(.2, .7, .3, 1);
}

.cat-card-reveal.reveal-from-right {
    transform: translateX(70px);
}

.cat-card-reveal.reveal-from-left {
    transform: translateX(-70px);
}

.cat-card-reveal.is-visible {
    opacity: 1;
    transform: translate(0, 0);
}

.feature-category-card {
    background: #fff;
    border: 1px solid var(--dawana-line-warm);
    border-radius: 22px;
    padding: 22px;
    height: 100%;
    box-shadow: var(--dawana-shadow-sm);
    text-decoration: none;
    transition: transform .3s cubic-bezier(.2, .7, .3, 1), box-shadow .3s ease, border-color .3s ease;
}

.feature-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 48px rgba(15, 42, 74, .14);
    border-color: rgba(232, 169, 60, .4);
}

.feature-category-card .feature-category-img {
    width: 100%;
    height: 210px;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 18px;
    perspective: 600px;
    transform: scale(1.08);
    transition: transform .7s cubic-bezier(.2, .7, .3, 1);
}

.cat-card-reveal.is-visible .feature-category-img {
    transform: scale(1);
}

.feature-category-card .feature-category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.feature-category-card:hover .feature-category-img img {
    transform: scale(1.05);
}

.feature-category-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--dawana-navy);
    margin: 0 0 6px;
}

.feature-category-card p {
    font-size: 13px;
    color: #7A8794;
    line-height: 1.7;
    margin: 0;
}

/* How Dawana Works (dark) */
.dawana-how-it-works {
    position: relative;
    overflow: hidden;
    padding: 96px 0;
    background: linear-gradient(160deg, #0F2A4A 0%, #132F52 55%, #0A1F38 100%);
}

.dawana-how-it-works::before {
    content: '';
    position: absolute;
    top: -120px;
    inset-inline-end: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, #FFD479 0%, transparent 70%);
    opacity: .18;
    pointer-events: none;
}

.dawana-how-it-works .badge-pill {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dawana-navy);
    background: linear-gradient(135deg, #FFD479, #EEAA3C);
    padding: 7px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.dawana-how-it-works h2 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 20px;
    line-height: 1.5;
    max-width: 520px;
}

.dawana-how-it-works p {
    font-size: 16px;
    line-height: 1.95;
    color: #C7D3DE;
    max-width: 520px;
    margin: 0;
}

.how-it-works-feature {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 22px 26px;
    margin-bottom: 18px;
    opacity: 0;
    translate: 0 24px;
    transition: transform .25s ease, background .25s ease, opacity .6s cubic-bezier(.2, .7, .3, 1), translate .6s cubic-bezier(.2, .7, .3, 1);
}

.how-it-works-feature.is-visible {
    opacity: 1;
    translate: 0 0;
}

.how-it-works-feature:last-child {
    margin-bottom: 0;
}

.how-it-works-feature:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .09);
}

.how-it-works-feature .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 22px;
    color: var(--dawana-gold);
    transition: transform .3s ease, background .3s ease;
}

.how-it-works-feature:hover .icon {
    transform: translateY(-4px) rotate(-4deg);
    background: var(--dawana-gold);
    color: var(--dawana-navy);
}

.how-it-works-feature strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.how-it-works-feature span {
    font-size: 13px;
    color: #AEBCCB;
    line-height: 1.7;
}

/* Why choose Dawana (plain centered icon columns) */
.dawana-why-choose {
    padding: 96px 0;
}

.why-choose-item {
    text-align: center;
    padding: 0 12px;
}

.why-choose-item .icon-circle {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: #DFEFF4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 32px;
    color: var(--dawana-navy);
    transition: transform .3s ease, background .3s ease;
}

.why-choose-item:hover .icon-circle {
    transform: translateY(-6px) rotate(-4deg);
    background: var(--dawana-gold);
}

.why-choose-item h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 10px;
    color: var(--dawana-navy);
}

.why-choose-item p {
    font-size: 14px;
    line-height: 1.85;
    color: #5C6C7C;
    margin: 0;
}

/* CTA banner */
.dawana-cta-banner {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(135deg, #0F2A4A 0%, #132F52 60%, #0A1F38 100%);
    padding: 56px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 96px;
}

.dawana-cta-banner::before {
    content: '';
    position: absolute;
    bottom: -80px;
    inset-inline-start: -40px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, #FFD479 0%, transparent 70%);
    opacity: .25;
    pointer-events: none;
}

.dawana-cta-banner .cta-text {
    position: relative;
    max-width: 600px;
}

.dawana-cta-banner h2 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
}

.dawana-cta-banner p {
    font-size: 15px;
    color: #C7D3DE;
    margin: 0;
    line-height: 1.8;
}

.dawana-cta-banner .dawana-btn {
    position: relative;
    white-space: nowrap;
}

/* ==========================================================================
   HEADER REDESIGN — bold single Login CTA + descriptive categories mega-menu
   ========================================================================== */
.header-top {
    background: linear-gradient(90deg, var(--dawana-navy), var(--dawana-deep));
}

.dawana-login-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 12px;
    background: var(--dawana-navy);
    box-shadow: 0 10px 24px rgba(15, 42, 74, .24);
    text-decoration: none;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.dawana-login-cta:hover,
.dawana-login-cta:focus-visible {
    transform: translateY(-2px);
    background: var(--dawana-deep);
    box-shadow: 0 14px 30px rgba(15, 42, 74, .32);
}

.dawana-login-cta .login-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--dawana-gold);
    color: var(--dawana-navy);
    font-size: 13px;
    flex-shrink: 0;
}

.dawana-login-cta .login-text {
    color: #fff;
    font-weight: 800;
    font-size: 14.5px;
    white-space: nowrap;
}

@media (min-width: 992px) {
    .header .main-menu .categories-menu {
        width: 460px;
        inset-inline-start: 0;
        left: auto;
        padding: 16px;
    }
}

.categories-menu-heading {
    font-size: 11px;
    font-weight: 800;
    color: var(--dawana-muted);
    text-transform: uppercase;
    letter-spacing: .5px;
    padding: 4px 12px 12px;
}

.header .main-menu .categories-menu a {
    align-items: flex-start;
    gap: 16px;
    padding: 12px;
}

.cat-menu-icon {
    width: 46px;
    height: 46px;
}

.cat-menu-icon img {
    width: 24px;
    height: 24px;
}

.cat-menu-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.cat-menu-label {
    font-size: 15px;
    font-weight: 800;
    color: var(--dawana-navy);
}

.cat-menu-desc {
    font-size: 12.5px;
    color: #7A8794;
    line-height: 1.6;
}

.categories-menu-footer {
    border-top: 1px solid var(--dawana-line-warm);
    margin-top: 6px;
}

.categories-menu-footer a {
    justify-content: space-between;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--dawana-gold-dark);
}

.header .main-menu .categories-menu .categories-menu-footer a:hover {
    background: transparent;
    padding-inline-start: 12px;
    color: var(--dawana-navy);
}

@media (max-width: 991px) {
    .dawana-login-cta {
        width: 100%;
        justify-content: center;
        background: var(--dawana-gold);
        box-shadow: none;
    }

    .dawana-login-cta .login-text {
        color: var(--dawana-navy);
    }

    .dawana-login-cta .login-badge {
        background: var(--dawana-navy);
        color: var(--dawana-gold);
    }

    .dawana-login-cta:hover {
        background: var(--dawana-gold-dark);
        transform: none;
    }
}

@media (max-width: 991px) {
    .dawana-how-it-works .col-lg-6:first-child {
        margin-bottom: 40px;
    }

    .dawana-cta-banner {
        text-align: center;
        justify-content: center;
    }

    .dawana-cta-banner .cta-text {
        max-width: 100%;
    }
}

/* ==========================================================================
   INTERIOR PAGE HERO — Buy / Sell / static marketing pages
   ========================================================================== */
.dawana-page-hero {
    position: relative;
    overflow: hidden;
    padding: 90px 0 110px;
    background: linear-gradient(160deg, #0F2A4A 0%, #132F52 55%, #0A1F38 100%);
    text-align: center;
}

.dawana-page-hero::before {
    content: '';
    position: absolute;
    top: -140px;
    inset-inline-end: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, #FFD479 0%, transparent 70%);
    opacity: .18;
    pointer-events: none;
}

.dawana-page-hero::after {
    content: '';
    position: absolute;
    bottom: -160px;
    inset-inline-start: -100px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, #2E6E9E 0%, transparent 70%);
    opacity: .35;
    pointer-events: none;
}

.dawana-page-hero .badge-pill {
    position: relative;
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dawana-navy);
    background: linear-gradient(135deg, #FFD479, #EEAA3C);
    padding: 7px 16px;
    border-radius: 20px;
    margin-bottom: 22px;
}

.dawana-page-hero h1 {
    position: relative;
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    max-width: 760px;
    margin: 0 auto 18px;
    line-height: 1.55;
}

.dawana-page-hero p {
    position: relative;
    font-size: 16px;
    color: #C7D3DE;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.9;
}

/* Dark variant of the shared section header (badge + title + description) */
.dawana-section-header-dark .dawana-section-badge {
    color: var(--dawana-navy);
    background: linear-gradient(135deg, #FFD479, #EEAA3C);
}

.dawana-section-header-dark .site-title {
    color: #fff;
}

.dawana-section-header-dark p {
    color: #C7D3DE;
}

/* Long-form copy block used on interior marketing pages */
.dawana-page-copy {
    max-width: 780px;
    margin: 0 auto;
}

.dawana-page-copy p {
    font-size: 15.5px;
    line-height: 1.95;
    color: #5C6C7C;
    margin: 0 0 18px;
}

.dawana-page-copy p:last-child {
    margin-bottom: 0;
}

/* Step cards — glass tiles on the dark "how it works" background */
.dawana-step-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 36px 28px;
    height: 100%;
    text-align: center;
    opacity: 0;
    translate: 0 24px;
    transition: transform .25s ease, background .25s ease, opacity .6s cubic-bezier(.2, .7, .3, 1), translate .6s cubic-bezier(.2, .7, .3, 1);
}

.dawana-step-card.is-visible {
    opacity: 1;
    translate: 0 0;
}

.dawana-step-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, .09);
}

.dawana-step-card .step-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 22px;
    font-size: 24px;
    color: var(--dawana-gold);
    transition: transform .3s ease, background .3s ease;
}

.dawana-step-card:hover .step-icon {
    transform: translateY(-4px) rotate(-4deg);
    background: var(--dawana-gold);
    color: var(--dawana-navy);
}

.dawana-step-card .step-number {
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--dawana-gold);
    margin-bottom: 10px;
}

.dawana-step-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
}

.dawana-step-card p {
    font-size: 14px;
    line-height: 1.85;
    color: #AEBCCB;
    margin: 0;
}

@media (max-width: 991px) {
    .dawana-page-hero {
        padding: 70px 0 90px;
    }

    .dawana-page-hero h1 {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .dawana-page-hero {
        padding: 56px 0 76px;
    }

    .dawana-page-hero h1 {
        font-size: 25px;
    }

    .dawana-page-hero p {
        font-size: 14.5px;
    }
}