* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.site-main {
    margin-top: 50px;
}

.site-main {
    flex: 1;
}

.site {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

:root {
    --bg-primary: #080C16;
    --bg-secondary: #0F1629;
    --bg-card: rgba(18, 27, 48, 0.75);
    --bg-card-solid: #121B30;
    --accent-cyan: #00E5FF;
    --accent-magenta: #FF2D78;
    --accent-gradient: linear-gradient(135deg, #00E5FF, #FF2D78);
    --accent-gradient-soft: linear-gradient(135deg, rgba(0, 229, 255, 0.12), rgba(255, 45, 120, 0.12));
    --text-white: #FFFFFF;
    --text-gray: #94A3B8;
    --text-muted: #64748B;
    --border-glass: rgba(255, 255, 255, 0.06);
    --border-glass-hover: rgba(0, 229, 255, 0.25);
    --shadow-glass: 0 25px 70px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 60px rgba(0, 229, 255, 0.12);
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --radius-sm: 10px;
    --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --full-container: 1400px;
}


.container {
    max-width: var(--full-container);
    margin: 0 auto;
    padding: 24px 24px;
    width: 100%;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ============================================================
                   DEMO CONTENT STYLES
                   ============================================================ */
.demo-content {
    padding-top: 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
}

.demo-content h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.demo-content p {
    color: var(--text-gray);
    font-size: clamp(1rem, 1.2vw, 1.2rem);
    max-width: 520px;
    margin-bottom: 32px;
}

.demo-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    background: var(--accent-gradient-soft);
    border: 1px solid rgba(0, 229, 255, 0.12);
    color: var(--accent-cyan);
    margin-bottom: 20px;
}

.demo-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 44px;
    background: var(--accent-gradient);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    border-radius: 60px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
    border: none;
    cursor: pointer;
}

.demo-btn:hover {
    transform: scale(1.04) translateY(-2px);
    box-shadow: 0 0 60px rgba(0, 229, 255, 0.35);
}

.demo-section {
    padding: 60px 20px;
    border-top: 1px solid var(--border-glass);
}

.demo-section h2 {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 12px;
}

.demo-section .subtitle {
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 860px;
    margin: 30px auto 0;
}

.demo-card {
    padding: 28px 22px;
    border-radius: 16px;
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.demo-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 229, 255, 0.25);
}

.demo-card .icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 12px;
}

.demo-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.demo-card p {
    color: var(--text-gray);
    font-size: 0.88rem;
    line-height: 1.5;
}

/* ============================================================
                   HEADER — IMPROVED DESIGN
                   ============================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 12px 0;
    transition: background 0.4s ease, backdrop-filter 0.4s ease,
        box-shadow 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
    background: #000000;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(8, 12, 22, 0.94);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.4);
    padding: 8px 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

/* ===== LOGO ===== */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
}

.logo-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo:hover .logo-icon {
    transform: rotate(-8deg) scale(1.06);
}

.logo-text {
    font-size: 1.55rem;
    font-weight: 900;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0px;
}

.logo-cm {
    color: #ffffff;
    transition: color 0.3s ease;
}

.logo-oo {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo:hover .logo-cm {
    color: var(--accent-cyan);
}

/* ===== NAVIGATION ===== */
.nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 4px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 60px;
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
    position: relative;
    background: transparent;
    white-space: nowrap;
}

.nav-link i {
    font-size: 0.85rem;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-link:hover i {
    opacity: 1;
    transform: scale(1.15);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 4px;
    transition: width 0.35s ease, left 0.35s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 40%;
    left: 30%;
}

.nav-link.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
}

/* Live Cam Badge */
.nav-link .live-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 10px;
    border-radius: 60px;
    background: #FF2D78;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.5px;
    animation: livePulse 1.8s ease-in-out infinite;
}

.nav-link .live-badge i {
    font-size: 0.45rem;
    opacity: 1;
    color: #fff;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.95);
    }
}

/* ===== NAV CTA BUTTON ===== */
.nav-cta-wrapper {
    margin-left: 4px;
}

.nav-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 22px;
    border-radius: 60px;
    background: var(--accent-gradient);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-cta-btn:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.35);
}

.nav-cta-btn:hover::before {
    opacity: 1;
}

.nav-cta-btn:active {
    transform: scale(0.95);
}

.cta-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    display: inline-block;
    animation: ctaPulse 2.2s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.3;
        transform: scale(0.6);
    }
}

/* ===== HEADER ACTIONS ===== */
.header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* ===== HAMBURGER ===== */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.05);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #ffffff;
    border-radius: 4px;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
        opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
    width: 26px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
    width: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
    width: 26px;
}

/* ============================================================
                   MOBILE MENU — IMPROVED
                   ============================================================ */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

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

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 1001;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    overflow-y: auto;
}

.mobile-nav.open {
    right: 0;
}

/* Mobile Header */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 28px;
}

.mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-nav-brand .brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    color: #fff;
}

.mobile-nav-brand .brand-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.3px;
}

.mobile-nav-brand .brand-text span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--text-gray);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease,
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mobile-close:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transform: rotate(90deg) scale(1.05);
}

/* Mobile Nav Links */
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    border-radius: 14px;
    color: var(--text-gray);
    font-size: 1.05rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
}

.mobile-nav-link i {
    font-size: 1.2rem;
    opacity: 0.5;
    transition: opacity 0.3s ease, transform 0.3s ease;
    width: 28px;
    text-align: center;
}

.mobile-nav-link .nav-arrow {
    margin-left: auto;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.mobile-nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.06);
    padding-left: 24px;
}

.mobile-nav-link:hover i {
    opacity: 1;
    transform: scale(1.15);
}

.mobile-nav-link:hover .nav-arrow {
    opacity: 1;
    transform: translateX(0);
}

.mobile-nav-link.active {
    color: #ffffff;
    background: rgba(0, 229, 255, 0.06);
    border-color: rgba(0, 229, 255, 0.12);
}

.mobile-nav-link.active i {
    opacity: 1;
}

/* Live Cam Badge in Mobile */
.mobile-nav-link .live-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 10px;
    border-radius: 60px;
    background: #FF2D78;
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: 0.5px;
    margin-left: 4px;
    animation: livePulse 1.8s ease-in-out infinite;
}

.mobile-nav-link .live-badge i {
    font-size: 0.4rem;
    opacity: 1;
    color: #fff;
    width: auto;
}

/* Mobile CTA */
.mobile-nav-link.mobile-cta {
    margin-top: 16px;
    background: var(--accent-gradient-soft);
    border: 1px solid rgba(0, 229, 255, 0.12);
    color: #ffffff;
    font-weight: 600;
    justify-content: center;
    padding: 16px 20px;
    gap: 12px;
    border-radius: 60px;
}

