/* CSS Variables for Tech/Hacker Theme */
:root {
    --bg-main: #060913;
    --bg-darker: #04060a;
    --bg-card: rgba(10, 16, 30, 0.7);
    --border-neon: rgba(0, 240, 255, 0.3);

    --primary-neon: #00f0ff;
    --secondary-neon: #ff0055;
    --success-neon: #00ff66;
    --warning-neon: #ffaa00;

    --text-primary: #e0e5ff;
    --text-muted: #8492c4;
    --text-dark: #000000;

    --glow-primary: 0 0 10px rgba(0, 240, 255, 0.5), 0 0 20px rgba(0, 240, 255, 0.3);
    --glow-secondary: 0 0 10px rgba(255, 0, 85, 0.5);

    --font-ar: 'Cairo', sans-serif;
    --font-en: 'Orbitron', sans-serif;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --transition: all 0.3s ease-in-out;
}

/* Global Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: var(--font-ar);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Cyberpunk Background Grid Overlay */
.cyber-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: -1;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.text-center {
    text-align: center;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-40 {
    margin-top: 40px;
}

.w-100 {
    width: 100%;
}

.mx-2 {
    margin-left: 8px;
    margin-right: 8px;
}

h1,
h2,
h3,
h4 {
    color: var(--text-primary);
    font-weight: 700;
}

.neon-text {
    color: var(--primary-neon);
    text-shadow: var(--glow-primary);
    font-family: var(--font-en);
}

.text-neon {
    color: var(--primary-neon);
}

.text-muted {
    color: var(--text-muted);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-main);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-neon);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #fff;
}

/* Custom Highlight Selection */
::selection {
    background: var(--primary-neon);
    color: var(--bg-main);
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20%;
    width: 60%;
    height: 3px;
    background: var(--primary-neon);
    box-shadow: var(--glow-primary);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(4, 6, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 240, 255, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(4, 6, 10, 0.95);
    border-bottom: 1px solid var(--primary-neon);
    box-shadow: 0 2px 20px rgba(0, 240, 255, 0.15);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-link {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-muted);
    position: relative;
    padding: 5px 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-neon);
    transition: var(--transition);
    box-shadow: var(--glow-primary);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-neon);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-controls {
    display: flex;
    gap: 15px;
}

.cyber-btn-sm {
    background: transparent;
    border: 1px solid var(--primary-neon);
    color: var(--primary-neon);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    text-transform: uppercase;
}

.cyber-btn-sm:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: var(--glow-primary);
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--primary-neon);
    font-size: 1.8rem;
    cursor: pointer;
}

/* Cyber Buttons */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    transition: 0.2s;
    border: none;
    background: transparent;
    z-index: 1;
    font-family: var(--font-ar);
}

.cyber-btn-primary {
    color: var(--text-dark);
    background: var(--primary-neon);
    box-shadow: var(--glow-primary);
    border-radius: var(--radius-sm);
}

.cyber-btn-primary:hover {
    background: #fff;
    color: var(--text-dark);
    box-shadow: 0 0 20px #fff, 0 0 40px var(--primary-neon);
}

.cyber-btn-secondary {
    color: var(--primary-neon);
    border: 1px solid var(--primary-neon);
    border-radius: var(--radius-sm);
    box-shadow: inset 0 0 10px rgba(0, 240, 255, 0.1);
}

.cyber-btn-secondary:hover {
    background: rgba(0, 240, 255, 0.1);
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.3), var(--glow-primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.hero-content {
    flex: 1.2;
}

/* Glitch Effect Settings */
.glitch-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.3;
    color: #fff;
    position: relative;
}

.hero-desc {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    border-right: 3px solid var(--primary-neon);
    padding-right: 15px;
}

html[dir="rtl"] .hero-desc {
    border-right: 3px solid var(--primary-neon);
    border-left: none;
}

html[dir="ltr"] .hero-desc {
    border-right: none;
    border-left: 3px solid var(--primary-neon);
    padding-right: 0;
    padding-left: 15px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-visual {
    flex: 0.8;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.tech-sphere {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid transparent;
}

.ring-1 {
    width: 100%;
    height: 100%;
    border-top: 2px solid var(--primary-neon);
    border-bottom: 2px solid var(--primary-neon);
    animation: spin 8s linear infinite;
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.1);
}

.ring-2 {
    width: 80%;
    height: 80%;
    border-left: 2px solid var(--secondary-neon);
    border-right: 2px solid var(--secondary-neon);
    animation: spin-reverse 6s linear infinite;
}

.ring-3 {
    width: 60%;
    height: 60%;
    border: 1px dashed var(--text-muted);
    animation: spin 10s linear infinite;
}

.core-icon {
    font-size: 5rem;
    color: var(--primary-neon);
    text-shadow: var(--glow-primary);
    z-index: 2;
    animation: pulse 2s ease-in-out infinite alternate;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    100% {
        transform: rotate(-360deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* Neon Cards General */
.neon-card {
    background: var(--bg-card);
    border: 1px solid var(--border-neon);
    border-radius: var(--radius-md);
    padding: 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.neon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-neon), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.neon-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-neon);
    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.1);
}

.neon-card:hover::before {
    transform: scaleX(1);
}

/* About Section */
.about-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-icon {
    font-size: 3.5rem;
    color: var(--primary-neon);
    margin-bottom: 20px;
    text-shadow: var(--glow-primary);
}

.about-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
}

