/* ==========================================================================
   VELORA PLAY — Design System & Institutional Styles
   ========================================================================== */

:root {
    --bg-deep: #020206;
    --bg-dark: #06060f;
    --bg-card: rgba(11, 8, 25, 0.65);
    --bg-card-hover: rgba(18, 14, 40, 0.85);
    
    --primary: #8b5cf6;
    --primary-light: #c084fc;
    --primary-glow: rgba(139, 92, 246, 0.35);
    
    --magenta: #d946ef;
    --magenta-light: #f472b6;
    --magenta-glow: rgba(217, 70, 239, 0.35);
    
    --cyan: #06b6d4;
    --cyan-light: #67e8f9;
    --cyan-glow: rgba(6, 182, 212, 0.35);
    
    --success: #10b981;
    --success-glow: rgba(16, 185, 129, 0.25);
    
    --error: #ef4444;
    
    --gold: #fbbf24;
    --gold-glow: rgba(251, 191, 36, 0.3);
    
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --text-dim: #6b7280;
    
    --border-glass: rgba(139, 92, 246, 0.15);
    --border-glass-focus: rgba(217, 70, 239, 0.45);
    
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* ==========================================================================
   AMBIENT GLOWS
   ========================================================================== */
.ambient-glows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.1;
    mix-blend-mode: screen;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, rgba(0,0,0,0) 70%);
    top: -200px;
    left: -100px;
}

.glow-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--magenta) 0%, rgba(0,0,0,0) 70%);
    top: 300px;
    right: -200px;
}

/* ==========================================================================
   HEADER / NAVIGATION (Matching index.php)
   ========================================================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 2, 6, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
}

header.scrolled {
    padding: 12px 0;
    background: rgba(2, 2, 6, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition-smooth);
}

header.scrolled .nav-container {
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #fff;
}

.brand-logo-img {
    display: block;
    width: 174px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.28));
}

.brand-logo-img.compact {
    width: 136px;
}

.logo span {
    font-weight: 300;
    color: var(--text-muted);
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.02em;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--magenta));
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

.btn-header {
    background: linear-gradient(135deg, var(--primary) 0%, #6d28d9 100%);
    color: #fff;
    padding: 10px 22px;
    border-radius: 99px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px var(--primary-glow);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition-bounce);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.5), 0 0 10px var(--magenta-glow);
    border-color: rgba(255, 255, 255, 0.25);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
    background: none;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 2.5px;
    background-color: var(--text-main);
    border-radius: 99px;
    transition: var(--transition-smooth);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(4, 4, 12, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        padding: 40px;
        transition: var(--transition-smooth);
        border-left: 1px solid var(--border-glass);
        z-index: 1050;
    }
    nav.active {
        right: 0;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }
    .btn-header {
        width: 100%;
        justify-content: center;
    }
}

/* ==========================================================================
   PAGES CONTENT LAYOUT
   ========================================================================== */
.main-content {
    padding-top: 130px;
    padding-bottom: 80px;
    min-height: calc(100vh - 350px);
    position: relative;
    z-index: 10;
}

.page-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.page-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid rgba(139, 92, 246, 0.25);
    padding: 8px 16px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.page-title {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #fff 30%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px;
}

.page-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ==========================================================================
   2-COLUMN LAYOUT (SIDEBAR + MAIN CONTENT)
   ========================================================================== */
.layout-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

@media (max-width: 992px) {
    .layout-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Sticky legal sidebar */
.legal-sidebar {
    position: sticky;
    top: 100px;
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.legal-sidebar h3 {
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-glass);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary-light);
}

.legal-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-nav-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    color: var(--text-muted);
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid transparent;
}

.legal-nav-list a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.05);
}

.legal-nav-list li.active a {
    color: #fff;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.15), rgba(217, 70, 239, 0.05));
    border-color: var(--border-glass);
    font-weight: 600;
    box-shadow: inset 3px 0 0 var(--primary);
}

/* Content block styling */
.content-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 576px) {
    .content-panel {
        padding: 24px 16px;
    }
}

/* Rich Document Typography */
.content-panel h2 {
    font-size: 22px;
    margin-top: 36px;
    margin-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 8px;
    color: var(--primary-light);
}

