/* =============================================
   Wedding Theme - 婚宴礼宴主题
   现代化 · 扁平 · 响应式 · 优雅大气
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
    --wd-gold:       #c8a96e;
    --wd-gold-dark:  #a8803e;
    --wd-gold-light: #e8d5a8;
    --wd-rose:       #c97b8a;
    --wd-dark:       #1a0a0a;
    --wd-dark2:      #2d1a1a;
    --wd-dark3:      #3d2a2a;
    --wd-text:       #4a3535;
    --wd-text-light: #8a7070;
    --wd-bg:         #fdf8f4;
    --wd-bg2:        #f8f0e8;
    --wd-white:      #ffffff;
    --wd-border:     rgba(200, 169, 110, 0.25);
    --wd-shadow:     0 4px 24px rgba(26, 10, 10, 0.10);
    --wd-shadow-lg:  0 8px 48px rgba(26, 10, 10, 0.16);
    --wd-radius:     4px;
    --wd-radius-lg:  8px;
    --wd-font-serif: 'Georgia', 'STSong', '宋体', serif;
    --wd-font-sans:  -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
    --wd-trans:      0.3s ease;
    --wd-header-h:   70px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--wd-font-sans);
    font-size: 15px;
    line-height: 1.7;
    color: var(--wd-text);
    background: var(--wd-white);
    -webkit-font-smoothing: antialiased;
}

.body-inner { overflow: hidden; }

a { color: var(--wd-gold); text-decoration: none; transition: color var(--wd-trans); }
a:hover { color: var(--wd-gold-dark); text-decoration: none; }

img { max-width: 100%; height: auto; }

h1,h2,h3,h4,h5,h6 {
    font-family: var(--wd-font-serif);
    color: var(--wd-dark);
    line-height: 1.35;
    font-weight: 400;
}

/* =============================================
   BUTTONS
   ============================================= */
.wd-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    font-size: 14px;
    font-family: var(--wd-font-sans);
    letter-spacing: .08em;
    border-radius: var(--wd-radius);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--wd-trans);
    white-space: nowrap;
}

.wd-btn-primary {
    background: var(--wd-gold);
    color: var(--wd-white);
    border-color: var(--wd-gold);
}
.wd-btn-primary:hover {
    background: var(--wd-gold-dark);
    border-color: var(--wd-gold-dark);
    color: var(--wd-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(200, 169, 110, 0.35);
}

.wd-btn-outline {
    background: transparent;
    color: var(--wd-gold);
    border-color: var(--wd-gold);
}
.wd-btn-outline:hover {
    background: var(--wd-gold);
    color: var(--wd-white);
    transform: translateY(-2px);
}

.wd-btn-sm { padding: 8px 20px; font-size: 13px; }

/* =============================================
   HEADER
   ============================================= */
.wd-header {
    position: relative;
    z-index: 1000;
}

/* Top bar */
.wd-topbar {
    background: var(--wd-dark);
    padding: 8px 0;
    font-size: 13px;
}
.wd-topbar-slogan { color: rgba(255,255,255,.7); }
.wd-topbar-slogan i { color: var(--wd-rose); margin-right: 6px; }
.wd-topbar-contact { color: rgba(255,255,255,.65); }
.wd-topbar-contact i { color: var(--wd-gold); margin-right: 4px; }

/* Navbar wrap */
.wd-navbar-wrap {
    background: var(--wd-white);
    border-bottom: 1px solid var(--wd-border);
    transition: all var(--wd-trans);
}

.navbar-fixed .wd-navbar-wrap,
.wd-navbar-wrap.navbar-fixed {
    position: fixed;
    top: 0; left: 0; right: 0;
    box-shadow: var(--wd-shadow);
}

.navbar { padding: 0; min-height: var(--wd-header-h); }

/* Logo */
.wd-logo { flex-shrink: 0; padding: 12px 0; }
.wd-logo img { max-height: 50px; width: auto; }
.wd-logo-text {
    font-family: var(--wd-font-serif);
    font-size: 1.5rem;
    color: var(--wd-dark);
    letter-spacing: .05em;
}

/* Nav links */
.wd-header .navbar-nav .nav-item .nav-link {
    color: var(--wd-dark);
    font-size: 14px;
    letter-spacing: .05em;
    padding: 0 16px;
    height: var(--wd-header-h);
    display: flex;
    align-items: center;
    position: relative;
    transition: color var(--wd-trans);
}
.wd-header .navbar-nav .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: var(--wd-gold);
    transition: all var(--wd-trans);
}
.wd-header .navbar-nav .nav-item.active .nav-link,
.wd-header .navbar-nav .nav-item .nav-link:hover {
    color: var(--wd-gold);
}
.wd-header .navbar-nav .nav-item.active .nav-link::after,
.wd-header .navbar-nav .nav-item .nav-link:hover::after {
    left: 16px; right: 16px;
}

