:root {
    --primary-color: #1e3a8a;
    --primary-dark: #1e40af;
    --accent-color: #f97316;
    --accent-light: #fb923c;
    --accent-dark: #ea580c;
    --bg-light: #f8fafc;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
}

* {
    font-family: "Cairo", sans-serif;
}

body {
    overflow-x: hidden;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.logo-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: linear-gradient(
        135deg,
        var(--accent-color),
        var(--accent-dark)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.nav-link-custom {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.nav-link-custom:hover {
    color: var(--primary-color);
}

.btn-primary-custom {
    background: linear-gradient(
        135deg,
        var(--accent-color),
        var(--accent-dark)
    );
    border: none;
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.btn-outline-primary-custom {
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    font-weight: 650;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.btn-outline-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

.btn-primary-custom:hover {
    background: linear-gradient(
        135deg,
        var(--accent-light),
        var(--accent-color)
    );
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.4);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--primary-dark) 100%
    );
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at 20% 50%,
        rgba(249, 115, 22, 0.1) 0%,
        transparent 50%
    );
    pointer-events: none;
}

.hero-badge {
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 700;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.btn-hero {
    background: var(--accent-color);
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: none;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.btn-hero:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, 0.5);
}

.btn-hero-secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    transition: all 0.3s;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* About Section */
.about-section {
    padding: 6rem 0;
    background: white;
}

.about-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    height: 100%;
}

.about-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(249, 115, 22, 0.3);
}

.about-icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 138, 0.1),
        rgba(249, 115, 22, 0.1)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

/* Features Section */
.features-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-color: rgba(249, 115, 22, 0.5);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        rgba(30, 58, 138, 0.1),
        rgba(249, 115, 22, 0.1)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: var(--accent-color);
}

/* Support Section */
.support-section {
    padding: 6rem 0;
    background: white;
}

/* Pricing Section */
.pricing-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--primary-dark)
    );
    position: relative;
    overflow: hidden;
}

.cta-badge {
    background: rgba(249, 115, 22, 0.2);
    border: 1px solid rgba(249, 115, 22, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-weight: 700;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: white;
}

.accordion-button:not(.collapsed) {
    background-color: rgba(30, 58, 138, 0.05);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--border-color);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 0 1.5rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin: 0 0.5rem;
}

.social-icon:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .price {
        font-size: 2.5rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Section Padding Top for Fixed Header */
section[id] {
    scroll-margin-top: 80px;
}