.content-panel h2:first-of-type {
    margin-top: 0;
}

.content-panel h3 {
    font-size: 17px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #fff;
}

.content-panel p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.content-panel pstrong, .content-panel strong {
    color: #fff;
}

/* Lists */
.content-panel ul {
    list-style: none;
    margin-bottom: 24px;
    padding-left: 8px;
}

.content-panel ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
    font-size: 14.5px;
    color: var(--text-muted);
}

.content-panel ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-light);
    font-size: 12px;
}

/* Custom list icon overrides (e.g. alerts or errors) */
.content-panel ul.danger-list li::before {
    content: "\f00d";
    color: var(--error);
}

/* Callout Box / Alert Box */
.callout {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid var(--border-glass);
    border-left: 4px solid var(--primary);
    border-radius: 12px;
    padding: 20px;
    margin: 24px 0;
}

.callout h4 {
    font-size: 15px;
    margin-bottom: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.callout p {
    margin-bottom: 0;
    font-size: 14px;
}

.callout.danger {
    background: rgba(239, 68, 68, 0.04);
    border-color: rgba(239, 68, 68, 0.15);
    border-left: 4px solid var(--error);
}

.callout.danger h4 {
    color: #fca5a5;
}

.callout.success {
    background: rgba(16, 185, 129, 0.04);
    border-color: rgba(16, 185, 129, 0.15);
    border-left: 4px solid var(--success);
}

.callout.success h4 {
    color: #a7f3d0;
}

/* ==========================================================================
   CONTACT PAGE SPECIFIC STYLES
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.contact-info-panel {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 20px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 30px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 0 15px var(--primary-glow);
}

.info-item:nth-child(2) .info-icon {
    background: rgba(217, 70, 239, 0.12);
    border-color: rgba(217, 70, 239, 0.15);
    color: var(--magenta-light);
    box-shadow: 0 0 15px var(--magenta-glow);
}

.info-text h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.info-text p {
    font-size: 13.5px;
    color: var(--text-muted);
}

.info-text a:hover {
    color: var(--primary-light);
}

/* Interactive Form Elements */
.field-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 16px;
}

@media (max-width: 576px) {
    .field-grid {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    padding-left: 4px;
}

.form-control {
    background: rgba(9, 9, 25, 0.8);
    border: 1px solid var(--border-glass);
    border-radius: 10px;
    padding: 12px 16px;
    color: #fff;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.form-control:focus {
    border-color: var(--border-glass-focus);
    box-shadow: 0 0 15px var(--magenta-glow);
    background: rgba(14, 14, 38, 0.9);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary) 0%, var(--magenta) 100%);
    color: #fff;
    padding: 14px 28px;
    border-radius: 99px;
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 6px 20px var(--magenta-glow);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition-bounce);
    width: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px var(--magenta-glow), 0 0 15px var(--cyan-glow);
    border-color: rgba(255, 255, 255, 0.25);
}

.consent-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 12px 0;
    color: var(--text-muted);
    font-size: 12.5px;
    line-height: 1.5;
}

.consent-check input {
    width: auto;
    margin-top: 3px;
    flex: 0 0 auto;
}

.consent-check a {
    color: var(--primary-light);
    font-weight: 700;
}

.consent-check.consent-all-row {
    align-items: center;
    border: 1px solid rgba(59, 130, 246, 0.85);
    background: rgba(59, 130, 246, 0.10);
    border-radius: 10px;
    padding: 12px 14px;
    color: #dfe9ff;
    font-size: 13px;
    font-weight: 800;
}

.consent-check.consent-all-row input {
    margin-top: 0;
}

.consent-check.consent-all-row strong {
    color: #77ff9d;
    margin-right: 4px;
}