/* Dropdown */
.wd-dropdown {
    border: none;
    border-radius: var(--wd-radius);
    box-shadow: var(--wd-shadow-lg);
    padding: 8px 0;
    min-width: 180px;
    border-top: 2px solid var(--wd-gold);
}
.wd-dropdown li a {
    display: block;
    padding: 8px 20px;
    color: var(--wd-text);
    font-size: 14px;
    transition: all var(--wd-trans);
}
.wd-dropdown li a:hover,
.wd-dropdown li.active a {
    color: var(--wd-gold);
    background: var(--wd-bg);
    padding-left: 26px;
}

/* Search */
.wd-nav-search { position: relative; }
.wd-nav-search .nav-link { color: var(--wd-text-light) !important; }
.wd-nav-search .nav-link:hover { color: var(--wd-gold) !important; }
.wd-search-panel {
    display: none;
    position: absolute;
    top: calc(var(--wd-header-h) + 1px);
    right: 0;
    width: 320px;
    background: var(--wd-white);
    border-radius: 0 0 var(--wd-radius) var(--wd-radius);
    box-shadow: var(--wd-shadow-lg);
    padding: 16px;
}
.wd-search-panel.active { display: block; }
.wd-search-panel form { display: flex; gap: 8px; }
.wd-search-panel input {
    flex: 1;
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius);
    padding: 8px 14px;
    font-size: 14px;
    outline: none;
    color: var(--wd-text);
}
.wd-search-panel button {
    background: var(--wd-gold);
    color: #fff;
    border: none;
    border-radius: var(--wd-radius);
    padding: 8px 14px;
    cursor: pointer;
}
.wd-search-close {
    position: absolute;
    top: 8px; right: 12px;
    cursor: pointer;
    color: var(--wd-text-light);
    font-size: 18px;
    display: none;
}

/* Toggler */
.wd-toggler-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 4px 2px;
}
.wd-toggler-icon span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--wd-dark);
    transition: all var(--wd-trans);
}

/* =============================================
   HERO BANNER
   ============================================= */
.wd-hero {
    position: relative;
    width: 100%;
    height: 680px;
}
.wd-hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 680px;
    display: flex;
    align-items: center;
}
.wd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,10,10,.65) 0%, rgba(26,10,10,.35) 100%);
}
.wd-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 40px 20px;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp .8s ease both;
}
.wd-hero-badge {
    width: 48px; height: 48px;
    background: rgba(200,169,110,.2);
    border: 1px solid rgba(200,169,110,.5);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-size: 20px;
    color: var(--wd-gold);
}
.wd-hero-title {
    font-size: 3rem;
    font-family: var(--wd-font-serif);
    font-weight: 400;
    color: #fff;
    letter-spacing: .06em;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,.3);
}
.wd-hero-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.82);
    margin-bottom: 32px;
    letter-spacing: .03em;
}
.wd-hero-pagination .swiper-pagination-bullet {
    background: rgba(255,255,255,.5);
    opacity: 1;
}
.wd-hero-pagination .swiper-pagination-bullet-active {
    background: var(--wd-gold);
    width: 24px;
    border-radius: 3px;
}
.wd-hero-prev, .wd-hero-next {
    color: rgba(255,255,255,.8);
    transition: color var(--wd-trans);
}
.wd-hero-prev:hover, .wd-hero-next:hover { color: var(--wd-gold); }
.wd-hero-prev::after, .wd-hero-next::after { display: none; }

/* =============================================
   STATS BAR
   ============================================= */
.wd-stats-bar {
    background: var(--wd-dark);
    padding: 40px 0;
}
.wd-stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,.08);
}
.wd-stat-item:last-child { border-right: none; }
.wd-stat-num {
    font-family: var(--wd-font-serif);
    font-size: 2.4rem;
    color: var(--wd-gold);
    line-height: 1;
    margin-bottom: 8px;
}
.wd-stat-num span { font-size: 1.2rem; }
.wd-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,.6);
    letter-spacing: .05em;
}

/* =============================================
   SECTION COMMON
   ============================================= */
.wd-section-header { margin-bottom: 48px; }
.wd-section-label {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--wd-gold);
    margin-bottom: 12px;
}
.wd-section-title {
    font-size: 2rem;
    color: var(--wd-dark);
    margin-bottom: 16px;
}
.wd-divider {
    width: 60px;
    height: 2px;
    background: var(--wd-gold);
    position: relative;
}
.wd-divider span {
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 8px; height: 8px;
    background: var(--wd-gold);
    border-radius: 50%;
}
.wd-divider.mx-auto { margin-left: auto; margin-right: auto; }