.mobile-premium-item {
    position: relative;
    margin-top: 16px;
    margin-bottom: 16px;
    padding-top: 12px;
}

.mobile-premium-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--border-glass);
}

.mobile-nav-link.mobile-cta:hover {
    background: var(--accent-gradient);
    transform: scale(1.02);
    padding-left: 20px;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
    border-color: transparent;
}

.mobile-nav-link.mobile-cta i {
    opacity: 1;
}

.mobile-nav-link.mobile-cta .nav-arrow {
    opacity: 0;
    transform: translateX(-4px);
}

.mobile-nav-link.mobile-cta:hover .nav-arrow {
    opacity: 1;
    transform: translateX(4px);
}


/* Mobile Footer */
/* .mobile-nav-footer {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: auto;
} */

.mobile-footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.mobile-footer-links a {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

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

.mobile-socials {
    display: flex;
    gap: 14px;
    justify-content: center;
}

.mobile-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    text-decoration: none;
    transition: border-color 0.3s ease, color 0.3s ease,
        transform 0.3s ease, background 0.3s ease;
}

.mobile-socials a:hover {
    border-color: rgba(0, 229, 255, 0.3);
    color: #ffffff;
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.04);
}

.mobile-nav-copy {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.7rem;
    margin-top: 16px;
    opacity: 0.5;
    letter-spacing: 0.3px;
}

/* ============================================================
                   RESPONSIVE
                   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .header-container {
        padding: 0 24px;
    }

    .nav {
        display: none;
    }

    .logo-text {
        font-size: 1.35rem;
    }

    .logo-icon {
        width: 34px;
        height: 34px;
    }

    .header-actions {
        margin-left: auto;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        margin: 0;
        flex-shrink: 0;
    }

    .hamburger span {
        margin: 0;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .header {
        padding: 10px 0;
    }

    .header.scrolled {
        padding: 6px 0;
    }

    .header-container {
        padding: 0 16px;
        gap: 10px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .logo {
        gap: 8px;
    }

    .hamburger {
        width: 38px;
        height: 38px;
        padding: 6px;
    }

    .hamburger span {
        width: 20px;
        height: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
        width: 22px;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
        width: 22px;
    }

    .mobile-nav {
        max-width: 100%;
        padding: 20px 20px;
    }

    .mobile-nav-brand .brand-text {
        font-size: 1.05rem;
    }

    .mobile-nav-brand .brand-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .mobile-nav-link {
        padding: 14px 16px;
        font-size: 0.98rem;
    }

    .mobile-nav-link i {
        font-size: 1.05rem;
        width: 24px;
    }

    .mobile-nav-link.mobile-cta {
        padding: 14px 16px;
    }

    .mobile-nav-header {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .mobile-close {
        width: 40px;
        height: 40px;
    }

    .demo-content {
        padding-top: 80px;
        min-height: 80vh;
    }

    .demo-content h1 {
        font-size: 2rem;
    }

    .demo-content p {
        font-size: 0.95rem;
        padding: 0 8px;
    }

    .demo-btn {
        padding: 12px 32px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .demo-grid {
        grid-template-columns: 1fr;
        padding: 0 4px;
        gap: 14px;
    }

    .demo-card {
        padding: 20px 16px;
    }

    .demo-section {
        padding: 40px 16px;
    }

    .demo-section h2 {
        font-size: 1.4rem;
    }

    .mobile-socials a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .mobile-footer-links {
        gap: 14px;
    }

    .mobile-footer-links a {
        font-size: 0.75rem;
    }
}

/* Small mobile */
@media (max-width: 400px) {
    .header-container {
        padding: 0 12px;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .logo-icon {
        width: 24px;
        height: 24px;
    }

    .logo {
        gap: 6px;
    }

    .hamburger {
        width: 34px;
        height: 34px;
    }

    .hamburger span {
        width: 18px;
        height: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(5.5px) rotate(45deg);
        width: 20px;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-5.5px) rotate(-45deg);
        width: 20px;
    }

    .mobile-nav {
        padding: 16px 16px;
    }

    .mobile-nav-link {
        padding: 12px 14px;
        font-size: 0.9rem;
        gap: 12px;
    }

    .mobile-nav-link i {
        font-size: 0.95rem;
        width: 22px;
    }

    .mobile-close {
        width: 38px;
        height: 38px;
    }

    .mobile-nav-brand .brand-text {
        font-size: 0.95rem;
    }

    .mobile-nav-brand .brand-icon {
        width: 28px;
        height: 28px;
        font-size: 0.75rem;
    }

    .demo-content h1 {
        font-size: 1.6rem;
    }

    .demo-card h3 {
        font-size: 0.95rem;
    }
}

/* ============================================================
                   SCROLLBAR
                   ============================================================ */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-cyan);
    border-radius: 10px;
}

.mobile-nav::-webkit-scrollbar {
    width: 3px;
}

.mobile-nav::-webkit-scrollbar-track {
    background: transparent;
}

.mobile-nav::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
}


/* Footer */
.footer {
    background: var(--bg-footer);
    border-top: 1px solid var(--border-glass);
    padding: 30px 0 5px;
    position: relative;
    overflow: hidden;
}

/* Subtle gradient glow at top of footer */
.footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-gradient);
    opacity: 0.3;
}

/* Footer Top — Main Grid */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 30px;
/*     padding-bottom: 40px; */
    border-bottom: 1px solid var(--border-glass);
}

/* Brand Column */
.footer-brand .logo {
    display: inline-flex;
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    font-size: 1.5rem;
}

.footer-brand .logo-icon {
    width: 38px;
    height: 38px;
}

.footer-brand p {
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.8;
    max-width: 340px;
    margin-bottom: 20px;
}

.footer-brand .tagline {
    color: var(--text-muted);
    font-size: 0.8rem;
    letter-spacing: 0.3px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--accent-cyan);
    color: #ffffff;
    transform: translateY(-3px);
    background: rgba(0, 229, 255, 0.06);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.1);
}

/* Footer Columns */
.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-muted);
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 4px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-gray);
    font-size: 0.88rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a i {
    font-size: 0.7rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.3s ease;
    color: var(--accent-cyan);
}

.footer-col ul li a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-col ul li a:hover i {
    opacity: 1;
    transform: translateX(0);
}

/* Contact Info in Footer */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-gray);
    font-size: 0.88rem;
    margin-bottom: 14px;
    line-height: 1.6;
}