.flash-message {
    padding: 12px 18px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.flash-message.success {
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.flash-message.error {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: var(--error);
}

/* ==========================================================================
   FAQ ACCORDION STYLES
   ========================================================================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: rgba(9, 9, 25, 0.5);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(11, 8, 25, 0.7);
}

.faq-trigger {
    width: 100%;
    padding: 20px 24px;
    background: none;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: var(--transition-smooth);
}

.faq-trigger i {
    font-size: 14px;
    color: var(--primary-light);
    transition: var(--transition-smooth);
}

.faq-item.active {
    border-color: var(--border-glass-focus);
    background: rgba(14, 14, 38, 0.6);
}

.faq-item.active .faq-trigger i {
    transform: rotate(180deg);
    color: var(--magenta-light);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-content-inner {
    padding: 0 24px 24px 24px;
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
}

.faq-content-inner p {
    margin-bottom: 0;
}

/* ==========================================================================
   STATUS PAGE STYLES
   ========================================================================== */
.status-header-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.08) 0%, rgba(2, 2, 6, 0.5) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.status-header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.status-pulse-large {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--success);
    position: relative;
    box-shadow: 0 0 15px var(--success);
}

.status-pulse-large::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--success);
    animation: pulse-wave 2s infinite ease-out;
}

.status-header-text h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 2px;
}

.status-header-text p {
    font-size: 13px;
    color: var(--text-muted);
}

.status-uptime-badge {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 700;
    color: var(--success);
}

.status-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.status-row {
    background: rgba(9, 9, 25, 0.5);
    border: 1px solid var(--border-glass);
    border-radius: 14px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.status-row-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.status-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.status-name i {
    color: var(--primary-light);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    color: var(--success);
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 4px 10px;
    border-radius: 99px;
}

.status-indicator-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
}

.uptime-bar {
    display: flex;
    gap: 3px;
    height: 24px;
}

.uptime-bar span {
    flex: 1;
    height: 100%;
    background: var(--success);
    opacity: 0.75;
    border-radius: 2px;
    transition: var(--transition-smooth);
}

.uptime-bar span:hover {
    opacity: 1;
    transform: scaleY(1.15);
}

.uptime-bar span.down {
    background: var(--error);
    opacity: 0.85;
}

.status-row-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    color: var(--text-dim);
}

/* ==========================================================================
   SUPPORT PAGE TICKET PREVIEW
   ========================================================================== */
.support-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

@media (max-width: 576px) {
    .support-options {
        grid-template-columns: 1fr;
    }
}

.support-opt-card {
    background: rgba(9, 9, 25, 0.4);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: var(--transition-bounce);
}

.support-opt-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-glass-focus);
    background: rgba(14, 14, 38, 0.6);
}

.support-opt-card i {
    font-size: 32px;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.support-opt-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.support-opt-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.ticket-preview-box {
    border: 1px dashed rgba(139, 92, 246, 0.3);
    background: rgba(9, 9, 25, 0.3);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ticket-preview-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.25);
    color: var(--gold);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ticket-preview-box h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.ticket-preview-box p {
    font-size: 13.5px;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto 20px auto;
}

/* ==========================================================================
   MULTI-COLUMN FOOTER STYLES (To be included in index.php)
   ========================================================================== */
footer {
    background: #020206;
    border-top: 1px solid var(--border-glass);
    padding: 64px 0 40px 0;
    position: relative;
    z-index: 20;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2.2fr;
    gap: 48px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-left .logo {
    font-size: 20px;
}

.footer-copy {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.5;
}

.footer-domain {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-domain::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--success);
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-socials a {
    width: 32px;
    height: 32px;
    display: inline-grid;
    place-items: center;
    border-radius: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 11px;
    font-weight: 900;
    transition: var(--transition-smooth);
}

.footer-socials a:first-child {
    background: linear-gradient(135deg, #1877f2, #0b4fb3);
    box-shadow: 0 12px 28px rgba(24, 119, 242, 0.2);
}

.footer-socials a:last-child {
    background: linear-gradient(135deg, #f58529, #dd2a7b 48%, #8134af 74%, #515bd4);
    box-shadow: 0 12px 28px rgba(221, 42, 123, 0.2);
}

.footer-socials a:hover {
    transform: translateY(-1px);
    padding-left: 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

@media (max-width: 576px) {
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

.footer-col h4 {
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 18px;
    font-family: 'Outfit', sans-serif;
    position: relative;
    padding-bottom: 6px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 1.5px;
    background: linear-gradient(90deg, var(--primary), var(--magenta));
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 13.5px;
    color: var(--text-dim);
    transition: var(--transition-smooth);
}

.footer-col a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}