/* =============================================
   ABOUT SECTION
   ============================================= */
.wd-about {
    padding: 100px 0;
    background: var(--wd-bg);
}
.wd-about-img { position: relative; }
.wd-img-shadow {
    box-shadow: var(--wd-shadow-lg);
    border-radius: var(--wd-radius-lg);
}
.wd-about-badge {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 80px; height: 80px;
    background: var(--wd-gold);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 10px;
    letter-spacing: .05em;
    box-shadow: var(--wd-shadow);
}
.wd-about-badge i { font-size: 22px; margin-bottom: 4px; }
.wd-about-content { padding-left: 40px; }
.wd-about-text { color: var(--wd-text); line-height: 1.8; margin-top: 20px; }

/* =============================================
   SERVICES / PACKAGES
   ============================================= */
.wd-services {
    padding: 100px 0;
    background: var(--wd-white);
}

/* Tab Nav */
.wd-tab-nav { margin-bottom: 40px; }
.wd-tab-nav .nav,
.wd-gallery-filter.nav {
    gap: 8px;
    flex-wrap: wrap;
}
.wd-tab-nav .nav a,
.wd-gallery-filter.nav a {
    display: block;
    padding: 8px 20px;
    border: 1px solid var(--wd-border);
    border-radius: 50px;
    font-size: 13px;
    color: var(--wd-text-light);
    transition: all var(--wd-trans);
}
.wd-tab-nav .nav a:hover,
.wd-tab-nav .nav a.active,
.wd-gallery-filter.nav a:hover,
.wd-gallery-filter.nav a.active {
    background: var(--wd-gold);
    border-color: var(--wd-gold);
    color: #fff;
}

/* Package Card */
.wd-package-card {
    background: var(--wd-white);
    border-radius: var(--wd-radius-lg);
    overflow: hidden;
    box-shadow: var(--wd-shadow);
    margin-bottom: 28px;
    transition: transform var(--wd-trans), box-shadow var(--wd-trans);
}
.wd-package-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--wd-shadow-lg);
}
.wd-package-img {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}
.wd-package-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(26,10,10,.5));
    transition: opacity var(--wd-trans);
}
.wd-package-card:hover .wd-package-img::before { opacity: .7; }
.wd-package-tag {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--wd-gold);
    color: #fff;
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 50px;
    letter-spacing: .05em;
}
.wd-package-body { padding: 20px 24px 24px; }
.wd-package-price {
    font-family: var(--wd-font-serif);
    font-size: 1.5rem;
    color: var(--wd-rose);
    margin-bottom: 8px;
}
.wd-package-price small { font-size: .75rem; color: var(--wd-text-light); }
.wd-price-consult { color: var(--wd-gold); }
.wd-package-title { font-size: 1rem; margin-bottom: 8px; }
.wd-package-title a { color: var(--wd-dark); }
.wd-package-title a:hover { color: var(--wd-gold); }
.wd-package-desc {
    font-size: 13px;
    color: var(--wd-text-light);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* =============================================
   GALLERY
   ============================================= */
.wd-gallery {
    padding: 100px 0;
    background: var(--wd-bg);
}
.wd-gallery-grid { margin: 0 -8px; }
.wd-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--wd-radius);
    margin-bottom: 16px;
    cursor: pointer;
}
.wd-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}
.wd-gallery-item:hover img { transform: scale(1.06); }
.wd-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,10,10,.6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity var(--wd-trans);
}
.wd-gallery-item:hover .wd-gallery-overlay { opacity: 1; }
.wd-gallery-overlay h6 {
    color: #fff;
    font-size: 13px;
    margin: 0;
    text-align: center;
    padding: 0 12px;
}
.wd-gallery-zoom, .wd-gallery-link {
    width: 40px; height: 40px;
    background: rgba(200,169,110,.9);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background var(--wd-trans);
}
.wd-gallery-zoom:hover, .wd-gallery-link:hover { background: var(--wd-gold); }

/* =============================================
   NEWS
   ============================================= */