.footer-contact li i {
    color: var(--accent-cyan);
    font-size: 1rem;
    width: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.footer-contact li a {
    color: var(--text-gray);
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: var(--accent-cyan);
}

/* Newsletter */
.footer-newsletter p {
    color: var(--text-gray);
    font-size: 0.88rem;
    margin-bottom: 14px;
    line-height: 1.6;
}

.footer-newsletter .input-group {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 60px;
    padding: 4px;
    border: 1px solid var(--border-glass);
    transition: border-color 0.3s ease;
}

.footer-newsletter .input-group:focus-within {
    border-color: var(--accent-cyan);
}

.footer-newsletter .input-group input {
    flex: 1;
    padding: 10px 18px;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 0.85rem;
    font-family: inherit;
    min-width: 0;
}

.footer-newsletter .input-group input::placeholder {
    color: var(--text-muted);
}

.footer-newsletter .input-group button {
    padding: 10px 22px;
    border-radius: 60px;
    background: var(--accent-gradient);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
}

.footer-newsletter .input-group button:hover {
    transform: scale(1.04);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
}

.footer-bottom .copyright {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-bottom .copyright span {
    color: var(--accent-cyan);
}

/* Legal menu wrapper */

.footer-bottom .legal-links .footer-legal-menu>li>a {
    font-family: "Inter", Arial, sans-serif !important;
    font-weight: 400;
    font-style: normal;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-bottom .legal-links {
    display: flex;
    align-items: center;
}

.footer-bottom .legal-links {
    margin-left: auto;
}

.footer-bottom .legal-links ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;

    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-bottom .legal-links ul li {
    display: flex;
    align-items: center;
    gap: 6px;

    margin: 0;
    padding: 0;
    color: var(--text-muted);
    font-size: 0.8rem;
    white-space: nowrap;
}

.footer-bottom .legal-links ul li a {
    color: inherit;
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom .legal-links ul li:hover,
.footer-bottom .legal-links ul li:hover a {
    color: #ffffff;
}

.footer-bottom .legal-links ul li::before {
    font-size: 0.7rem;
    line-height: 1;
}


/* ============================================================
                   RESPONSIVE — FOOTER
                   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-col h4::after {
        width: 24px;
    }
}

/* Mobile */
@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
        padding-bottom: 28px;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-brand .logo {
        justify-content: center;
    }

    .footer-brand p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
    }

    .footer-col ul li a {
        justify-content: center;
    }

    .footer-col ul li a i {
        display: none;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-newsletter {
        text-align: center;
    }

    .footer-newsletter .input-group {
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-newsletter .input-group input {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    .footer-newsletter .input-group button {
        padding: 8px 18px;
        font-size: 0.8rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding-top: 20px;
    }

    /* .footer-bottom .legal-links li a {
        justify-content: center;
        gap: 16px;
    } */



    .footer-bottom .copyright {
        font-size: 0.75rem;
    }
}

/* Small mobile */
@media (max-width: 400px) {
    .container {
        padding: 0 12px;
    }

    .footer {
        padding: 30px 0 16px;
    }

    .footer-top {
        gap: 22px;
        padding-bottom: 22px;
    }

    .footer-brand .logo-text {
        font-size: 1.2rem;
    }

    .footer-brand .logo-icon {
        width: 30px;
        height: 30px;
    }

    .footer-brand p {
        font-size: 0.85rem;
    }

    .footer-col h4 {
        font-size: 0.75rem;
    }

    .footer-col ul li a {
        font-size: 0.82rem;
    }

    .footer-contact li {
        font-size: 0.82rem;
    }

    .footer-newsletter .input-group {
        flex-direction: column;
        border-radius: 16px;
        padding: 12px;
        background: rgba(255, 255, 255, 0.03);
    }

    .footer-newsletter .input-group input {
        text-align: center;
        padding: 10px;
    }

    .footer-newsletter .input-group button {
        width: 100%;
        justify-content: center;
        padding: 12px;
    }

    .footer-bottom ul li .legal-links {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom .legal-links {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    .footer-bottom .legal-links ul {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: fit-content;
        margin: 0 auto;
        padding: 0;
    }

    .footer-bottom .legal-links li {
        width: auto;
        text-align: center;
    }
}

/* ============================================================
                   SCROLLBAR
                   ============================================================ */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-cyan);
    border-radius: 10px;
}

/* End Footer */

/* About page CSS */
/* ============================================================
                        SECTION UTILITY
============================================================ */
.section-badge {
    display: inline-block;
    padding: 6px 20px;
    border-radius: 60px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    background: var(--accent-gradient-soft);
    border: 1px solid rgba(0, 229, 255, 0.12);
    color: var(--accent-cyan);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(2rem, 3.8vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

.section-title .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-sub {
    color: var(--text-gray);
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    max-width: 600px;
    line-height: 1.7;
}

.section-center {
    text-align: center;
}

.section-center .section-sub {
    margin-left: auto;
    margin-right: auto;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-glass);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.glass-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glass-hover);
    box-shadow: var(--shadow-glass), var(--shadow-glow);
}


/* ============================================================
                        ABOUT HERO
============================================================ */
.about-hero {
    padding: 30px 0 30px;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 45, 120, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-hero-text h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.about-hero-text p {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: var(--text-gray);
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-hero-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.about-hero-stats .stat {
    display: flex;
    flex-direction: column;
}

.about-hero-stats .stat .number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.about-hero-stats .stat .label {
    color: var(--text-gray);
    font-size: 0.85rem;
    font-weight: 500;
}

.about-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-hero-visual .visual-card {
    width: 100%;
    max-width: 480px;
    padding: 40px 32px;
    text-align: center;
    border-radius: var(--radius-xl);
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
    position: relative;
    overflow: hidden;
}

.about-hero-visual .visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 229, 255, 0.02), transparent, rgba(255, 45, 120, 0.02), transparent);
    animation: rotate-bg 30s linear infinite;
}

@keyframes rotate-bg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.about-hero-visual .visual-card>* {
    position: relative;
    z-index: 2;
}

.about-hero-visual .visual-card .emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 16px;
}

.about-hero-visual .visual-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.about-hero-visual .visual-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    max-width: 320px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================================
                        MISSION & VALUES
============================================================ */
.mission-section {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
	margin-bottom:15px;
    /* width: 100vw;*/
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    align-items: center;
}

.mission-text p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 16px;
}

.mission-text p:last-child {
    margin-bottom: 0;
}

.mission-text .highlight-text {
    color: var(--accent-cyan);
    font-weight: 500;
}

.mission-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.value-card {
    padding: 24px 20px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    text-align: center;
    transition: border-color var(--transition), transform var(--transition);
}

.value-card:hover {
    border-color: var(--border-glass-hover);
    transform: translateY(-4px);
}

.value-card .icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.value-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.value-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ============================================================
                            TEAM SECTION
============================================================ */
.team-section {
    padding: 70px 0 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.team-card {
    padding: 30px 20px;
    text-align: center;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    transition: transform var(--transition), border-color var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glass-hover);
}

.team-card .avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.15);
}

