/* ============================================================
   Footer — wby-footer component styles
   Extracted from _Layout.cshtml
   ============================================================ */

.site-main {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.wby-footer {
    position: relative;
    overflow: hidden;
    color: #ffffff;
    background-color: var(--basic-color);
    margin-top: 0;
}

.wby-footer-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 55% at 50% 110%, rgba(255,255,255,0.06) 0%, transparent 65%);
    pointer-events: none;
}

.wby-footer-accent {
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 30%, var(--secondary-color) 70%, transparent 100%);
    opacity: 0.75;
}

.wby-footer-main {
    padding: 64px 0 48px;
    position: relative;
    z-index: 1;
}

/* === Logo & Description === */
.wby-footer-brand img {
    max-height: 100px;
    width: auto;
    max-width: 220px;
    display: block;
}

.wby-footer-brand-desc {
    margin-top: 18px;
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    line-height: 1.75;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* === Headings === */
.wby-footer-heading {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
}

/* === Navigation Links === */
.wby-footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.wby-footer-nav li {
    margin-bottom: 12px;
}

.wby-footer-nav a {
    color: rgba(255,255,255,0.68);
    text-decoration: none;
    font-size: 14.5px;
    display: inline-flex;
    align-items: center;
    gap: 0;
    transition: color 0.25s ease, gap 0.25s ease;
    line-height: 1.5;
}

.wby-footer-nav a .nav-arr {
    font-size: 11px;
    width: 0;
    overflow: hidden;
    opacity: 0;
    transition: width 0.25s ease, opacity 0.25s ease;
    display: inline-block;
}

.wby-footer-nav a:hover {
    color: #ffffff;
    gap: 8px;
}

.wby-footer-nav a:hover .nav-arr {
    width: 14px;
    opacity: 1;
}

[dir="ltr"] .wby-footer-nav a .nav-arr { transform: scaleX(-1); }

/* === Contact Cards === */
.wby-contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    margin-bottom: 12px;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.wby-contact-card:hover {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-2px);
    color: #ffffff;
}

.wby-contact-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: rgba(255,255,255,0.12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.25s ease;
}

.wby-contact-card:hover .wby-contact-card-icon {
    background: rgba(255,255,255,0.22);
}

.wby-contact-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wby-contact-card-label {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.wby-contact-card-value {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* === Social === */
.wby-social-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.wby-social-btn {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff !important;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
}

.wby-social-btn:hover {
    background: rgba(255,255,255,0.22);
    border-color: rgba(255,255,255,0.38);
    transform: translateY(-4px);
    color: #ffffff !important;
}

/* === Badge === */
.wby-footer-badge {
    font-size: 10px;
    background: var(--primary-color);
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
    font-weight: 600;
    vertical-align: middle;
    display: inline-block;
    line-height: 1.7;
}

/* === Bottom Bar === */
.wby-footer-separator {
    height: 1px;
    background: rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}

.wby-footer-bottom {
    padding: 18px 0;
    background: rgba(0,0,0,0.18);
    position: relative;
    z-index: 1;
}

.wby-footer-bottom p {
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

.wby-footer-bottom a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.wby-footer-bottom a:hover { color: #ffffff; }
.wby-footer-bottom .txt-webyan { color: rgba(255,255,255,0.82); }
.wby-footer-bottom .txt-webyan:hover { color: #ffffff; }

/* === Decorative Blobs === */
.wby-footer-blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
    z-index: 0;
}

.wby-footer-blob-1 {
    width: 420px;
    height: 420px;
    bottom: -160px;
}

[dir="rtl"] .wby-footer-blob-1 { right: -100px; }
[dir="ltr"] .wby-footer-blob-1 { left: -100px; }

.wby-footer-blob-2 {
    width: 260px;
    height: 260px;
    top: -70px;
}

[dir="rtl"] .wby-footer-blob-2 { left: 8%; }
[dir="ltr"] .wby-footer-blob-2 { right: 8%; }
