/* ==========================================================================
   BESAN LUXURY AGENCY - DEDICATED THEME STYLESHEET
   Matching 100% of the Besan Custom Architecture
   ========================================================================== */

/* --------------------------------------------------------------------------
   HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
.site-header.borderless-header {
    background: rgba(8, 7, 6, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-gold);
    position: sticky;
    top: 0;
    z-index: 999;
    padding: 0.6rem 2rem;
    transition: var(--transition-smooth);
}

.nav-container-seamless {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1560px;
    margin: 0 auto;
    gap: 1.5rem;
}

.brand-logo-center-luxury {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.2rem;
    flex-shrink: 0;
}

.brand-logo-img-large {
    height: 72px !important;
    max-height: 76px !important;
    width: auto !important;
    max-width: 230px !important;
    object-fit: contain !important;
    display: block !important;
    filter: drop-shadow(0 0 16px rgba(188, 154, 97, 0.25));
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu-right {
    justify-content: flex-end;
    gap: 1.8rem;
}

.nav-menu-left {
    justify-content: flex-start;
    gap: 1.8rem;
}

.nav-menu-list {
    display: flex;
    align-items: center;
    gap: 1.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link, .nav-menu-list a {
    color: var(--text-secondary);
    font-size: 0.94rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.3rem 0;
}

.nav-link:hover, .nav-menu-list a:hover,
.nav-link.active, .nav-menu-list .current-menu-item > a {
    color: var(--gold-light);
}

.nav-link::after, .nav-menu-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-menu-list a:hover::after,
.nav-link.active::after, .nav-menu-list .current-menu-item > a::after {
    width: 100%;
}

.nav-link-special {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--gold-light) !important;
}

.offers-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e74c3c;
    box-shadow: 0 0 8px #e74c3c;
    animation: pulseGlow 1.4s infinite ease-in-out;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    align-items: center;
    justify-content: center;
}

/* --------------------------------------------------------------------------
   MOBILE DRAWER
   -------------------------------------------------------------------------- */
.mobile-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.mobile-drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 85%;
    max-width: 360px;
    background: rgba(14, 12, 10, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-left: 1.5px solid var(--border-gold);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    padding: 2rem 1.8rem;
    overflow-y: auto;
}

.mobile-drawer.open {
    transform: translateX(0);
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-gold);
}

.drawer-logo {
    height: 48px;
    width: auto;
}

.drawer-close-btn {
    background: rgba(188, 154, 97, 0.12);
    border: 1px solid var(--border-gold);
    color: #ffffff;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
}

.drawer-link, .drawer-menu-list a {
    font-size: 1.15rem;
    font-weight: 700;
    color: #e5e5e5;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.drawer-link:hover, .drawer-menu-list a:hover,
.drawer-link.active {
    color: var(--gold-light);
    transform: translateX(-5px);
}

/* --------------------------------------------------------------------------
   HERO & BREADCRUMBS
   -------------------------------------------------------------------------- */
.blog-hero-header {
    padding: 4.5rem 1.5rem 2rem;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.luxury-kicker-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 1.25rem;
    border-radius: var(--radius-full);
    background: rgba(188, 154, 97, 0.12);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.4rem;
}

.kicker-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold-primary);
    box-shadow: 0 0 10px var(--gold-primary);
}

.blog-hero-title {
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg, #ffffff 30%, #e8ddca 75%, #bc9a61 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.blog-hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 820px;
    margin: 0 auto;
}

/* --------------------------------------------------------------------------
   CATEGORY FILTER PILLS
   -------------------------------------------------------------------------- */
.blog-categories-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    max-width: 1200px;
    margin: 2.5rem auto 3.5rem;
    padding: 0 1.5rem;
}

.cat-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.3rem;
    border-radius: var(--radius-full);
    background: rgba(22, 18, 14, 0.85);
    border: 1px solid var(--border-gold);
    color: var(--text-muted);
    font-size: 0.88rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.cat-pill:hover {
    background: rgba(188, 154, 97, 0.18);
    border-color: var(--gold-light);
    color: #ffffff;
    transform: translateY(-2px);
}