.team-card .avatar.second {
    background: linear-gradient(135deg, #FF2D78, #ff6b9d);
}

.team-card .avatar.third {
    background: linear-gradient(135deg, #FF6B35, #FFB347);
}

.team-card .avatar.fourth {
    background: linear-gradient(135deg, #00C9A7, #00E5FF);
}

.team-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.team-card .role {
    color: var(--accent-cyan);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.team-card p {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ============================================================
                    TIMELINE / MILESTONES
============================================================ */
.timeline-section {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);

    /* width: 100vw;*/
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.timeline-item {
    padding: 28px 20px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    text-align: center;
    transition: border-color var(--transition), transform var(--transition);
    position: relative;
}

.timeline-item:hover {
    border-color: var(--border-glass-hover);
    transform: translateY(-4px);
}

.timeline-item .year {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    display: block;
    margin-bottom: 6px;
}

.timeline-item .event {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.timeline-item .desc {
    color: var(--text-gray);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-top: 4px;
}

/* ============================================================
                        CTA SECTION
============================================================ */
.cta-banner {
    padding: 30px 30px;
    border-radius: var(--radius-xl);
    text-align: center;
    background: radial-gradient(circle at 20% 30%, rgba(0, 229, 255, 0.06), transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(255, 45, 120, 0.06), transparent 60%),
        var(--bg-secondary);
    border: 1px solid var(--border-glass);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glass);
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 229, 255, 0.02), transparent, rgba(255, 45, 120, 0.02), transparent);
    animation: rotate-bg 40s linear infinite;
}

.cta-banner>* {
    position: relative;
    z-index: 2;
}

.cta-banner h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.cta-banner p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 28px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 48px;
    background: var(--accent-gradient);
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 60px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.2);
    border: none;
    cursor: pointer;
}

.cta-banner .btn-primary:hover {
    transform: scale(1.04) translateY(-2px);
    box-shadow: 0 0 60px rgba(0, 229, 255, 0.35);
}

/* ============================================================
                        RESPONSIVE
============================================================ */

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .about-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-hero-text p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-stats {
        justify-content: center;
    }

    .about-hero-visual .visual-card {
        max-width: 100%;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .mission-values {
        max-width: 500px;
        margin: 0 auto;
    }

    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .about-hero {
        padding: 30px 0 30px;
        min-height: auto;
        width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    .about-hero-text h1 {
        font-size: 2.2rem;
    }

    .about-hero-text p {
        font-size: 0.95rem;
    }

    .about-hero-stats {
        gap: 20px;
    }

    .about-hero-stats .stat .number {
        font-size: 1.6rem;
    }

    .about-hero-visual .visual-card {
        padding: 30px 20px;
    }

    .about-hero-visual .visual-card .emoji {
        font-size: 3rem;
    }

    .mission-grid {
        gap: 24px;
    }

    .mission-text p {
        font-size: 0.95rem;
    }

    .mission-values {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .value-card {
        padding: 18px 14px;
    }

    .value-card .icon {
        font-size: 1.6rem;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .team-card {
        padding: 20px 16px;
    }

    .team-card .avatar {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }

    .timeline-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .timeline-item {
        padding: 20px 14px;
    }

    .timeline-item .year {
        font-size: 1.6rem;
    }

    .cta-banner {
        padding: 30px 20px;
        border-radius: var(--radius-lg);
        margin-bottom: 30px;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }

    .cta-banner .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 0 12px;
    }

    .about-hero-text h1 {
        font-size: 1.8rem;
    }

    .about-hero-stats {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .mission-values {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .timeline-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .timeline-item .year {
        font-size: 1.3rem;
    }

    .timeline-item .event {
        font-size: 0.85rem;
    }

    .timeline-item .desc {
        font-size: 0.75rem;
    }

    .about-hero-visual .visual-card h3 {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.4rem;
    }
}

/* End About page CSS */

/* Contact Us page CSS */
/* ============================================================
                            CONTACT HERO
============================================================ */
.contact-hero {
    padding: 30px 0 30px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 45, 120, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-hero-text h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.contact-hero-text p {
    font-size: clamp(1rem, 1.2vw, 1.15rem);
    color: var(--text-gray);
    max-width: 500px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.contact-hero-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-hero-badges .badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 60px;
    background: var(--accent-gradient-soft);
    border: 1px solid rgba(0, 229, 255, 0.1);
    color: var(--text-gray);
    font-size: 0.85rem;
}

.contact-hero-badges .badge i {
    color: var(--accent-cyan);
}

.contact-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-hero-visual .visual-card {
    width: 100%;
    max-width: 480px;
    padding: 40px 32px;
    text-align: center;
    border-radius: var(--radius-xl);
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
    position: relative;
    overflow: hidden;
}

.contact-hero-visual .visual-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(0, 229, 255, 0.02), transparent, rgba(255, 45, 120, 0.02), transparent);
    animation: rotate-bg 30s linear infinite;
}

@keyframes rotate-bg {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.contact-hero-visual .visual-card>* {
    position: relative;
    z-index: 2;
}

.contact-hero-visual .visual-card .emoji {
    font-size: 4rem;
    display: block;
    margin-bottom: 16px;
}

.contact-hero-visual .visual-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.contact-hero-visual .visual-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    max-width: 320px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================================
                    CONTACT INFO CARDS
============================================================ */
.contact-info-section {
    padding: 40px 0 60px;
    border-bottom: 1px solid var(--border-glass);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.contact-info-card {
    padding: 30px 24px;
    text-align: center;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    transition: transform var(--transition), border-color var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glass-hover);
}

.contact-info-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent-gradient-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.4rem;
    color: var(--accent-cyan);
    border: 1px solid var(--border-glass);
    transition: border-color var(--transition);
}

.contact-info-card:hover .icon {
    border-color: var(--accent-cyan);
}

.contact-info-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.contact-info-card p {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-info-card a {
    color: var(--accent-cyan);
    transition: color 0.3s ease;
}

.contact-info-card a:hover {
    color: #ffffff;
}

/* ============================================================
                    CONTACT FORM SECTION
============================================================ */
.contact-form-section {
    padding: 70px 0 60px;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
    align-items: start;
}

.form-wrapper {
    padding: 40px 36px;
    border-radius: var(--radius-xl);
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
}

.form-wrapper h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.form-wrapper .form-sub {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.form-group label .required {
    color: var(--accent-magenta);
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select {
    appearance: none;
    cursor: pointer;
    color: var(--text-gray);
}

.form-group select option {
    background: var(--bg-secondary);
    color: #fff;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit-btn {
    width: 100%;
    padding: 14px 32px;
    border-radius: 60px;
    background: var(--accent-gradient);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit-btn:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.3);
}

.form-submit-btn:active {
    transform: scale(0.97);
}

/* Form Sidebar */
.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-card {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    transition: border-color var(--transition);
}

.sidebar-card:hover {
    border-color: var(--border-glass-hover);
}

.sidebar-card .icon {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 10px;
}

.sidebar-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.sidebar-card p {
    color: var(--text-gray);
    font-size: 0.92rem;
    line-height: 1.6;
}

.sidebar-card .highlight-text {
    color: var(--accent-cyan);
    font-weight: 500;
}

.sidebar-card ul {
    margin-top: 10px;
}

.sidebar-card ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.88rem;
    padding: 4px 0;
}

.sidebar-card ul li i {
    color: var(--accent-cyan);
    width: 18px;
}

/* ============================================================
                        RESPONSIVE
============================================================ */

@media (max-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-hero-text p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .contact-hero-badges {
        justify-content: center;
    }

    .contact-hero-visual .visual-card {
        max-width: 100%;
    }

    .contact-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    .contact-hero {
        padding: 110px 0 40px;
        min-height: auto;
    }

    .contact-hero-text h1 {
        font-size: 2.2rem;
    }

    .contact-hero-text p {
        font-size: 0.95rem;
    }

    .contact-hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .contact-hero-badges .badge {
        width: 100%;
        justify-content: center;
    }

    .contact-hero-visual .visual-card {
        padding: 30px 20px;
    }

    .contact-hero-visual .visual-card .emoji {
        font-size: 3rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-info-card {
        padding: 24px 20px;
    }

    .contact-form-section {
        padding: 50px 0 40px;
    }

    .form-wrapper {
        padding: 28px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-submit-btn {
        font-size: 0.95rem;
        padding: 14px 24px;
    }

    .form-sidebar {
        gap: 16px;
    }

    .sidebar-card {
        padding: 20px 18px;
    }

    .map-section {
        padding: 40px 0;
    }

    .map-placeholder {
        height: 200px;
        border-radius: var(--radius-lg);
    }

    .map-placeholder .map-icon {
        font-size: 2.4rem;
    }

    .section-title {
        font-size: 1.7rem;
    }
}

@media (max-width: 400px) {
    .container {
        padding: 0 12px;
    }

    .contact-hero-text h1 {
        font-size: 1.8rem;
    }

    .contact-hero-visual .visual-card h3 {
        font-size: 1.1rem;
    }

    .sidebar-card h4 {
        font-size: 0.95rem;
    }
}

/* End Contact US page CSS */

/* Chat with Stranger Page CSS */

/* ============================================================
                   HERO / MAIN SECTION
                   ============================================================ */
.main-section {
    width: 100%;
    padding: 80px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.main-section .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 60px;
    background: var(--accent-gradient-soft);
    border: 1px solid rgba(0, 229, 255, 0.12);
    color: var(--accent-cyan);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 16px;
}

.main-section .badge i {
    font-size: 0.5rem;
    animation: blink 1.4s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }
}

.main-section h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.04;
    margin-bottom: 8px;
}

.main-section h1 .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-section .subtitle {
    color: var(--text-gray);
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    max-width: 500px;
    margin: 0 auto 6px;
    line-height: 1.7;
}

.main-section .online-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    border-radius: 60px;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.12);
    color: #4ADE80;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 28px;
}

.main-section .online-count .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    display: inline-block;
    animation: blink 1.4s infinite;
}

/* ============================================================
                    CHAT OPTIONS CARD
============================================================ */
.chat-options-card {
    width: 100%;
    max-width: 560px;
    padding: 32px 28px 28px;
    border-radius: var(--radius-xl);
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    box-shadow: var(--shadow-glass);
    text-align: center;
    margin-bottom: 24px;
}

.chat-options-card .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.chat-options-card .card-sub {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
}


/* ============================================================
                        RESPONSIVE
============================================================ */

@media (max-width: 640px) {

    .main-section {
        padding: 70px 12px 16px;
    }

    .chat-options-card {
        padding: 24px 18px 20px;
        border-radius: var(--radius-lg);
    }
}

@media (max-width: 400px) {
    .main-section h1 {
        font-size: 1.7rem;
    }

    .chat-options-card .card-title {
        font-size: 1rem;
    }

    .chat-options-card .card-sub {
        font-size: 0.78rem;
    }
}

/* End Chat with Stranger Page CSS */

/* Single POST CSS */
/* ============================================================
                        BLOG POST
============================================================ */
.blog-post {
    padding: 50px 0 50px;
}

.blog-post-wrapper {
    max-width: var(--full-container);
    margin: 0 auto;
}

/* Blog Header */
.blog-header {
    margin-bottom: 40px;
}

.blog-category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 16px;
    border-radius: 60px;
    background: var(--accent-gradient-soft);
    border: 1px solid rgba(0, 229, 255, 0.12);
    color: var(--accent-cyan);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 16px;
}

.blog-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin-bottom: 16px;
}