.wd-news {
    padding: 100px 0;
    background: var(--wd-white);
}
.wd-news-group { margin-bottom: 32px; }
.wd-news-group-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--wd-border);
    padding-bottom: 12px;
    margin-bottom: 20px;
}
.wd-news-group-header h4 { margin: 0; font-size: 1.1rem; }
.wd-more-link { font-size: 13px; color: var(--wd-gold); }
.wd-news-list { list-style: none; padding: 0; margin: 0; }
.wd-news-featured { margin-bottom: 12px; }
.wd-news-featured-inner {
    display: flex;
    gap: 14px;
    align-items: center;
}
.wd-news-thumb { width: 100px; height: 70px; flex-shrink: 0; }
.wd-news-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--wd-radius); }
.wd-news-info h5 { font-size: .9rem; margin: 0 0 6px; line-height: 1.4; color: var(--wd-dark); transition: color var(--wd-trans); }
.wd-news-featured-inner:hover .wd-news-info h5 { color: var(--wd-gold); }
.wd-news-date { font-size: 12px; color: var(--wd-text-light); }
.wd-news-item { border-bottom: 1px dashed var(--wd-border); }
.wd-news-item a {
    display: flex;
    align-items: center;
    padding: 10px 0;
    color: var(--wd-text);
    gap: 10px;
    transition: color var(--wd-trans);
}
.wd-news-item a:hover { color: var(--wd-gold); }
.wd-news-dot {
    width: 6px; height: 6px;
    background: var(--wd-gold);
    border-radius: 50%;
    flex-shrink: 0;
}
.wd-news-title { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 14px; }
.wd-news-item .wd-news-date { flex-shrink: 0; font-size: 12px; }

/* =============================================
   PARTNERS
   ============================================= */
.wd-partners {
    padding: 80px 0;
    background: var(--wd-bg);
}
.wd-partners-swiper { height: 100px; }
.wd-partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background: var(--wd-white);
    border-radius: var(--wd-radius);
    padding: 12px;
    border: 1px solid var(--wd-border);
    transition: all var(--wd-trans);
}
.wd-partner-item:hover {
    border-color: var(--wd-gold);
    box-shadow: var(--wd-shadow);
}
.wd-partner-item img { max-height: 60px; max-width: 100%; object-fit: contain; filter: grayscale(30%); transition: filter var(--wd-trans); }
.wd-partner-item:hover img { filter: none; }
.wd-partner-prev, .wd-partner-next {
    width: 36px; height: 36px;
    background: var(--wd-white);
    border: 1px solid var(--wd-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--wd-gold);
    cursor: pointer;
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 10;
    transition: all var(--wd-trans);
    font-size: 14px;
}
.wd-partner-prev { left: -18px; }
.wd-partner-next { right: -18px; }
.wd-partner-prev:hover, .wd-partner-next:hover { background: var(--wd-gold); color: #fff; border-color: var(--wd-gold); }
.wd-partner-prev::after, .wd-partner-next::after { display: none; }

/* =============================================
   FOOTER
   ============================================= */
.wd-footer { background: var(--wd-dark); color: rgba(255,255,255,.7); }
.wd-footer-main { padding: 70px 0 50px; }
.wd-footer-logo img { max-height: 50px; margin-bottom: 16px; filter: brightness(0) invert(1); opacity: .85; }
.wd-footer-desc { font-size: 13px; line-height: 1.7; color: rgba(255,255,255,.55); }
.wd-footer-social { display: flex; gap: 10px; margin-top: 20px; }
.wd-footer-social a {
    width: 36px; height: 36px;
    border: 1px solid rgba(200,169,110,.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6);
    font-size: 15px;
    transition: all var(--wd-trans);
}
.wd-footer-social a:hover { background: var(--wd-gold); border-color: var(--wd-gold); color: #fff; }
.wd-footer-title {
    font-size: .9rem;
    color: var(--wd-gold-light);
    letter-spacing: .08em;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(200,169,110,.2);
}
.wd-footer-links { list-style: none; padding: 0; margin: 0; }
.wd-footer-links li { margin-bottom: 10px; }
.wd-footer-links a {
    color: rgba(255,255,255,.55);
    font-size: 13px;
    transition: all var(--wd-trans);
    display: inline-flex;
    align-items: center;
}
.wd-footer-links a::before {
    content: '›';
    margin-right: 8px;
    color: var(--wd-gold);
    font-size: 16px;
}
.wd-footer-links a:hover { color: var(--wd-gold); padding-left: 4px; }
.wd-footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 13px;
}
.wd-footer-contact-item i { color: var(--wd-gold); margin-top: 3px; }
.wd-footer-qrcode img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--wd-radius); }
.wd-footer-qrcode p { font-size: 11px; text-align: center; color: rgba(255,255,255,.5); margin: 6px 0 0; }
.wd-footer-bottom {
    background: rgba(0,0,0,.25);
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,.06);
}
.wd-copyright { font-size: 13px; color: rgba(255,255,255,.4); }
.wd-icp a { font-size: 13px; color: rgba(255,255,255,.35); }
.wd-icp a:hover { color: var(--wd-gold); }
.wd-friendly-links { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(255,255,255,.06); }
.wd-friendly-links a { font-size: 12px; color: rgba(255,255,255,.35); transition: color var(--wd-trans); }
.wd-friendly-links a:hover { color: var(--wd-gold); }