.stat-item i {
    font-size: 2rem;
    color: var(--secondary-neon);
}

.stat-item span {
    font-family: var(--font-en);
    font-weight: 600;
    letter-spacing: 1px;
}


/* Services Section (Cards) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-cat-card {
    text-align: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 40px 20px;
}

.cat-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    transition: var(--transition);
    margin-bottom: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-cat-card:hover .cat-icon-wrapper {
    transform: scale(1.1);
}

.apple-glow {
    color: #fff;
    text-shadow: 0 0 10px #fff;
}

.service-cat-card:hover .apple-glow {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    border-color: #fff;
}

.android-glow {
    color: #3dda84;
    text-shadow: 0 0 10px #3dda84;
}

.service-cat-card:hover .android-glow {
    box-shadow: 0 0 20px rgba(61, 218, 132, 0.3);
    border-color: #3dda84;
}

.remote-glow {
    color: #bb86fc;
    text-shadow: 0 0 10px #bb86fc;
}

.service-cat-card:hover .remote-glow {
    box-shadow: 0 0 20px rgba(187, 134, 252, 0.3);
    border-color: #bb86fc;
}

.server-glow {
    color: var(--primary-neon);
    text-shadow: var(--glow-primary);
}

.service-cat-card:hover .server-glow {
    box-shadow: var(--glow-primary);
    border-color: var(--primary-neon);
}

.active-glow {
    color: var(--warning-neon);
    text-shadow: 0 0 10px var(--warning-neon);
}

.service-cat-card:hover .active-glow {
    box-shadow: 0 0 20px rgba(255, 170, 0, 0.3);
    border-color: var(--warning-neon);
}

.rent-glow {
    color: var(--secondary-neon);
    text-shadow: var(--glow-secondary);
}

.service-cat-card:hover .rent-glow {
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.3);
    border-color: var(--secondary-neon);
}

.service-cat-card h3 {
    font-size: 1.4rem;
}

.view-more {
    color: var(--primary-neon);
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.7;
    transition: var(--transition);
}

.service-cat-card:hover .view-more {
    opacity: 1;
    transform: translateX(-5px);
}

html[dir="ltr"] .service-cat-card:hover .view-more {
    transform: translateX(5px);
}

/* Modals System */
#modals-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 9999;
}

.cyber-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.cyber-modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.modal-content {
    background: var(--bg-darker);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    padding: 30px;
    border-radius: var(--radius-md);
    transform: scale(0.9) translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cyber-modal.open .modal-content {
    transform: scale(1) translateY(0);
}

.neon-border {
    border: 1px solid var(--primary-neon);
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.05), 0 0 20px rgba(0, 240, 255, 0.1);
}

.close-modal {
    position: absolute;
    top: 15px;
    left: 20px;
    /* Arabic layout */
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    z-index: 10;
}

html[dir="ltr"] .close-modal {
    left: auto;
    right: 20px;
}

.close-modal:hover {
    color: var(--secondary-neon);
    transform: rotate(90deg);
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-icon {
    font-size: 2rem;
}

.modal-header h3 {
    font-size: 1.6rem;
    color: #fff;
}

.badge {
    background: rgba(0, 240, 255, 0.1);
    color: var(--primary-neon);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(0, 240, 255, 0.3);
}

/* Modal Internal Elements */
.tech-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tech-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-primary);
    font-size: 1.05rem;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: var(--radius-sm);
    border-right: 2px solid var(--primary-neon);
    /* RTL */
    transition: var(--transition);
}

html[dir="ltr"] .tech-list li {
    border-right: none;
    border-left: 2px solid var(--primary-neon);
}

.tech-list li:hover {
    background: rgba(0, 240, 255, 0.05);
    transform: translateX(-5px);
}

html[dir="ltr"] .tech-list li:hover {
    transform: translateX(5px);
}

.tech-list li i {
    color: var(--primary-neon);
    margin-top: 5px;
    font-size: 0.9rem;
}

