:root {
    --dawana-navy: #0F2A4A;
    --dawana-deep: #073B59;
    --dawana-gold: #E8A93C;
    --dawana-cream: #FFF8EB;
    --dawana-mist: #EAF8FA;
    --dawana-muted: #6D8296;
    --dawana-line: #DDE8EE;
    --dawana-line-warm: #EEE6D8;
    --dawana-success: #3F9C6D;
    --dawana-shadow: 0 18px 45px rgba(15, 42, 74, .11);
}

[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 { padding: 11px 0; background: var(--dawana-navy); border-top: 0; border-bottom: 2px solid var(--dawana-gold); }
.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 { float: none; }
.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: 20px; border-bottom: 1px solid var(--dawana-line-warm); }
.header .navbar-brand { display: flex; align-items: center; gap: 12px; margin: 0; }
.logo-icon {
    display: grid;
    place-items: center;
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--dawana-navy);
    color: var(--dawana-gold);
    font-size: 21px;
}
.logo-text { font-size: 22px; font-weight: 800; color: var(--dawana-navy); }
.header .offcanvas-brand { display: flex; align-items: center; gap: 10px; }
.header .offcanvas-brand .logo-icon { flex-basis: 38px; width: 38px; height: 38px; font-size: 17px; }
.header .offcanvas-brand .logo-text { font-size: 18px; color: #fff; }

.header .main-menu { display: flex; align-items: center; gap: 40px; }
.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: 14px; }
.header .user_profile > li > .list-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1.5px solid var(--dawana-line);
    border-radius: 10px;
    padding: 11px 20px;
    color: var(--dawana-navy);
    font-weight: 700;
    font-size: 14px;
    background: #fff;
    transition: background .25s ease, color .25s ease, border-color .25s ease;
}
.header .user_profile > li > .list-item:hover,
.header .user_profile > li > .list-item:focus-visible {
    background: var(--dawana-mist);
    border-color: var(--dawana-navy);
    color: var(--dawana-navy);
}
.header .user_profile > li > .list-item.action-btn-fill {
    border-color: transparent;
    background: var(--dawana-navy);
    color: #fff;
}
.header .user_profile > li > .list-item.action-btn-fill i { color: var(--dawana-gold); }
.header .user_profile > li > .list-item.action-btn-fill:hover {
    background: var(--dawana-deep);
    color: #fff;
}
.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;
    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;
}