.cat-pill.active {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-muted) 100%);
    color: #080706;
    border-color: var(--gold-light);
    box-shadow: 0 4px 18px var(--gold-glow);
    font-weight: 800;
}

.cat-pill small {
    opacity: 0.85;
    font-size: 0.8rem;
}

/* --------------------------------------------------------------------------
   BLOG ARTICLES GRID
   -------------------------------------------------------------------------- */
.blog-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto 5rem;
    padding: 0 1.5rem;
}

.blog-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.2rem;
    align-items: stretch;
}

/* Luxury Article Card */
.luxury-article-card {
    background: var(--bg-card);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.7);
    transition: var(--transition-smooth);
    position: relative;
}

.luxury-article-card:hover {
    transform: translateY(-7px);
    border-color: var(--gold-light);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.85), 0 0 30px var(--gold-glow);
    background: var(--bg-card-hover);
}

.card-thumb-link {
    position: relative;
    width: 100%;
    height: 230px;
    overflow: hidden;
    display: block;
    background: #0d0a08;
    border-bottom: 1.5px solid var(--border-gold);
}

.article-thumb-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.luxury-article-card:hover .article-thumb-img {
    transform: scale(1.06);
}

.card-thumb-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gold-primary);
    font-size: 2.5rem;
    background: radial-gradient(circle, rgba(188, 154, 97, 0.15) 0%, rgba(8, 7, 6, 0.95) 100%);
}

.card-thumb-fallback span {
    font-size: 0.88rem;
    color: var(--gold-light);
    font-weight: 700;
}

.card-thumb-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 7, 6, 0.15) 0%, rgba(8, 7, 6, 0.7) 100%);
    pointer-events: none;
}

.card-cat-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.85rem;
    border-radius: var(--radius-full);
    background: rgba(8, 7, 6, 0.88);
    backdrop-filter: blur(10px);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
}

.card-time-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: var(--radius-full);
    background: rgba(18, 15, 12, 0.88);
    border: 1px solid var(--border-gold);
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.article-card-body {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.article-meta-row {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-bottom: 0.85rem;
}

.article-meta-row span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.article-title {
    font-size: 1.32rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.45;
    margin-bottom: 0.85rem;
}

.article-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.article-title a:hover {
    color: var(--gold-light);
}

.article-excerpt {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.article-card-footer {
    margin-top: auto;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(188, 154, 97, 0.2);
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold-light);
    font-size: 0.9rem;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.btn-read-more:hover {
    color: #ffffff;
    transform: translateX(-4px);
}

/* --------------------------------------------------------------------------
   PAGINATION
   -------------------------------------------------------------------------- */
.besan-pagination-wrapper {
    margin-top: 3.5rem;
    display: flex;
    justify-content: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    padding: 0 0.85rem;
    border-radius: var(--radius-full);
    background: rgba(22, 18, 14, 0.85);
    border: 1px solid var(--border-gold);
    color: var(--text-secondary);
    font-size: 0.92rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.page-numbers:hover {
    background: rgba(188, 154, 97, 0.2);
    border-color: var(--gold-light);
    color: #ffffff;
    transform: translateY(-2px);
}

.page-numbers.current {
    background: linear-gradient(135deg, var(--gold-primary) 0%, var(--gold-muted) 100%);
    color: #080706;
    border-color: var(--gold-light);
    font-weight: 900;
    box-shadow: 0 4px 15px var(--gold-glow);
}

/* --------------------------------------------------------------------------
   SINGLE ARTICLE PAGE
   -------------------------------------------------------------------------- */
.reading-progress-track {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3.5px;
    background: transparent;
    z-index: 1000;
}

.reading-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-light));
    box-shadow: 0 0 10px var(--gold-primary);
    transition: width 0.1s linear;
}

.article-breadcrumb-nav {
    padding: 1.5rem 0 0.5rem;
}

.article-container {
    max-width: 920px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.breadcrumb-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--text-dim);
}

.breadcrumb-links a {
    color: var(--gold-light);
    text-decoration: none;
}

.breadcrumb-links a:hover {
    color: #ffffff;
}

.bc-sep {
    color: rgba(188, 154, 97, 0.4);
}