.alert-box {
    padding: 15px;
    border-radius: var(--radius-sm);
    display: flex;
    gap: 15px;
    align-items: center;
    font-weight: 600;
}

.alert-box.danger {
    background: rgba(255, 0, 85, 0.1);
    border: 1px solid var(--secondary-neon);
    color: var(--secondary-neon);
}

.alert-box.info {
    background: rgba(0, 240, 255, 0.1);
    border: 1px solid var(--primary-neon);
    color: var(--primary-neon);
}

.sub-heading {
    color: var(--primary-neon);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tags-container span {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.2s;
}

.tags-container span:hover {
    background: rgba(255, 255, 255, 0.1);
}

.alt-tags span {
    background: rgba(61, 218, 132, 0.1);
    color: #3dda84;
    border-color: rgba(61, 218, 132, 0.2);
}

.glow-tags span {
    background: rgba(255, 170, 0, 0.1);
    color: var(--warning-neon);
    border-color: rgba(255, 170, 0, 0.2);
}

.outline-tags span {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--primary-neon);
}

.content-block {
    margin-bottom: 25px;
}


/* My Tools Section */
.hologram-effect {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.massive-icon {
    font-size: 5rem;
    color: var(--primary-neon);
    filter: drop-shadow(var(--glow-primary));
}

/* FAQ Accordion */
.accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-neon);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item.active {
    border-color: var(--primary-neon);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.accordion-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-primary);
    user-select: none;
    background: rgba(255, 255, 255, 0.02);
}

.accordion-header i {
    transition: transform 0.3s;
    color: var(--primary-neon);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0 20px;
    color: var(--text-muted);
}

.accordion-item.active .accordion-content {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.cyber-btn-whatsapp {
    background: linear-gradient(45deg, #128C7E, #25D366);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.cyber-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.5);
}

/* Contact Section */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.social-links-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 1.2rem;
    font-weight: 600;
    transition: var(--transition);
}

.social-card i {
    font-size: 1.8rem;
}

.social-card.facebook i {
    color: #1877f2;
}

.social-card.whatsapp i {
    color: #25d366;
}

.social-card.telegram i {
    color: #0088cc;
}

.social-card:hover {
    transform: translateX(-10px);
    background: rgba(255, 255, 255, 0.05);
}

html[dir="ltr"] .social-card:hover {
    transform: translateX(10px);
}

.social-card.facebook:hover {
    border-color: #1877f2;
    box-shadow: 0 0 15px rgba(24, 119, 242, 0.2);
}

.social-card.whatsapp:hover {
    border-color: #25d366;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.2);
}

.social-card.telegram:hover {
    border-color: #0088cc;
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px !important;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.input-glow-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    right: 15px;
    color: var(--primary-neon);
    opacity: 0.7;
}

html[dir="ltr"] .input-icon {
    right: auto;
    left: 15px;
}

.msg-icon {
    top: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 45px 12px 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    resize: vertical;
}

html[dir="ltr"] .form-group input,
html[dir="ltr"] .form-group textarea {
    padding: 12px 15px 12px 45px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-neon);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
    background: rgba(0, 0, 0, 0.8);
}

.form-group input:focus+.input-icon,
.form-group textarea:focus+.input-icon {
    opacity: 1;
}

/* Footer */
.footer {
    border-top: 1px solid rgba(0, 240, 255, 0.2);
    padding: 30px 0;
    text-align: center;
    background: var(--bg-card);
}

.footer-copy {
    margin-top: 10px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Animations & Scroll Reveal */
.reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-element.active {
    opacity: 1;
    transform: translateY(0);
}

/* Back To Top Button */
.cyber-btt {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 1px solid var(--primary-neon);
    color: var(--primary-neon);
    border-radius: var(--radius-sm);
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: var(--glow-primary);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

html[dir="ltr"] .cyber-btt {
    left: auto;
    right: 30px;
}

.cyber-btt.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cyber-btt:hover {
    background: var(--primary-neon);
    color: var(--text-dark);
}


/* Responsiveness */
@media (max-width: 992px) {

    .hero-container,
    .contact-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-visual {
        order: 1;
        transform: scale(0.8);
    }

    .hero-desc {
        border: none !important;
        padding: 0 !important;
        margin: 0 auto 30px auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .social-side {
        margin-bottom: 30px;
    }

    .social-links-grid {
        flex-direction: row;
        justify-content: center;
    }

    .social-card span {
        display: none;
    }

    .social-card {
        padding: 15px;
        border-radius: 50%;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.2rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(4, 6, 10, 0.98);
        flex-direction: column;
        padding: 30px;
        transform: translateY(-150%);
        transition: transform 0.4s ease;
        border-bottom: 2px solid var(--primary-neon);
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .mobile-menu-btn {
        display: block;
    }
}