/* Back to top */
.wd-back-to-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 44px; height: 44px;
    background: var(--wd-gold);
    color: #fff;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(200,169,110,.4);
    transition: all var(--wd-trans);
    z-index: 999;
}
.wd-back-to-top:hover { background: var(--wd-gold-dark); transform: translateY(-3px); }

/* =============================================
   INNER BANNER
   ============================================= */
.wd-inner-banner {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    background-color: var(--wd-dark2);
    display: flex;
    align-items: center;
}
.wd-inner-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,10,10,.75) 0%, rgba(26,10,10,.45) 100%);
}
.wd-inner-banner-content {
    position: relative;
    z-index: 2;
    color: #fff;
}
.wd-inner-banner-content h1 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 400;
}
/* Breadcrumb */
.wd-inner-banner-content .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 13px;
}
.wd-inner-banner-content .breadcrumb-item a { color: rgba(255,255,255,.6); }
.wd-inner-banner-content .breadcrumb-item.active_a,
.wd-inner-banner-content .breadcrumb-item.active { color: var(--wd-gold); }
.wd-inner-banner-content .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.4); }

/* =============================================
   MAIN SECTION
   ============================================= */
.wd-main-section { padding: 80px 0; }

/* =============================================
   SIDEBAR
   ============================================= */