.blog-title .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.blog-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta .meta-item i {
    color: var(--accent-cyan);
    font-size: 0.8rem;
}

.blog-meta .divider {
    color: var(--text-muted);
}

/* Blog Featured Image */
.blog-featured {
    margin: 30px 0 40px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-secondary);
    border: 1px solid var(--border-glass);
    position: relative;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-featured .placeholder-icon {
    font-size: 4rem;
    color: var(--text-muted);
    opacity: 0.3;
}

.blog-featured .featured-label {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 6px 16px;
    border-radius: 60px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    font-size: 0.7rem;
    color: var(--text-gray);
    border: 1px solid var(--border-glass);
}

/* Blog Content */
.blog-content p {
    color: var(--text-gray);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.blog-content p:last-child {
    margin-bottom: 0;
}

.blog-content .dropcap::first-letter {
    font-size: 3.8rem;
    font-weight: 800;
    float: left;
    margin-right: 10px;
    margin-top: 4px;
    line-height: 1;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 30px 0 14px;
    color: #fff;
}

.blog-content h3 i {
    color: var(--accent-cyan);
    margin-right: 10px;
}

.blog-content .blog-quote {
    padding: 24px 28px;
    border-radius: var(--radius-md);
    background: var(--accent-gradient-soft);
    border-left: 4px solid var(--accent-cyan);
    margin: 24px 0;
}

.blog-content .blog-quote p {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.blog-content .blog-quote .quote-author {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: normal;
}

.blog-content .blog-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    color: var(--text-gray);
}

.blog-list li::before {
    content: "\f054";
    /* Font Awesome chevron-right */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--accent-cyan);
    font-size: 0.7rem;
    position: absolute;
    left: 0;
    top: 2px;
}