/* 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); }
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.dawana-btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 48px; padding: 12px 20px; border-radius: 7px; font-size: 14px; font-weight: 700; transition: transform .25s ease, background .25s ease, color .25s ease, box-shadow .25s ease; }
.dawana-btn:hover { transform: translateY(-3px); }
.dawana-btn-primary { background: var(--dawana-gold); color: var(--dawana-navy); box-shadow: 0 10px 20px rgba(232, 169, 60, .24); }
.dawana-btn-primary:hover { background: var(--dawana-navy); color: #fff; }
.dawana-btn-ghost { border: 1px solid rgba(15, 42, 74, .22); color: var(--dawana-navy); background: rgba(255,255,255,.55); }
.dawana-btn-ghost:hover { border-color: var(--dawana-navy); background: #fff; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 22px; color: var(--dawana-muted); font-size: 12px; }
.hero-proof i { margin-inline-end: 5px; color: var(--dawana-gold); }
.about-left { position: relative; }
.about-left .about-img { position: relative; z-index: 1; }
.about-accent { position: absolute; right: -18px; bottom: 25px; z-index: 2; display: grid; place-items: center; width: 64px; height: 64px; border: 8px solid #fff; border-radius: 50%; background: var(--dawana-gold); color: var(--dawana-navy); font-size: 18px; box-shadow: 0 12px 24px rgba(15, 42, 74, .15); }
.about-list li { margin-bottom: 13px; }
.about-list li i { color: var(--dawana-gold); }
.choose-img { position: relative; overflow: hidden; border-radius: 20px 4px 20px 4px; }
.choose-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(7,59,89,.06), rgba(232,169,60,.3)); pointer-events: none; }
.choose-img img { width: 100%; max-height: 320px; object-fit: cover; }
.dawana-hero [data-reveal="hero"], .dawana-hero [data-reveal="hero-image"] { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.dawana-hero [data-reveal="hero-image"] { transition-delay: .18s; transform: translateX(18px); }
.dawana-hero [data-reveal].is-visible { opacity: 1; transform: translate(0); }

.dawana-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.dawana-reveal.is-visible { opacity: 1; transform: translateY(0); }
.dawana-card { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.dawana-card:hover { transform: translateY(-6px) scale(1.015); box-shadow: var(--dawana-shadow); }
.category-item .category-info { min-height: 170px; border: 1px solid var(--dawana-line); border-radius: 18px 4px 18px 4px; background: #fff; box-shadow: 0 8px 22px rgba(15, 42, 74, .05); }
.category-item:nth-child(2n) .category-info { border-radius: 4px 18px 4px 18px; background: var(--dawana-cream); }
.category-item:nth-child(3n) .category-info { border-radius: 50%; }
.category-item .icon { display: grid; place-items: center; width: 70px; height: 70px; border-radius: 14px; background: var(--dawana-mist); }
.category-item:nth-child(2n) .icon { border-radius: 50%; background: rgba(232, 169, 60, .18); }
.category-item:nth-child(3n) .icon { border: 2px solid var(--dawana-gold); background: transparent; }
.category-item .content h4 { color: var(--dawana-navy); }
.about-area { background: #fff; }
.about-img img { border-radius: 22px 5px 22px 5px; box-shadow: var(--dawana-shadow); }
.choose-area { background: var(--dawana-mist); }
.choose-item { min-height: 168px; border: 1px solid var(--dawana-line); border-radius: 4px 20px 20px 20px; box-shadow: 0 8px 24px rgba(15, 42, 74, .06); transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.choose-item:nth-child(2) { border-radius: 20px 4px 20px 20px; background: var(--dawana-navy); border-color: var(--dawana-navy); }
.choose-item:nth-child(2) h4, .choose-item:nth-child(2) p { color: #fff; }
.choose-item:nth-child(3) { border-radius: 20px; background: var(--dawana-cream); border-color: rgba(232, 169, 60, .3); }
.choose-item:hover { transform: translateY(-8px); box-shadow: 0 26px 55px rgba(15, 42, 74, .18); border-color: rgba(232, 169, 60, .65); }
.choose-icon { display: grid; place-items: center; flex: 0 0 64px; width: 64px; height: 64px; border-radius: 12px; background: var(--dawana-gold); box-shadow: none; }
.choose-item:nth-child(2) .choose-icon { border-radius: 50%; background: #fff; }
.choose-item:nth-child(2) .choose-icon img { filter: none; }
.choose-item:nth-child(3) .choose-icon { border: 2px solid var(--dawana-navy); background: transparent; }
.choose-item:nth-child(3) .choose-icon img { filter: brightness(0) saturate(100%) invert(14%) sepia(28%) saturate(1400%) hue-rotate(170deg); }

.dawana-footer { background: var(--dawana-navy); color: #fff; }
.dawana-footer .footer-items { padding: 68px 0 52px; }
.dawana-footer .footer-brand { max-width: 280px; color: #b9c9d8; line-height: 1.8; }
.dawana-footer .footer-title { margin-bottom: 18px; color: #fff; font-size: 16px; }
.dawana-footer .footer-links { display: grid; gap: 10px; padding: 0; margin: 0; list-style: none; }
.dawana-footer .footer-links a, .dawana-footer .footer-contact a { color: #b9c9d8; 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: 12px; 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); }

@media (max-width: 991px) {
    .header .navbar { padding: 10px 0; }
    .logo-icon { flex-basis: 38px; width: 38px; height: 38px; font-size: 17px; }
    .logo-text { font-size: 18px; }
    .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 {
        justify-content: center;
        background: transparent;
        border-color: rgba(255,255,255,.25);
        color: #fff;
    }
    .header .user_profile > li > .list-item:hover,
    .header .user_profile > li > .list-item:focus-visible {
        background: rgba(255,255,255,.08);
        border-color: var(--dawana-gold);
        color: #fff;
    }
    .header .user_profile > li > .list-item.action-btn-fill {
        background: var(--dawana-gold);
        color: var(--dawana-navy);
        border-color: transparent;
    }
    .header .user_profile > li > .list-item.action-btn-fill i { color: var(--dawana-navy); }
}

@media (max-width: 575px) {
    .category-item:nth-child(3n) .category-info { border-radius: 18px; }
    .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 { opacity: 1; transform: none; }
}

/* Hero composition: gold-accented card (rotating copy) + static connections diagram */
.dawana-hero { margin: 0; padding: 56px 0 80px; background: #FBFAF7; }
.dawana-hero .container { max-width: 1320px; }

.hero-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 480px;
    padding: 44px 40px;
    border-radius: 26px;
    background: #DFEFF4;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-card-blob {
    position: absolute;
    top: -90px;
    left: -90px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--dawana-gold);
    z-index: 0;
    animation: dawana-float-soft 6s ease-in-out infinite;
}
.dawana-hero .hero-slider { position: relative; z-index: 1; overflow: visible; }
.dawana-hero .hero-single { min-height: auto; }
.dawana-hero .hero-content { max-width: 480px; }
.dawana-hero .hero-sub-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 8px 16px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .75);
    color: var(--dawana-navy) !important;
    font-size: 13px !important;
    font-weight: 700;
}
.dawana-hero .hero-sub-title i { font-size: 12px; }
.dawana-hero .hero-content .hero-title { margin: 0 0 20px; color: var(--dawana-navy); font-size: clamp(28px, 3.2vw, 44px); line-height: 1.35; font-weight: 800; }
.dawana-hero .hero-content .hero-title strong,
.dawana-hero .hero-content .hero-title span { color: #D9861F; }
.dawana-hero .hero-copy { max-width: 460px; margin-bottom: 0; color: #3C5065; font-size: 16px; line-height: 1.9; }
.dawana-hero .hero-actions { margin-top: 32px; }
.dawana-hero .hero-proof { gap: 22px; color: #26425C; }
.dawana-hero .hero-proof i { color: var(--dawana-success); }

.dawana-hero .owl-nav { display: none; }
.dawana-hero .owl-dots { display: flex; gap: 6px; margin-top: 30px; }
.dawana-hero .owl-dots .owl-dot span { display: block; width: 8px; height: 8px; margin: 0; border-radius: 50%; background: rgba(15, 42, 74, .18); transition: width .3s ease, background .3s ease; }
.dawana-hero .owl-dots .owl-dot.active span { width: 26px; border-radius: 4px; background: var(--dawana-navy); }

/* connections diagram */
.hero-diagram { position: relative; display: flex; align-items: center; justify-content: center; min-height: 480px; height: 100%; }
.diagram-lines { position: absolute; inset: 0; width: 100%; height: 100%; }
.diagram-lines line { stroke: var(--dawana-gold); stroke-width: 1.6; stroke-dasharray: 3 6; }
.diagram-lines circle { fill: var(--dawana-gold); }
.diagram-core {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--dawana-navy);
    color: var(--dawana-gold);
    font-size: 32px;
    box-shadow: 0 16px 34px rgba(15, 42, 74, .22);
    animation: dawana-float-soft 5s ease-in-out infinite;
}
.diagram-badge {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 20px;
    border-radius: 26px;
    background: #fff;
    border: 1px solid var(--dawana-line-warm);
    box-shadow: 0 8px 20px rgba(15, 42, 74, .06);
    font-size: 14px;
    font-weight: 700;
    color: var(--dawana-navy);
    white-space: nowrap;
    animation: dawana-float 6s ease-in-out infinite;
}
.diagram-badge i { color: var(--dawana-navy); font-size: 15px; }
.diagram-badge.badge-tr { top: 58px; right: 60px; }
.diagram-badge.badge-tl { top: 58px; left: 60px; animation-delay: .5s; }
.diagram-badge.badge-br { bottom: 58px; right: 20px; animation-delay: 1s; }
.diagram-badge.badge-bl { bottom: 58px; left: 20px; animation-delay: 1.5s; }
.diagram-pill {
    position: absolute;
    z-index: 2;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 22px;
    background: var(--dawana-navy);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}
.diagram-pill i { color: var(--dawana-gold); }

.category-area { padding-top: 76px !important; padding-bottom: 90px !important; }
.category-area .site-heading-inline { display: flex; align-items: end; justify-content: space-between; margin-bottom: 28px; }
.category-area .site-title { margin: 0; font-size: 32px; }
.category-slider2 { direction: ltr; margin: 0 -8px; }
.category-slider2 .owl-stage { display: flex; }
.category-slider2 .owl-item { display: flex; padding: 8px; }
.category-slider2 .category-item { display: flex; width: 100%; }
.category-slider2 .category-item a { width: 100%; }
.category-item .category-info,
.category-item:nth-child(2n) .category-info,
.category-item:nth-child(3n) .category-info {
    display: flex;
    align-items: center;
    min-height: 142px;
    gap: 18px;
    padding: 22px;
    border: 1px solid var(--dawana-line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 8px 20px rgba(15,42,74,.05);
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.category-item:nth-child(2n) .category-info { background: #fffaf0; }
.category-item:hover .category-info {
    transform: translateY(-6px);
    border-color: rgba(232, 169, 60, .55);
    box-shadow: 0 24px 50px rgba(15, 42, 74, .16);
}
.category-item .icon,
.category-item:nth-child(2n) .icon,
.category-item:nth-child(3n) .icon { flex: 0 0 58px; width: 58px; height: 58px; border: 0; border-radius: 14px; background: var(--dawana-mist); }
.category-item:nth-child(2n) .icon { background: rgba(232,169,60,.16); }
.category-item:nth-child(3n) .icon { background: rgba(7,59,89,.1); }
.category-item .icon img { width: 34px; height: 34px; }
.category-item .content h4 { margin: 0; font-size: 16px; line-height: 1.6; }
.category-slider2.owl-carousel { padding-bottom: 6px; }
.category-slider2 .owl-dots { display: flex; justify-content: center; gap: 6px; margin-top: 22px; }
.category-slider2 .owl-dots .owl-dot span { display: block; width: 8px; height: 8px; margin: 0; border-radius: 50%; background: var(--dawana-line); transition: width .3s ease, background .3s ease; }
.category-slider2 .owl-dots .owl-dot.active span { width: 24px; border-radius: 4px; background: var(--dawana-gold); }

@media (max-width: 991px) {
    .dawana-hero { padding: 36px 0 56px; }
    .hero-card { min-height: auto; padding: 36px 28px; text-align: center; }
    .hero-card-blob { top: -70px; left: -70px; width: 220px; height: 220px; }
    .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, .dawana-hero .owl-dots { justify-content: center; }
    .hero-diagram { min-height: 380px; margin-top: 12px; transform: scale(.85); }
}

@media (max-width: 575px) {
    .dawana-hero { padding: 24px 0 44px; }
    .dawana-hero .hero-content .hero-title { font-size: 26px; }
    .dawana-hero .hero-sub-title { font-size: 11px !important; padding: 7px 14px; }
    .dawana-hero .hero-copy { font-size: 14px; line-height: 1.9; }
    .hero-diagram { min-height: 320px; transform: scale(.68); }
    .category-area .site-title { font-size: 26px; }
}

/* ---------- Homepage premium polish: ambient motion, section accents ---------- */
@keyframes dawana-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}
@keyframes dawana-float-soft {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(3deg); }
}
@keyframes dawana-underline-grow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* section eyebrow + heading accent, direction-aware via logical properties */
.category-area .site-heading-inline .site-title,
.about-right .site-title,
.choose-area > .container > .row .site-title {
    position: relative;
    padding-bottom: 16px;
}
.category-area .site-heading-inline .site-title::after,
.about-right .site-title::after,
.choose-area > .container > .row .site-title::after {
    content: '';
    position: absolute;
    inset-inline-start: 0;
    bottom: 0;
    width: 54px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--dawana-gold), rgba(232, 169, 60, .25));
    transform-origin: left center;
}
.dawana-reveal.is-visible .site-title::after { animation: dawana-underline-grow .6s .15s ease both; }

/* about area ambient depth */
.about-area { position: relative; }
.about-area::before {
    content: '';
    position: absolute;
    top: 20px;
    inset-inline-end: 20px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 169, 60, .12), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.about-area .container { position: relative; z-index: 1; }
.about-accent { animation: dawana-float-soft 4.5s ease-in-out infinite; }

/* choose area ambient depth */
.choose-area { position: relative; }
.choose-area::before {
    content: '';
    position: absolute;
    bottom: 20px;
    inset-inline-start: 20px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(15, 42, 74, .06), transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.choose-area .container { position: relative; z-index: 1; }

/* icon micro-interactions */
.category-item .icon,
.choose-icon {
    transition: transform .35s ease, background .3s ease;
}
.category-item:hover .icon { transform: scale(1.08) rotate(-4deg); }
.choose-item:hover .choose-icon { transform: rotate(-8deg) scale(1.08); }

/* button icon nudge on hover */
.dawana-btn i { transition: transform .25s ease; }
.dawana-btn:hover i { transform: translateX(-4px); }

@media (max-width: 575px) {
    .about-area::before,
    .choose-area::before { display: none; }
}