.wd-sidebar { }
.wd-sidebar-widget {
    background: var(--wd-white);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius-lg);
    padding: 24px;
    margin-bottom: 24px;
}
.wd-sidebar-title {
    font-size: .95rem;
    color: var(--wd-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--wd-gold);
    display: inline-block;
}
.wd-sidebar-menu { list-style: none; padding: 0; margin: 0; }
.wd-sidebar-menu li { border-bottom: 1px dashed var(--wd-border); }
.wd-sidebar-menu li:last-child { border: none; }
.wd-sidebar-menu li a {
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-size: 14px;
    color: var(--wd-text);
    transition: all var(--wd-trans);
}
.wd-sidebar-menu li a::before {
    content: '›';
    margin-right: 8px;
    color: var(--wd-gold);
    font-size: 16px;
}
.wd-sidebar-menu li.active a,
.wd-sidebar-menu li a:hover { color: var(--wd-gold); padding-left: 4px; }
.wd-sidebar-hot { list-style: none; padding: 0; margin: 0; }
.wd-sidebar-hot li { margin-bottom: 12px; }
.wd-sidebar-hot li a {
    display: flex;
    gap: 10px;
    color: var(--wd-text);
}
.wd-hot-thumb { width: 60px; height: 50px; flex-shrink: 0; }
.wd-hot-thumb img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--wd-radius); }
.wd-hot-info span { font-size: 13px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.wd-sidebar-hot li a:hover .wd-hot-info span { color: var(--wd-gold); }
.wd-tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.wd-tag-cloud a {
    display: inline-block;
    padding: 4px 12px;
    border: 1px solid var(--wd-border);
    border-radius: 50px;
    font-size: 12px;
    color: var(--wd-text-light);
    transition: all var(--wd-trans);
}
.wd-tag-cloud a:hover { background: var(--wd-gold); border-color: var(--wd-gold); color: #fff; }
.wd-tag-cloud-lg a { font-size: 13px; padding: 6px 16px; }
.wd-tag-cloud sup { font-size: 10px; color: inherit; opacity: .7; }

/* =============================================
   ARTICLE LIST
   ============================================= */
.wd-article-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid var(--wd-border);
}
.wd-article-item:first-child { padding-top: 0; }
.wd-article-thumb {
    width: 180px;
    height: 130px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: var(--wd-radius);
}
.wd-article-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.wd-article-item:hover .wd-article-thumb img { transform: scale(1.05); }
.wd-article-body { flex: 1; }
.wd-article-meta { font-size: 12px; color: var(--wd-text-light); margin-bottom: 8px; }
.wd-article-meta span { margin-right: 14px; }
.wd-article-meta i { margin-right: 4px; color: var(--wd-gold); }
.wd-article-title { font-size: 1rem; margin-bottom: 8px; }
.wd-article-title a { color: var(--wd-dark); transition: color var(--wd-trans); }
.wd-article-title a:hover { color: var(--wd-gold); }
.wd-article-desc { font-size: 13px; color: var(--wd-text-light); margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.wd-read-more { font-size: 13px; color: var(--wd-gold); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--wd-trans); }
.wd-read-more:hover { gap: 10px; color: var(--wd-gold-dark); }

/* =============================================
   ARTICLE DETAIL
   ============================================= */
.wd-article-detail { }
.wd-article-header { margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--wd-border); }
.wd-article-main-title { font-size: 1.8rem; margin-bottom: 12px; }
.wd-article-content { }
.wd-article-content img { max-width: 100%; height: auto; border-radius: var(--wd-radius); }
.wd-article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--wd-border);
    margin-top: 32px;
}
.wd-tags { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.wd-tags a {
    padding: 3px 10px;
    border: 1px solid var(--wd-border);
    border-radius: 50px;
    font-size: 12px;
    color: var(--wd-text-light);
}
.wd-tags a:hover { background: var(--wd-gold); border-color: var(--wd-gold); color: #fff; }
.wd-share { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--wd-text-light); }
.wd-share a {
    width: 30px; height: 30px;
    background: var(--wd-bg2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--wd-text-light);
    transition: all var(--wd-trans);
}
.wd-share a:hover { background: var(--wd-gold); color: #fff; }
.wd-prenext {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    padding: 16px 0;
    border-top: 1px solid var(--wd-border);
    margin-top: 16px;
}
.wd-prenext-item {
    flex: 1;
    font-size: 13px;
    color: var(--wd-text);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color var(--wd-trans);
}
.wd-prenext-item:hover { color: var(--wd-gold); }
.wd-prenext-none { color: var(--wd-text-light); cursor: default; }

/* =============================================
   PRODUCT DETAIL
   ============================================= */
.wd-product-gallery { margin-bottom: 32px; }
.wd-product-info { padding-left: 10px; }
.wd-product-title { font-size: 1.6rem; margin-bottom: 12px; }
.wd-product-meta { font-size: 13px; color: var(--wd-text-light); margin-bottom: 16px; }
.wd-product-meta a, .wd-product-meta span { margin-right: 16px; }
.wd-product-meta i { color: var(--wd-gold); margin-right: 4px; }
.wd-product-price {
    font-family: var(--wd-font-serif);
    font-size: 2rem;
    color: var(--wd-rose);
    margin-bottom: 16px;
}
.wd-product-price small { font-size: .8rem; color: var(--wd-text-light); }
.wd-product-desc { color: var(--wd-text-light); line-height: 1.8; margin-bottom: 24px; }
.wd-product-attrs { list-style: none; padding: 0; margin: 20px 0; }
.wd-product-attrs li {
    display: flex;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--wd-border);
    font-size: 14px;
}
.wd-product-attrs li b { color: var(--wd-text-light); min-width: 80px; }
.wd-product-share { display: flex; align-items: center; gap: 8px; margin-top: 16px; font-size: 13px; color: var(--wd-text-light); }
.wd-product-share a {
    width: 30px; height: 30px;
    background: var(--wd-bg2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--wd-text-light);
    transition: all var(--wd-trans);
}
.wd-product-share a:hover { background: var(--wd-gold); color: #fff; }
.wd-product-tabs { border: 1px solid var(--wd-border); border-radius: var(--wd-radius-lg); overflow: hidden; margin-top: 32px; }
.wd-product-tabs .wd-tab-nav { margin: 0; }
.wd-product-tabs .wd-tab-nav .nav { padding: 16px 20px 0; border-bottom: 1px solid var(--wd-border); gap: 4px; }
.wd-product-tabs .wd-tab-nav .nav a { border-radius: var(--wd-radius) var(--wd-radius) 0 0; border-bottom: none; margin-bottom: -1px; }
.wd-product-content { padding: 24px; }
.wd-related-title { font-size: 1.2rem; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 2px solid var(--wd-gold); }

/* =============================================
   CONTACT PAGE
   ============================================= */
.wd-contact-box {
    text-align: center;
    padding: 40px 20px;
    background: var(--wd-white);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius-lg);
    margin-bottom: 24px;
    transition: all var(--wd-trans);
}
.wd-contact-box:hover { box-shadow: var(--wd-shadow); border-color: var(--wd-gold); }
.wd-contact-icon {
    width: 64px; height: 64px;
    background: rgba(200,169,110,.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 24px;
    color: var(--wd-gold);
    margin: 0 auto 16px;
}
.wd-contact-box h4 { font-size: 1rem; margin-bottom: 8px; }
.wd-contact-box p { font-size: 14px; color: var(--wd-text-light); margin: 0; }
.wd-map { }
.wd-map-canvas { width: 100%; height: 380px; border-radius: var(--wd-radius-lg); overflow: hidden; }
.wd-contact-form-wrap {
    background: var(--wd-white);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius-lg);
    padding: 40px;
}
.wd-contact-form-wrap .form-control {
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius);
    padding: 10px 14px;
    font-size: 14px;
    color: var(--wd-text);
    transition: border-color var(--wd-trans);
}
.wd-contact-form-wrap .form-control:focus {
    border-color: var(--wd-gold);
    box-shadow: 0 0 0 3px rgba(200,169,110,.12);
    outline: none;
}
.wd-apply-form {
    background: var(--wd-bg);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius-lg);
    padding: 32px;
    margin-top: 16px;
}
.wd-apply-form .form-control { border: 1px solid var(--wd-border); border-radius: var(--wd-radius); padding: 10px 14px; font-size: 14px; }
.wd-apply-form .form-control:focus { border-color: var(--wd-gold); box-shadow: 0 0 0 3px rgba(200,169,110,.12); outline: none; }