/* ============================================================
                   AUTHOR SECTION
                   ============================================================ */
.author-section {
    margin: 40px 0 50px;
    padding: 32px 36px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    display: flex;
    gap: 28px;
    align-items: flex-start;
    transition: border-color var(--transition);
}

.author-section:hover {
    border-color: var(--border-glass-hover);
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.15);
}

.author-avatar.second {
    background: linear-gradient(135deg, #FF2D78, #ff6b9d);
}

.author-info {
    flex: 1;
    min-width: 0;
}

.author-info .author-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.author-info .author-name .verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 10px;
    border-radius: 60px;
    background: var(--accent-gradient-soft);
    border: 1px solid rgba(0, 229, 255, 0.1);
    color: var(--accent-cyan);
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
}

.author-info .author-role {
    color: var(--accent-cyan);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.author-info .author-bio {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.author-info .author-social {
    display: flex;
    gap: 10px;
}

.author-info .author-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--border-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.author-info .author-social a:hover {
    border-color: var(--accent-cyan);
    color: #ffffff;
    transform: translateY(-2px);
    background: rgba(0, 229, 255, 0.06);
}

/* ============================================================
                    COMMENTS SECTION
============================================================ */
/* Comment Form */
.fa-comments {
    color: var(--accent-cyan);
}

.comments-header .comments-count {
    color: var(--text-muted);
    font-size: 0.85rem;
    padding: 4px 16px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
}



.comments-header h3 {
    font-size: 1.3rem;
}

.comments-header {
    padding: 24px 28px 20px 28px !important;
    /* border-bottom: 1px solid #eef2ff !important; */
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 16px !important;
    /* background: #fafcff !important; */
}

.comment-form-container {
    padding: 24px 28px !important;
    /* border-bottom: 1px solid #eef2ff !important; */
    /* background: white !important; */
}

.comment-form {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
}

.form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 18px !important;
}

.form-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 6px !important;
}

.form-group label {
    font-size: 0.7rem !important;
    font-weight: 600 !important;
    color: #5b6e8c !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    color: #ffffff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.05);
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #cbd5e1 !important;
}

.submit-comment-btn {
    background: var(--accent-gradient);
    color: white !important;
    border: none !important;
    padding: 12px 28px !important;
    border-radius: 40px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    width: fit-content !important;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2) !important;
}

.submit-comment-btn:hover {
    background: linear-gradient(135deg, #152558, #C2185F);
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25) !important;
}

.submit-comment-btn:active {
    transform: translateY(0) !important;
}

/* Reply Form (Inline) */
.reply-form {
    margin-top: 16px !important;
    margin-left: 48px !important;
    padding: 16px !important;
    background: #f8fafc !important;
    border-radius: 20px !important;
    border-left: 3px solid #AA1A54 !important;
    display: none !important;
}

.reply-form.active {
    display: block !important;
    animation: fadeInUp 0.3s ease !important;
}

.reply-form .form-group {
    margin-bottom: 12px !important;
}

.reply-form input,
.reply-form textarea {
    background: white !important;
    font-size: 0.8rem !important;
    padding: 10px 14px !important;
}

.reply-actions {
    display: flex !important;
    gap: 12px !important;
    margin-top: 12px !important;
}

.reply-submit {
    background: #AA1A54 !important;
    color: white !important;
    border: none !important;
    padding: 8px 20px !important;
    border-radius: 30px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}

.reply-submit:hover {
    background: #AA1A54 !important;
}

.reply-cancel {
    background: #f1f5f9 !important;
    color: #475569 !important;
    border: none !important;
    padding: 8px 20px !important;
    border-radius: 30px !important;
    font-size: 0.75rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}

.reply-cancel:hover {
    background: #e2e8f0 !important;
}

/* Comments List */
/* .comments-list {
    padding: 24px 28px !important;
    background: white !important;
} */

.comment-item {
    display: flex !important;
    gap: 16px !important;
    padding: 20px 0 !important;
    border-bottom: 1px solid #eef2ff !important;
    transition: background 0.2s !important;
}

.comment-item:last-child {
    border-bottom: none !important;
}

.comment-avatar {
    flex-shrink: 0 !important;
}

.comment-avatar img {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    background: #eef2ff !important;
}

.comment-content {
    flex: 1 !important;
}

.comment-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 8px !important;
}

.comment-author {
    font-weight: 700 !important;
    color: #ffffff !important;
    font-size: 0.9rem !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.author-verified {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    background: rgba(185, 237, 237, 0.1) !important;
    padding: 2px 8px !important;
    border-radius: 30px !important;
    font-size: 0.6rem !important;
    font-weight: 500 !important;
    color: var(--accent-cyan) !important;
}

.comment-date {
    font-size: 0.7rem !important;
    color: #94a3b8 !important;
}

.comment-text {
    font-size: 0.85rem !important;
    line-height: 1.55 !important;
    color: var(--text-gray) !important;
    margin-bottom: 12px !important;
}

.comment-actions {
    display: flex !important;
    gap: 20px !important;
}

.comment-actions button {
    background: none !important;
    border: none !important;
    font-size: 0.7rem !important;
    color: #94a3b8 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    transition: all 0.2s !important;
    padding: 4px 8px !important;
    border-radius: 30px !important;
}

.comment-actions button:hover {
    color: #AA1A54 !important;
    background: #f1f5f9 !important;
}

.comment-actions button i {
    font-size: 0.7rem !important;
}

.like-btn.liked {
    color: #ef4444 !important;
}

.like-btn.liked i {
    font-weight: 900 !important;
}

/* Nested Replies */
.replies-container {
    margin-top: 16px !important;
    margin-left: 48px !important;
    padding-left: 16px !important;
    border-left: 2px dashed #e2e8f0 !important;
}

.reply-item {
    margin-top: 16px !important;
    padding: 12px 0 12px 16px !important;
    background: #fafcff !important;
    border-radius: 16px !important;
    position: relative !important;
}

.reply-item::before {
    content: "" !important;
    position: absolute !important;
    left: -12px !important;
    top: 20px !important;
    width: 12px !important;
    height: 2px !important;
    background: #e2e8f0 !important;
}

.reply-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 6px !important;
    flex-wrap: wrap !important;
}

.reply-author {
    font-weight: 700 !important;
    font-size: 0.8rem !important;
    color: #ffffff !important;
}

.reply-date {
    font-size: 0.65rem !important;
    color: #94a3b8 !important;
}

.reply-text {
    font-size: 0.8rem !important;
    color: #475569 !important;
    line-height: 1.5 !important;
    margin-bottom: 8px !important;
}