.bc-current {
    color: #ffffff;
    font-weight: 700;
}

/* Single Header */
.article-header-hero {
    margin: 2rem 0 2.5rem;
}

.cat-badge-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    background: rgba(188, 154, 97, 0.15);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.article-hero-title {
    font-size: 2.6rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 1.5rem;
}

.article-meta-strip {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-gold);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.meta-item i {
    color: var(--gold-primary);
    font-size: 1.1rem;
}

.article-hero-thumbnail-frame {
    margin-bottom: 3rem;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1.5px solid var(--border-gold);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
    background: #0d0a08;
}

.article-hero-img {
    width: 100%;
    height: auto;
    max-height: 540px;
    object-fit: cover;
    display: block;
}

/* Rich Content Body */
.article-rich-content {
    font-size: 1.12rem;
    line-height: 2;
    color: #d6d3d1;
}

.article-rich-content p {
    margin-bottom: 1.8rem;
}

.article-rich-content h2 {
    font-size: 1.85rem;
    font-weight: 800;
    color: #ffffff;
    margin: 3rem 0 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 1.5px solid var(--border-gold);
}

.article-rich-content h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--gold-light);
    margin: 2.5rem 0 1rem;
}

.article-rich-content blockquote {
    margin: 2.5rem 0;
    padding: 1.5rem 2rem;
    background: rgba(188, 154, 97, 0.08);
    border-right: 4px solid var(--gold-primary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: #ffffff;
}

.article-rich-content ul, .article-rich-content ol {
    margin: 0 2rem 2rem 0;
}

.article-rich-content li {
    margin-bottom: 0.7rem;
}

.article-rich-content img {
    border-radius: var(--radius-md);
    border: 1px solid var(--border-gold);
    margin: 2.5rem auto;
}

/* Tags Cloud */
.article-tags-cloud {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin: 3rem 0 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid var(--border-gold);
}

.tags-label {
    font-weight: 700;
    color: var(--gold-light);
    font-size: 0.95rem;
}

.tag-chip {
    padding: 0.35rem 0.95rem;
    border-radius: var(--radius-full);
    background: rgba(22, 18, 14, 0.8);
    border: 1px solid var(--border-gold);
    color: var(--text-secondary);
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.tag-chip:hover {
    background: rgba(188, 154, 97, 0.2);
    border-color: var(--gold-light);
    color: #ffffff;
}

/* Social Share Bar */
.article-share-strip {
    background: var(--bg-card);
    border: 1.2px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.8rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.share-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.share-buttons-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.15rem;
    border-radius: var(--radius-full);
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    cursor: pointer;
    font-family: inherit;
}

.share-wa {
    background: rgba(37, 211, 102, 0.16);
    border-color: rgba(37, 211, 102, 0.4);
    color: #4ade80;
}
.share-wa:hover {
    background: #25d366;
    color: #ffffff;
}

.share-x {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}
.share-x:hover {
    background: #ffffff;
    color: #000000;
}

.share-li {
    background: rgba(10, 102, 194, 0.16);
    border-color: rgba(10, 102, 194, 0.4);
    color: #60a5fa;
}
.share-li:hover {
    background: #0a66c2;
    color: #ffffff;
}

.share-copy {
    background: rgba(188, 154, 97, 0.16);
    border-color: var(--border-gold);
    color: var(--gold-light);
}
.share-copy:hover {
    background: var(--gold-primary);
    color: #080706;
}

/* Author Card */
.article-author-card {
    background: var(--bg-card);
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.8rem;
    margin-bottom: 3.5rem;
}

.author-avatar-img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    object-fit: cover;
}

.author-name-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.4rem;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 800;
    color: #ffffff;
}

.author-badge-tag {
    padding: 0.2rem 0.65rem;
    border-radius: var(--radius-full);
    background: rgba(188, 154, 97, 0.15);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 700;
}

.author-bio {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Prev Next Nav */
.article-prev-next-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border-gold);
}

.nav-slot {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    transition: var(--transition-smooth);
}

.nav-slot:hover {
    border-color: var(--gold-light);
    transform: translateY(-3px);
}