/* =============================================
   JOB PAGE
   ============================================= */
.wd-job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--wd-white);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius-lg);
    margin-bottom: 16px;
    transition: all var(--wd-trans);
}
.wd-job-item:hover { box-shadow: var(--wd-shadow); border-color: var(--wd-gold); }
.wd-job-title { font-size: 1rem; margin-bottom: 10px; }
.wd-job-title a { color: var(--wd-dark); }
.wd-job-title a:hover { color: var(--wd-gold); }
.wd-job-salary { font-size: 14px; color: var(--wd-rose); margin-left: 12px; }
.wd-job-tags { display: flex; flex-wrap: wrap; gap: 10px; font-size: 12px; color: var(--wd-text-light); }
.wd-job-tags span i { color: var(--wd-gold); margin-right: 4px; }
.wd-job-action { text-align: right; flex-shrink: 0; }
.wd-job-detail-info { background: var(--wd-bg2); border-radius: var(--wd-radius-lg); padding: 20px 24px; margin: 20px 0; }
.wd-job-detail-info .row { gap: 12px 0; font-size: 14px; }
.wd-job-detail-label { color: var(--wd-text-light); }

/* =============================================
   HONOR PAGE
   ============================================= */
.wd-honor-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--wd-radius);
    cursor: pointer;
}
.wd-honor-item img { width: 100%; height: 200px; object-fit: cover; transition: transform .5s ease; }
.wd-honor-item:hover img { transform: scale(1.05); }
.wd-honor-caption {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(26,10,10,.7));
    color: #fff;
    font-size: 13px;
    padding: 20px 12px 10px;
    text-align: center;
}

/* =============================================
   CATEGORY PAGE
   ============================================= */
.wd-category-card {
    display: block;
    border-radius: var(--wd-radius-lg);
    overflow: hidden;
    margin-bottom: 24px;
    position: relative;
    box-shadow: var(--wd-shadow);
    transition: all var(--wd-trans);
}
.wd-category-card:hover { transform: translateY(-6px); box-shadow: var(--wd-shadow-lg); }
.wd-category-img {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.wd-category-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26,10,10,.35);
    transition: background var(--wd-trans);
}
.wd-category-card:hover .wd-category-img::after { background: rgba(26,10,10,.2); }
.wd-category-img-placeholder { background-color: var(--wd-dark2); }
.wd-category-label {
    background: var(--wd-gold);
    color: #fff;
    text-align: center;
    padding: 14px;
    font-size: 1rem;
    letter-spacing: .05em;
}

/* =============================================
   FILTER BAR
   ============================================= */