.reply-actions {
    display: flex !important;
    gap: 16px !important;
}

.reply-actions button {
    background: none !important;
    border: none !important;
    font-size: 0.65rem !important;
    color: #94a3b8 !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
}

.reply-actions button:hover {
    color: #AA1A54 !important;
}

/* Empty Comments */
.empty-comments {
    text-align: center !important;
    padding: 60px 20px !important;
    color: #94a3b8 !important;
}

.empty-comments i {
    font-size: 3rem !important;
    margin-bottom: 16px !important;
    display: block !important;
    opacity: 0.4 !important;
}

.empty-comments p {
    font-size: 0.9rem !important;
}

/* Toast Message */
.toast-message {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    background: #0f172a !important;
    color: white !important;
    padding: 12px 24px !important;
    border-radius: 48px !important;
    font-size: 0.85rem !important;
    z-index: 1100 !important;
    opacity: 0 !important;
    transition: opacity 0.3s !important;
    pointer-events: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1) !important;
}

.toast-message.show {
    opacity: 1 !important;
}

/* ========== COMMENTS RESPONSIVE ========== */

@media (max-width: 991px) {
    .comment-item {
        gap: 14px !important;
        padding: 18px 0 !important;
    }

    .comment-list .children {
        margin: 16px 0 0 54px !important;
        padding-left: 18px !important;
    }

    .comment-list .children>.reply-item {
        padding: 16px 18px !important;
        border-radius: 18px !important;
    }

    .comment-list .children>.reply-item::before {
        left: -20px !important;
        width: 12px !important;
        top: 28px !important;
    }
}

@media (max-width: 767px) {
    .comment-item {
        gap: 12px !important;
        padding: 16px 0 !important;
    }

    .comment-avatar img {
        width: 40px !important;
        height: 40px !important;
    }

    .comment-header,
    .reply-header {
        gap: 8px !important;
        margin-bottom: 6px !important;
    }

    .comment-author,
    .reply-author {
        font-size: 0.9rem !important;
        line-height: 1.3 !important;
    }

    .comment-date,
    .reply-date {
        font-size: 0.72rem !important;
    }

    .comment-text,
    .reply-text {
        font-size: 0.88rem !important;
        line-height: 1.55 !important;
        margin-bottom: 10px !important;
    }

    .comment-actions,
    .reply-actions {
        gap: 12px !important;
        flex-wrap: wrap !important;
    }

    .comment-list .children {
        margin: 14px 0 0 20px !important;
        padding-left: 12px !important;
        border-left-width: 2px !important;
    }

    .comment-list .children>.reply-item {
        padding: 14px 14px !important;
        border-radius: 16px !important;
        margin-top: 14px !important;
    }

    .comment-list .children>.reply-item::before {
        left: -14px !important;
        width: 8px !important;
        top: 24px !important;
    }

    .author-verified {
        font-size: 0.6rem !important;
        padding: 3px 8px !important;
    }
}

@media (max-width: 575px) {
    .comment-item {
        display: block !important;
        padding: 14px 0 !important;
    }

    .comment-avatar {
        margin-bottom: 10px !important;
    }

    .comment-avatar img {
        width: 38px !important;
        height: 38px !important;
    }

    .comment-content {
        width: 100% !important;
    }

    .comment-header,
    .reply-header {
        flex-direction: row !important;
        align-items: center !important;
        gap: 6px 10px !important;
    }

    .comment-author,
    .reply-author {
        font-size: 0.85rem !important;
    }

    .comment-date,
    .reply-date {
        font-size: 0.68rem !important;
    }

    .comment-text,
    .reply-text {
        font-size: 0.84rem !important;
    }

    .comment-actions .comment-reply-link,
    .reply-actions .comment-reply-link {
        font-size: 0.72rem !important;
    }

    .comment-list .children {
        margin: 12px 0 0 12px !important;
        padding-left: 10px !important;
    }

    .comment-list .children>.reply-item {
        padding: 12px 12px !important;
        border-radius: 14px !important;
    }

    .comment-list .children>.reply-item::before {
        left: -12px !important;
        width: 7px !important;
        top: 22px !important;
    }
}

