/* * Talos SMM Panel - Corporate Sovereign Theme (Light Mode)
 * Color Palette: Deep Crimson Red, Premium White, Clean Off-White & Dark Slate Text
 * Design System: High-contrast, dynamic, authoritative, and ultra-clean.
 */

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800&display=swap');

:root {
    --primary-red: #e61923;
    --hover-red: #c1121b;
    --light-red-alpha: rgba(230, 25, 35, 0.06);
    --pure-white: #ffffff;
    --off-white: #f4f6f9;
    --border-color: #e2e8f0;
    --text-main: #1a202c;
    --text-muted: #64748b;
    --font-family: 'Tajawal', system-ui, -apple-system, sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 8px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: var(--font-family);
    background-color: var(--off-white);
    color: var(--text-main);
    line-height: 1.6;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

/* Typography & Headers */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--text-main);
}

h1 { font-size: 28pt; line-height: 1.3; }
h2 { font-size: 20pt; position: relative; padding-bottom: 10px; margin-bottom: 25px; }
h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-red);
    border-radius: 2px;
}

p {
    color: var(--text-muted);
    font-size: 11pt;
}

/* Utility Classes */
.text-red { color: var(--primary-red); }
.bg-white { background-color: var(--pure-white); }

/* Buttons & Interactive Elements */
.btn-primary {
    display: inline-block;
    background-color: var(--primary-red);
    color: var(--pure-white);
    padding: 12px 28px;
    font-size: 11pt;
    font-weight: 700;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(230, 25, 35, 0.3);
}

.btn-primary:hover {
    background-color: var(--hover-red);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 25, 35, 0.5);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--text-main);
    padding: 12px 28px;
    font-size: 11pt;
    font-weight: 600;
    border: 2px solid var(--text-main);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: var(--text-main);
    color: var(--pure-white);
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
}

.navbar {
    display: table;
    width: 100%;
}

.nav-logo {
    display: table-cell;
    vertical-align: middle;
    font-size: 20pt;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
}

.nav-logo span {
    color: var(--primary-red);
}

.nav-links {
    display: table-cell;
    vertical-align: middle;
    text-align: left;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-right: 25px;
    font-size: 10.5pt;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-red);
}

/* Hero Section */
.hero-section {
    padding: 180px 0 100px 0;
    background: radial-gradient(circle at 10% 20%, rgba(230, 25, 35, 0.03) 0%, transparent 60%), var(--pure-white);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-tag {
    display: inline-block;
    background-color: var(--light-red-alpha);
    border: 1px solid rgba(230, 25, 35, 0.15);
    color: var(--primary-red);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 9.5pt;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content h1 {
    color: var(--text-main);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 13pt;
    margin-bottom: 35px;
}

.hero-actions .btn-primary {
    margin-left: 15px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background-color: var(--pure-white);
    border-bottom: 1px solid var(--border-color);
}

.features-grid {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate;
    border-spacing: 20px 0;
}

.feature-card {
    display: table-cell;
    background-color: var(--off-white);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition-smooth);
    vertical-align: top;
}

.feature-card:hover {
    border-color: var(--primary-red);
    background-color: var(--pure-white);
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    width: 45px;
    height: 45px;
    background-color: var(--light-red-alpha);
    border-radius: var(--border-radius);
    color: var(--primary-red);
    font-size: 16pt;
    text-align: center;
    line-height: 45px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 13pt;
    margin-bottom: 12px;
}

/* SMM Services Table */
.services-section {
    padding: 100px 0;
    background-color: var(--off-white);
}

.services-table-wrapper {
    width: 100%;
    background-color: var(--pure-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 40px;
    box-shadow: var(--box-shadow);
}

.services-table {
    width: 100%;
    border-collapse: collapse;
    text-align: right;
}

.services-table th {
    background-color: #fafbfc;
    color: var(--text-main);
    font-weight: 700;
    padding: 18px 20px;
    font-size: 11pt;
    border-bottom: 2px solid var(--border-color);
}

.services-table td {
    padding: 16px 20px;
    font-size: 10.5pt;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.services-table tr:hover td {
    background-color: var(--light-red-alpha);
    color: var(--text-main);
}

.services-table tr.highlighted-row td {
    background-color: rgba(230, 25, 35, 0.02);
    border-right: 3px solid var(--primary-red);
}

.badge-status {
    display: inline-block;
    padding: 4px 10px;
    font-size: 9pt;
    font-weight: 700;
    border-radius: 4px;
    background-color: rgba(46, 204, 113, 0.1);
    color: #27ae60;
}

/* Footer Section */
footer {
    background-color: var(--pure-white);
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
    font-size: 10pt;
    color: var(--text-muted);
}

footer span {
    color: var(--primary-red);
    font-weight: 700;
}