.wd-filter-bar {
    background: var(--wd-bg);
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius-lg);
    padding: 16px 20px;
    margin-bottom: 28px;
}
.wd-filter-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px dashed var(--wd-border);
}
.wd-filter-group:last-child { border: none; }
.wd-filter-label { font-size: 13px; color: var(--wd-text-light); white-space: nowrap; min-width: 60px; }
.wd-filter-group ul { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.wd-filter-group ul li a {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    color: var(--wd-text-light);
    border: 1px solid var(--wd-border);
    transition: all var(--wd-trans);
}
.wd-filter-group ul li a:hover,
.wd-filter-group ul li a.active { background: var(--wd-gold); border-color: var(--wd-gold); color: #fff; }

/* =============================================
   PAGINATION
   ============================================= */
.wd-pagination { padding: 32px 0 0; text-align: center; }
.wd-pagination .pagination { justify-content: center; gap: 4px; }
.wd-pagination .page-link {
    border: 1px solid var(--wd-border);
    color: var(--wd-text);
    border-radius: var(--wd-radius) !important;
    padding: 7px 13px;
    font-size: 14px;
    transition: all var(--wd-trans);
}
.wd-pagination .page-link:hover { background: var(--wd-gold); border-color: var(--wd-gold); color: #fff; }
.wd-pagination .page-item.active .page-link { background: var(--wd-gold); border-color: var(--wd-gold); color: #fff; }
.wd-pagination .page-item.disabled .page-link { color: var(--wd-text-light); }

/* =============================================
   ERROR / SUCCESS PAGE
   ============================================= */
.wd-error-page {
    padding: 120px 0;
    background: var(--wd-bg);
}
.wd-error-code {
    font-family: var(--wd-font-serif);
    font-size: 8rem;
    font-weight: 300;
    color: var(--wd-gold);
    line-height: 1;
    margin-bottom: 16px;
    opacity: .6;
}
.wd-success-icon { font-size: 5rem; color: #6abf8e; margin-bottom: 16px; }
.wd-error-title { font-size: 1.8rem; margin-bottom: 12px; }
.wd-error-desc { color: var(--wd-text-light); margin-bottom: 32px; }

/* =============================================
   SEARCH PAGE
   ============================================= */
.wd-search-bar { margin-bottom: 40px; }
.wd-search-form-lg {
    display: flex;
    border: 1px solid var(--wd-border);
    border-radius: var(--wd-radius-lg);
    overflow: hidden;
}
.wd-search-form-lg input {
    flex: 1;
    border: none;
    padding: 14px 20px;
    font-size: 15px;
    outline: none;
    color: var(--wd-text);
    background: var(--wd-white);
}
.wd-search-form-lg button {
    background: var(--wd-gold);
    color: #fff;
    border: none;
    padding: 0 28px;
    font-size: 14px;
    cursor: pointer;
    display: flex; align-items: center; gap: 8px;
    transition: background var(--wd-trans);
}
.wd-search-form-lg button:hover { background: var(--wd-gold-dark); }
.wd-search-result-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--wd-border);
}
.wd-search-result-item h4 a { color: var(--wd-dark); }
.wd-search-result-item h4 a:hover { color: var(--wd-gold); }
.wd-search-result-item p { color: var(--wd-text-light); font-size: 14px; }
.wd-search-meta { font-size: 12px; color: var(--wd-text-light); }
.wd-search-meta span { margin-right: 14px; }
.wd-no-content { color: var(--wd-text-light); text-align: center; padding: 40px; font-size: 14px; }

/* =============================================
   MAIN CONTENT (Rich Text)
   ============================================= */
.main-content { line-height: 1.9; color: var(--wd-text); }
.main-content img { max-width: 100%; height: auto; border-radius: var(--wd-radius); margin: 8px 0; }
.main-content h1,.main-content h2,.main-content h3,.main-content h4 { margin: 24px 0 12px; }
.main-content p { margin-bottom: 16px; }
.main-content a { color: var(--wd-gold); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 991px) {
    .wd-about-content { padding-left: 0; margin-top: 48px; }
    .wd-about-badge { bottom: 8px; right: 8px; }
    .wd-hero { height: 480px; }
    .wd-hero-slide { height: 480px; }
    .wd-hero-title { font-size: 2rem; }
    .wd-topbar { display: none !important; }
    .wd-search-panel { width: 280px; }
    .wd-inner-banner { height: 220px; }
    .wd-inner-banner-content h1 { font-size: 1.7rem; }
    .wd-main-section { padding: 60px 0; }
    .wd-services, .wd-about, .wd-gallery, .wd-news, .wd-partners { padding: 60px 0; }

    /* Mobile navbar */
    .wd-header .navbar-collapse {
        background: var(--wd-white);
        border-top: 1px solid var(--wd-border);
        padding: 12px 0;
        max-height: 60vh;
        overflow-y: auto;
    }
    .wd-header .navbar-nav .nav-item .nav-link { height: auto; padding: 10px 16px; }
    .wd-header .navbar-nav .nav-item .nav-link::after { display: none; }
    .wd-dropdown { box-shadow: none; border-top: none; position: static !important; float: none; padding-left: 16px; }
    .wd-search-panel { position: static; width: 100%; border-radius: 0; box-shadow: none; border-top: 1px solid var(--wd-border); }
}

@media (max-width: 767px) {
    .wd-hero { height: 380px; }
    .wd-hero-slide { height: 380px; }
    .wd-hero-title { font-size: 1.5rem; }
    .wd-hero-sub { font-size: .9rem; }
    .wd-section-title { font-size: 1.5rem; }
    .wd-article-item { flex-direction: column; }
    .wd-article-thumb { width: 100%; height: 180px; }
    .wd-product-info { padding-left: 0; margin-top: 24px; }
    .wd-stats-bar .wd-stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
    .wd-footer-main { padding: 50px 0 30px; }
    .wd-back-to-top { bottom: 16px; right: 16px; }
    .wd-contact-form-wrap { padding: 24px; }
    .wd-partner-prev, .wd-partner-next { display: none; }
    .wd-prenext { flex-direction: column; }
    .wd-job-item { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .wd-hero-title { font-size: 1.25rem; }
    .wd-stat-num { font-size: 1.8rem; }
    .wd-error-code { font-size: 5rem; }
    .wd-gallery-item img { height: 160px; }
}