@media (max-width: 768px) {
    .author-wrapper {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 24px !important;
        gap: 20px !important;
    }

    .author-info {
        text-align: center !important;
    }

    .author-name {
        justify-content: center !important;
        flex-direction: column !important;
    }

    .author-title {
        justify-content: center !important;
    }

    .author-stats {
        justify-content: center !important;
    }

    .author-social {
        justify-content: center !important;
    }

    .form-row {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .comments-header {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 20px !important;
    }

    .comment-form-container,
    .comments-list,
    .comments-header {
        padding: 20px !important;
    }

    .comment-item {
        gap: 12px !important;
    }

    .comment-avatar img {
        width: 40px !important;
        height: 40px !important;
    }

    .replies-container {
        margin-left: 20px !important;
        padding-left: 12px !important;
    }

    .reply-form {
        margin-left: 20px !important;
    }

    .reply-item {
        padding: 10px 0 10px 12px !important;
    }

    .submit-comment-btn {
        width: 100% !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .author-avatar img {
        width: 80px !important;
        height: 80px !important;
    }

    .author-name {
        font-size: 1.2rem !important;
    }

    .author-bio {
        font-size: 0.85rem !important;
    }

    .author-stat {
        font-size: 0.7rem !important;
        padding: 4px 10px !important;
    }

    .comments-title {
        font-size: 1rem !important;
    }

    .comment-header {
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .comment-actions {
        flex-wrap: wrap !important;
        gap: 12px !important;
    }

    .replies-container {
        margin-left: 12px !important;
        padding-left: 8px !important;
    }

    .reply-form {
        margin-left: 12px !important;
    }

    .toast-message {
        bottom: 20px !important;
        right: 20px !important;
        left: 20px !important;
        text-align: center !important;
        justify-content: center !important;
    }
}

.comment-list,
.comment-list .children {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.comment-item {
    display: flex !important;
    gap: 16px !important;
    padding: 20px 0 !important;
    border-bottom: 1px solid #eef2ff !important;
}

.comment-avatar img {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
}

.comment-content {
    flex: 1 !important;
}

.comment-header,
.reply-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    margin-bottom: 8px !important;
}

.comment-author,
.reply-author {
    font-weight: 700 !important;
    color: #ffffff !important;
}

.comment-date,
.reply-date {
    font-size: 0.75rem !important;
    color: #94a3b8 !important;
}

.comment-text,
.reply-text {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    color: var(--text-gray) !important;
    margin-bottom: 12px !important;
}

.comment-actions,
.reply-actions {
    display: flex !important;
    gap: 16px !important;
}

.comment-actions .comment-reply-link,
.reply-actions .comment-reply-link {
    text-decoration: none !important;
    font-size: 0.75rem !important;
    color: #94a3b8 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.comment-actions .comment-reply-link:hover,
.reply-actions .comment-reply-link:hover {
    color: var(--accent-cyan) !important;
}

.comment-list .children {
    margin: 18px 0 0 0 !important;
    padding-left: 26px !important;
    border-left: 2px dashed var(--accent-cyan) !important;
}

.comment-list .children>.reply-item {
    position: relative !important;
    margin-top: 18px !important;
    padding: 18px 22px !important;
    background: var(--bg-card) !important;
    border-radius: 22px !important;
}

.comment-list .children>.reply-item::before {
    content: "" !important;
    position: absolute !important;
    left: -28px !important;
    top: 34px !important;
    width: 18px !important;
    height: 2px !important;
    background: var(--bg-card) !important;
}

/* End Commnets Section  */

/* End Single POST CSS */

/* Button */
/* ==== FLOATING START ====== */
.floating-start {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gradient);
    border: none;
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition), box-shadow var(--transition);
    animation: pulse-ring 2.8s ease-in-out infinite;
}

.floating-start:hover {
    transform: scale(1.1);
    box-shadow: 0 0 60px rgba(0, 229, 255, 0.5);
}

.floating-start svg {
    width: 26px;
    height: 26px;
    fill: #fff;
    margin-left: 3px;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 28px rgba(0, 229, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0);
    }
}

/* End Button CSS */

/* 404 Page CSS */
/* ============================================================
                   404 CONTENT
                   ============================================================ */
.error-container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    animation: fadeUp 0.8s ease forwards;
    margin-top: 50px;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Glitch 404 Number */
.error-number {
    font-size: clamp(6rem, 20vw, 12rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glitch 4s infinite;
}

@keyframes glitch {

    0%,
    90%,
    100% {
        transform: translate(0);
    }

    91% {
        transform: translate(-3px, 2px);
    }

    92% {
        transform: translate(3px, -2px);
    }

    93% {
        transform: translate(-2px, 1px);
    }

    94% {
        transform: translate(2px, -1px);
    }
}

.error-number::before,
.error-number::after {
    content: '404';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    pointer-events: none;
}

.error-number::before {
    background: var(--accent-magenta);
    animation: glitchBefore 4s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
}

.error-number::after {
    background: var(--accent-cyan);
    animation: glitchAfter 4s infinite;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
}

@keyframes glitchBefore {

    0%,
    90%,
    100% {
        opacity: 0;
        transform: translate(0);
    }

    91% {
        opacity: 0.7;
        transform: translate(-4px, 3px);
    }

    92% {
        opacity: 0;
        transform: translate(0);
    }
}

@keyframes glitchAfter {

    0%,
    90%,
    100% {
        opacity: 0;
        transform: translate(0);
    }

    91% {
        opacity: 0;
        transform: translate(0);
    }

    92% {
        opacity: 0.7;
        transform: translate(4px, -3px);
    }

    93% {
        opacity: 0;
        transform: translate(0);
    }
}

/* Icon */
.error-icon {
    font-size: 3.5rem;
    color: var(--text-muted);
    opacity: 0.2;
    margin-bottom: 8px;
    display: block;
}

/* Title */
.error-title {
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.error-title .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Description */
.error-description {
    color: var(--text-gray);
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    max-width: 460px;
    margin: 0 auto 28px;
    line-height: 1.8;
}

/* Search Box */
.search-box {
    display: flex;
    max-width: 420px;
    margin: 0 auto 28px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 60px;
    border: 1px solid var(--border-glass);
    padding: 4px 6px 4px 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
}

.search-box:focus-within {
    border-color: rgba(0, 229, 255, 0.3);
    box-shadow: 0 0 40px rgba(0, 229, 255, 0.04);
}

.search-box input {
    flex: 1;
    padding: 10px 8px;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 0.9rem;
    font-family: inherit;
    min-width: 0;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

.search-box button {
    padding: 10px 22px;
    border-radius: 60px;
    background: var(--accent-gradient);
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.search-box button:hover {
    transform: scale(1.04);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
}

/* Buttons */
.error-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-actions .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 32px;
    border-radius: 60px;
    background: var(--accent-gradient);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
    text-decoration: none;
}

.error-actions .btn-primary:hover {
    transform: scale(1.04) translateY(-2px);
    box-shadow: 0 0 50px rgba(0, 229, 255, 0.3);
}

.error-actions .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 60px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    color: var(--text-gray);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.error-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Footer Links */
.error-footer {
    margin-top: 32px;
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-footer a {
    color: var(--text-muted);
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.error-footer a:hover {
    color: #ffffff;
}

.error-footer .dot {
    color: var(--text-muted);
    opacity: 0.3;
}

/* ============================================================
                   RESPONSIVE
                   ============================================================ */

@media (max-width: 640px) {
    .error-container {
        padding: 16px;
    }

    .error-number {
        font-size: 5rem;
    }

    .error-icon {
        font-size: 2.5rem;
    }

    .error-title {
        font-size: 1.3rem;
    }

    .error-description {
        font-size: 0.9rem;
        padding: 0 8px;
    }

    .search-box {
        max-width: 100%;
        padding: 4px 4px 4px 16px;
    }

    .search-box input {
        font-size: 0.82rem;
        padding: 8px 4px;
    }

    .search-box button {
        padding: 8px 16px;
        font-size: 0.78rem;
    }

    .error-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .error-actions .btn-primary,
    .error-actions .btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .error-footer {
        gap: 12px;
        font-size: 0.75rem;
    }

    .error-footer .dot {
        display: none;
    }

    .bg-animation .orb {
        filter: blur(60px);
    }

    .bg-animation .orb:nth-child(1) {
        width: 250px;
        height: 250px;
    }

    .bg-animation .orb:nth-child(2) {
        width: 200px;
        height: 200px;
    }

    .bg-animation .orb:nth-child(3) {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 400px) {
    .error-number {
        font-size: 4rem;
    }

    .error-icon {
        font-size: 2rem;
    }

    .error-title {
        font-size: 1.1rem;
    }

    .error-description {
        font-size: 0.82rem;
    }

    .search-box {
        padding: 3px 3px 3px 12px;
    }

    .search-box input {
        font-size: 0.78rem;
        padding: 6px 4px;
    }

    .search-box button {
        padding: 6px 14px;
        font-size: 0.72rem;
    }

    .error-actions .btn-primary,
    .error-actions .btn-secondary {
        font-size: 0.82rem;
        padding: 10px 16px;
    }

    .error-footer a {
        font-size: 0.7rem;
    }
}

/* End 404 Page CSS */
