:root {
    --bg-dark: #0f0c29;
    --bg-gradient: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    --primary: #6c5ce7;
    --secondary: #0984e3;
    --accent: #00cec9;
    --text-main: #ffffff;
    --text-muted: #b2bec3;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);

    --font-main: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body.pro-body {
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

/* Background Effects */
.orb {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--primary);
}

.orb-2 {
    bottom: -10%;
    right: -10%;
    width: 40vw;
    height: 40vw;
    background: var(--secondary);
    animation-delay: -5s;
}

.orb-3 {
    top: 40%;
    left: 40%;
    width: 30vw;
    height: 30vw;
    background: var(--accent);
    opacity: 0.2;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    33% {
        transform: translate(30px, -50px);
    }

    66% {
        transform: translate(-20px, 20px);
    }
}

.glass-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 12, 41, 0.7);
    backdrop-filter: blur(50px);
    z-index: -1;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #a29bfe, #74b9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Header */
.pro-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    z-index: 1000;
    transition: all 0.3s;
    align-content: center;
}

.pro-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 12, 41, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    z-index: -1;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    /* Responsive padding */
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    text-decoration: none;
}

.ArabFRP-logo-icon input{
    width: 40px;
    height: 40px;
    /* background: linear-gradient(135deg, var(--primary), var(--secondary)); */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    /* box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4); */
    box-shadow: inset 1px -1px 20px 7px var(--accent);
}
.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

/* Buttons */
.pro-btn {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.pro-btn.glow {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 5px 20px rgba(108, 92, 231, 0.4);
}

.pro-btn.glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(108, 92, 231, 0.6);
}

.pro-btn.primary {
    background: white;
    color: var(--primary);
}

.pro-btn.primary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.pro-btn.secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(5px);
}

.pro-btn.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu span {
    display: block;
    width: 25px;
    height: 2px;
    background: white;
    margin: 6px 0;
    transition: 0.3s;
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.trust-badges {
    display: flex;
    gap: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--accent);
    margin-right: 8px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s;
}

.glass-card:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.card-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.dots span:nth-child(1) {
    background: #ff5f56;
}

.dots span:nth-child(2) {
    background: #ffbd2e;
}

.dots span:nth-child(3) {
    background: #27c93f;
}

.address-bar {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    padding: 5px 15px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-align: center;
    text-decoration: none;
}

.card-body {
    padding: 0;
    position: relative;
}

.app-screenshot {
    width: 100%;
    display: block;
}

.floating-badge {
    position: absolute;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.9);
    color: #333;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float-badge 4s infinite ease-in-out;
}

.badge-1 {
    top: 20%;
    right: -10px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 20%;
    left: -10px;
    animation-delay: -2s;
}

.badge-1 i {
    color: #27c93f;
}

.badge-2 i {
    color: var(--secondary);
}

@keyframes float-badge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Features */
.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s;
}

.glass-panel:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 25px;
}

/* Existing Gradients */
.gradient-1 {
    background: linear-gradient(135deg, #f83600, #fe8c00);
}

.gradient-2 {
    background: linear-gradient(135deg, #a18cd1, #fbc2eb);
}

.gradient-3 {
    background: linear-gradient(135deg, #84fab0, #8fd3f4);
}

/* New Gradients for the 3 new features */
.gradient-4 {
    background: linear-gradient(135deg, #4e54c8, #8f94fb);
}

.gradient-5 {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.gradient-6 {
    background: linear-gradient(135deg, #ff9a9e, #fad0c4);
}



.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Agents */
.agents {
    padding: 100px 0;
}

.filter-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.filter-pill {
    padding: 10px 25px;
    border-radius: 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-main);
    font-weight: 500;
}

.filter-pill:hover,
.filter-pill.active {
    background: white;
    color: var(--bg-dark);
    border-color: white;
}

.agents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Reuse glass-panel for agent cards but customize */
.agent-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s;
}

.agent-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.agent-flag {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: contain;
    margin-bottom: 20px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    padding: 3px;
}

.agent-name {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.agent-region {
    color: var(--accent);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.agent-social {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.agent-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

.agent-social a:hover {
    background: var(--primary);
    transform: scale(1.1);
}
/* Telegram Hover */
.agent-social a[aria-label="telegram"]:hover {
    background: #0088cc; /* Telegram Blue */
    color: #ffffff;
}

/* WhatsApp Hover */
.agent-social a[aria-label="whatsapp"]:hover {
    background: #25D366; /* WhatsApp Green */
    color: #ffffff;
}

/* Facebook Hover */
.agent-social a[aria-label="facebook"]:hover {
    background: #1877F2; /* Facebook Blue */
    color: #ffffff;
}

.agent-cta .btn {
    padding: 8px 20px;
    border-radius: 20px;
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.agent-cta .btn:hover {
    background: var(--primary);
    color: white;
}

/* Footer */
.pro-footer {
    border-top: 1px solid var(--glass-border);
    padding: 80px 0 30px;
    background: rgba(0, 0, 0, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 15px;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 15px;
}

/* الشكل الأساسي لكل أيقونة */
.social-icons a {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
    text-decoration: none;
}

/* Hover لكل منصة بلونها الرسمي */

/* Facebook */
.social-icons a[href*="facebook"]:hover {
    background: #1877F2; /* Facebook Blue */
    transform: translateY(-3px);
}

/* Telegram */
.social-icons a[href*="t.me"]:hover {
    background: #0088cc; /* Telegram Blue */
    transform: translateY(-3px);
}

/* WhatsApp (إذا أضفت لاحقاً) */
.social-icons a[href*="wa.me"]:hover {
    background: #25D366; /* WhatsApp Green */
    transform: translateY(-3px);
}


.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .trust-badges {
        justify-content: center;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        background: rgba(15, 12, 41, 0.95);
        flex-direction: column;
        padding: 30px;
        backdrop-filter: blur(10px);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .mobile-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 150px 5%;
    /* Responsive padding */
    width: 100%;
}