.nav-dir-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.nav-post-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
}

/* Related Articles */
.related-articles-section {
    margin-bottom: 4.5rem;
}

.section-title-gold-row {
    margin-bottom: 2rem;
    border-bottom: 1.5px solid var(--border-gold);
    padding-bottom: 0.85rem;
}

.section-title-gold {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--gold-light);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.related-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.related-card-item {
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.related-card-item:hover {
    border-color: var(--gold-light);
    transform: translateY(-4px);
}

.related-thumb-box {
    width: 100%;
    height: 150px;
    background: #0d0a08;
    overflow: hidden;
}

.related-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-card-item:hover .related-img {
    transform: scale(1.06);
}

.related-content-box {
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.related-date {
    font-size: 0.75rem;
    color: var(--text-dim);
    margin-bottom: 0.35rem;
}

.related-title {
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.45;
}

/* Comments Block */
.comments-area {
    background: var(--bg-card);
    border: 1.5px solid var(--border-gold);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 5rem;
}

.comments-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--gold-light);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid var(--border-gold);
    padding-bottom: 1rem;
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}

.comment-body {
    background: rgba(22, 18, 14, 0.6);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-md);
    padding: 1.4rem;
    margin-bottom: 1.2rem;
}

.comment-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.comment-author .fn {
    font-weight: 800;
    color: #ffffff;
}

.comment-content {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.comment-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.form-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--gold-light);
}

.comment-textarea, .comment-form input[type="text"], .comment-form input[type="email"] {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border-radius: var(--radius-sm);
    background: rgba(14, 12, 10, 0.9);
    border: 1px solid var(--border-gold);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.comment-textarea:focus, .comment-form input:focus {
    border-color: var(--gold-light);
    outline: none;
    box-shadow: 0 0 15px var(--gold-glow);
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
    background: rgba(5, 4, 3, 0.98);
    border-top: 1.5px solid var(--border-gold);
    padding: 4.5rem 1.5rem 2rem;
    margin-top: auto;
}

.footer-container {
    max-width: 1560px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
    gap: 3rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(188, 154, 97, 0.2);
}

.footer-logo-img {
    height: 60px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    margin-bottom: 1.2rem;
}

.footer-brand-desc {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.footer-social-row {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(188, 154, 97, 0.12);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.15rem;
    transition: var(--transition-smooth);
}

.footer-social-btn:hover {
    background: var(--gold-primary);
    color: #080706;
    transform: translateY(-3px) scale(1.08);
}

.footer-col-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.4rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 35px;
    height: 2px;
    background: var(--gold-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--gold-light);
    transform: translateX(-4px);
}

.footer-links i {
    color: var(--gold-primary);
    font-size: 0.85rem;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.88rem;
    color: var(--text-secondary);
}

.footer-icon-badge {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(188, 154, 97, 0.15);
    border: 1px solid var(--border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 0.9rem;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
}
.footer-bottom-links a:hover {
    color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   FLOATING ACTIONS
   -------------------------------------------------------------------------- */
.floating-whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    z-index: 990;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.floating-whatsapp-btn:hover {
    transform: scale(1.1) rotate(6deg);
    color: #ffffff;
}

.whatsapp-ping {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid #25d366;
    animation: pingRipple 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes pingRipple {
    75%, 100% { transform: scale(1.6); opacity: 0; }
}

.back-to-top-btn {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(18, 15, 12, 0.9);
    border: 1px solid var(--border-gold);
    color: var(--gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 990;
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top-btn:hover {
    background: var(--gold-primary);
    color: #080706;
    transform: translateY(-3px);
}

/* --------------------------------------------------------------------------
   RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
    .nav-menu-right, .nav-menu-left {
        display: none !important;
    }
    .mobile-menu-btn {
        display: flex !important;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .blog-hero-title {
        font-size: 2rem;
    }
    .blog-articles-grid {
        grid-template-columns: 1fr;
    }
    .article-hero-title {
        font-size: 1.85rem;
    }
    .related-cards-grid {
        grid-template-columns: 1fr;
    }
    .article-prev-next-nav {
        grid-template-columns: 1fr;
    }
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}