/* Psagot VIP Cyber Theme */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;700;900&display=swap');

:root {
    --bg-dark: #050a14;
    --bg-card: rgba(20, 30, 50, 0.6);
    --neon-blue: #00f3ff;
    --neon-purple: #bc13fe;
    --text-main: #ffffff;
    --text-muted: #a0aab5;
}

body {
    margin: 0;
    font-family: 'Heebo', sans-serif;
    background-color: var(--bg-dark);
    background-image: 
        linear-gradient(rgba(0, 243, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 243, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    color: var(--text-main);
    direction: rtl;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; padding: 0; }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(5, 10, 20, 0.9);
    border-bottom: 1px solid rgba(0, 243, 255, 0.1);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: var(--neon-blue);
    text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
    letter-spacing: 1px;
}

.nav-links { display: flex; gap: 30px; }
.nav-links a:hover { color: var(--neon-blue); text-shadow: 0 0 5px var(--neon-blue); }
.btn-cyber {
    padding: 10px 25px;
    border: 1px solid var(--neon-blue);
    color: var(--neon-blue);
    background: transparent;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 0 5px var(--neon-blue);
    transition: 0.3s;
}
.btn-cyber:hover {
    background: var(--neon-blue);
    color: #000;
    box-shadow: 0 0 20px var(--neon-blue);
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: radial-gradient(circle at center, rgba(0, 243, 255, 0.1) 0%, transparent 70%);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #fff, var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Services Grid */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 50px 10%;
}

.card {
    background: var(--bg-card);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transition: 0.4s;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(188, 19, 254, 0.3);
}

.card i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--neon-blue);
}

.card h3 { margin-bottom: 15px; font-size: 1.4rem; }
.card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px;}

.link-arrow {
    color: var(--neon-blue);
    font-weight: bold;
    display: inline-block;
}

/* Internal Page Layout */
.page-header {
    background: linear-gradient(180deg, rgba(0,0,0,0.8), transparent);
    padding: 60px 10%;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.page-content {
    padding: 50px 10%;
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.main-text { flex: 2; line-height: 1.8; color: #e0e0e0; }
.main-text h2 { color: var(--neon-blue); margin-top: 30px; }
.sidebar {
    flex: 1;
    background: rgba(255,255,255,0.03);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--neon-purple);
    height: fit-content;
}

/* Contact Form */
.form-container {
    max-width: 600px;
    margin: 50px auto;
    background: var(--bg-card);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(0, 243, 255, 0.2);
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; color: var(--neon-blue); }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0,0,0,0.3);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 5px;
    font-family: inherit;
}
.form-group input:focus { outline: none; border-color: var(--neon-blue); }

/* Footer */
footer {
    text-align: center;
    padding: 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
    .page-content { flex-direction: column; }
    .hero h1 { font-size: 2.5rem; }
}