/* --- Global Setup & Variables --- */
:root {
    --brand-green: #9EFF00;
    --color-black: #000000;
    --color-card: #1a1a1a;
    --color-white: #EAEAEA;
    --color-grey: #888888;
    --font-family: 'Tajawal', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; 
}

body {
    font-family: var(--font-family);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.7;
    text-align: right;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Navigation Bar --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo img {
    height: 35px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--color-white);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--brand-green);
}

/* --- Hero Section --- */
.hero-section {
    background-color: var(--color-black);
    color: var(--color-white);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 60px;
}

/* === NEW STYLE FOR HERO LOGO === */
.hero-logo {
    max-width: 400px;
    width: 80%;
    margin-bottom: 20px;
}

.slogan {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    color: var(--brand-green);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.sub-headline {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--color-grey);
}

/* --- General Section Styling --- */
section {
    padding: 80px 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 50px;
    color: var(--color-white);
}

/* --- Packages Section --- */
.packages-section {
    background-color: #000;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.package-card {
    background-color: var(--color-card);
    border: 1px solid #333;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(158, 255, 0, 0.1);
}

.package-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--color-white);
}

.package-card .description {
    font-size: 1rem;
    margin-bottom: 25px;
    color: var(--color-grey);
    min-height: 50px;
}

.features-list {
    list-style: none;
    padding: 0;
    text-align: right;
    margin-bottom: 30px;
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.features-list li svg {
    flex-shrink: 0;
    stroke: var(--brand-green);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--brand-green);
    color: var(--color-black);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 800;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: #bbff47;
    transform: scale(1.05);
}

.package-card.highlighted {
    transform: scale(1.05);
    border: 2px solid var(--brand-green);
    box-shadow: 0 0 20px rgba(158, 255, 0, 0.25);
    position: relative;
}

.highlight-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--brand-green);
    color: var(--color-black);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

/* --- How It Works Section --- */
.how-it-works-section {
    background-color: var(--color-black);
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}
.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px auto;
    background-color: var(--color-card);
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.step-icon svg {
    width: 30px;
    height: 30px;
    stroke: var(--brand-green);
}
.step h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* --- Why Us / About Section --- */
.why-us-section {
    background-color: #000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.feature-card {
    background-color: var(--color-card);
    border: 1px solid #333;
    padding: 30px;
    border-radius: 8px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--color-white);
}

.about-us-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    border-top: 1px solid #333;
    padding-top: 40px;
}

.about-us-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

/* --- Footer --- */
.footer-section {
    background-color: #000;
    color: var(--color-white);
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-section p {
    margin: 0;
    opacity: 0.7;
}

.footer-slogan {
    font-weight: 700;
    letter-spacing: 2px;
    opacity: 1 !important;
    margin-top: 10px;
    color: var(--brand-green);
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .packages-grid,
    .steps-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        margin-bottom: 30px;
    }

    .package-card.highlighted {
        transform: scale(1);
    }

    .features-grid {
        gap: 20px;
        margin-bottom: 60px;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 70px;
    }

    .navbar {
        justify-content: center;
    }
    
    .nav-menu {
        display: none;
    }

    .hero-section {
        padding: 100px 20px 50px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .sub-headline, .slogan {
        font-size: 1rem;
    }

    section {
        padding: 60px 0;
    }

    section h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .package-card {
        padding: 30px;
    }

    .about-us-text {
        padding-top: 30px;
    }
}