:root {
    --primary-color: #6366f1;
    --secondary-color: #a855f7;
    --accent-color: #10b981;
    --gold-color: #f59e0b;
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --bg-color: #0f172a;
    --glass-bg: rgba(15, 23, 42, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(30, 41, 59, 0.7);
    --hover-bg: rgba(255, 255, 255, 0.1);
    --success-color: #10b981;
    --bronze-color: #cd7f32;
    --silver-color: #c0c0c0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.8;
    overflow-x: hidden;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: 1px;
    z-index: 1001;
}

.logo-j,
.hero-j,
.letter-j {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 2.2rem;
}

.logo-home,
.hero-home-text {
    color: var(--text-color);
    font-weight: 600;
}

.hero-logo-main {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-j {
    font-size: 5rem;
}

.hero-home-text {
    font-size: 4rem;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s infinite ease-in-out;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-color);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-color);
    bottom: -150px;
    left: -150px;
    animation-delay: -5s;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(50px, -50px) scale(1.1);
    }

    50% {
        transform: translate(-30px, 30px) scale(0.95);
    }

    75% {
        transform: translate(40px, 20px) scale(1.05);
    }
}

/* Header & Nav */
.glass-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.2rem 2rem;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
}

.glass-header nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Hamburger Button */
.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0.5rem;
}

.bar {
    width: 30px;
    height: 3px;
    background-color: var(--text-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Navigation Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav-overlay.active {
    right: 0;
}

.nav-links-overlay {
    list-style: none;
    text-align: center;
}

.nav-links-overlay li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.nav-overlay.active .nav-links-overlay li {
    opacity: 1;
    transform: translateY(0);
}

.nav-overlay.active .nav-links-overlay li:nth-child(1) {
    transition-delay: 0.1s;
}

.nav-overlay.active .nav-links-overlay li:nth-child(2) {
    transition-delay: 0.15s;
}

.nav-overlay.active .nav-links-overlay li:nth-child(3) {
    transition-delay: 0.2s;
}

.nav-overlay.active .nav-links-overlay li:nth-child(4) {
    transition-delay: 0.25s;
}

.nav-overlay.active .nav-links-overlay li:nth-child(5) {
    transition-delay: 0.3s;
}

.nav-overlay.active .nav-links-overlay li:nth-child(6) {
    transition-delay: 0.35s;
}

.nav-link {
    font-size: 2rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 1rem;
}

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

.close-btn {
    position: absolute;
    top: 2rem;
    left: 2rem;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg) scale(1.1);
    color: var(--secondary-color);
}

/* Sections */
.section-container {
    padding: 4rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-top: -1rem;
    margin-bottom: 2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.hero-small {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    position: relative;
    margin-top: 4rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Buttons */
.cta-button {
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cairo', sans-serif;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
}

/* Glass Card */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Featured App Section */
.featured-app {
    margin-top: 2rem;
}

.featured-app-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold-color), #fbbf24);
    color: #1e1b4b;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.app-info h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.app-tagline {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.app-description {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.app-features {
    list-style: none;
    margin-bottom: 2rem;
}

.app-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.app-features li i {
    color: var(--accent-color);
}

.app-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 250px;
    height: 450px;
    background: linear-gradient(145deg, #1e1b4b, #312e81);
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-preview {
    text-align: center;
    color: white;
}

.app-preview i {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.app-preview span {
    font-size: 1.5rem;
    font-weight: 700;
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.float-item {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.3rem;
    animation: floatItem 3s infinite ease-in-out;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.float-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.float-2 {
    top: 30%;
    left: 5%;
    animation-delay: 0.5s;
}

.float-3 {
    bottom: 25%;
    right: 5%;
    animation-delay: 1s;
}

.float-4 {
    bottom: 10%;
    left: 15%;
    animation-delay: 1.5s;
}

@keyframes floatItem {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* Vision Cards */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.vision-card {
    text-align: center;
    transition: all 0.3s ease;
}

.vision-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.vision-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.vision-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.vision-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.card-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.card-link:hover {
    gap: 0.8rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 3rem 2rem;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Footer */
footer {
    text-align: center;
    padding: 3rem 1rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(15, 23, 42, 0.5);
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-slogan {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Goal Sections */
.goal-section {
    margin-bottom: 2rem;
}

.goal-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.goal-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.awareness-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.trust-icon {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.empowerment-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.goal-title .goal-number {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.goal-title h2 {
    font-size: 1.8rem;
}

.goal-content h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.goal-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.goal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.goal-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.goal-feature:hover {
    background: rgba(255, 255, 255, 0.07);
}

.goal-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Trust Levels */
.trust-levels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.trust-level {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.level-badge {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.level-badge.bronze {
    background: linear-gradient(135deg, #cd7f32, #a0522d);
    color: white;
}

.level-badge.silver {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: white;
}

.level-badge.gold {
    background: linear-gradient(135deg, #ffd700, #f59e0b);
    color: #1e1b4b;
}

/* New Trust System Styles */
.level-badge.professional {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.level-badge.expert {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}

.level-badge.distinguished {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: white;
}

.level-badge.master {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: white;
}

.level-badge.legend {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #1e1b4b;
}

.trust-system {
    margin-top: 1.5rem;
}

.trust-intro {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.trust-intro-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #1e1b4b;
    flex-shrink: 0;
}

.trust-intro-content h4 {
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.trust-intro-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.ranks-title {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.trust-note {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    margin-top: 1.5rem;
}

.trust-note i {
    color: #fbbf24;
    font-size: 1.3rem;
    margin-top: 0.2rem;
}

.trust-note p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

.glass-inner {
    backdrop-filter: blur(8px);
}

.level-info h4 {
    margin-bottom: 0.2rem;
}

.level-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Stats */
.empowerment-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.stat-label {
    font-weight: 600;
}

.stat-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Economy Section */
.economy-section {
    text-align: center;
}

.economy-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.economy-subtitle {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.economy-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.economy-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.economy-feature i {
    color: var(--accent-color);
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    text-align: center;
}

.impact-stat .stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-stat .stat-label {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Stories Grid */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.story-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.story-avatar {
    font-size: 4rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.story-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.story-profession {
    color: var(--secondary-color);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.8rem;
}

.story-card p {
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.story-stats {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.story-stats i {
    color: var(--gold-color);
    margin-left: 0.3rem;
}

/* Categories */
.categories-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.category-item {
    text-align: center;
    padding: 1.5rem 1rem;
    transition: all 0.3s ease;
}

.category-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.category-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    display: block;
}

.category-item span {
    font-size: 0.95rem;
}

/* Blog */
.blog-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 1.5rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.blog-card {
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.blog-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.blog-card p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 0.8rem;
}

/* Newsletter */
.newsletter {
    text-align: center;
}

.newsletter h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.newsletter p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    min-width: 280px;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* About Page */
.about-intro {
    text-align: center;
}

.about-logo-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.logo-j-large {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    font-size: 5rem;
}

.logo-home-large {
    color: var(--text-color);
    font-weight: 600;
}

.about-tagline {
    font-size: 1.3rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.name-meaning {
    text-align: center;
}

.name-meaning h2 {
    margin-bottom: 2rem;
}

.name-parts {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.name-part {
    text-align: center;
}

.letter-j {
    font-size: 5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.letter-home {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-color);
    display: block;
    margin-bottom: 0.5rem;
}

.name-part p {
    color: var(--text-muted);
    max-width: 250px;
}

.about-content {
    text-align: center;
}

.about-content h2 {
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--text-muted);
    line-height: 1.9;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.goal-item {
    text-align: center;
    transition: all 0.3s ease;
}

.goal-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.goal-icon-small {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 1rem;
}

.goal-item h3 {
    margin-bottom: 0.8rem;
}

.goal-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.why-us {
    text-align: center;
}

.why-us h2 {
    margin-bottom: 1.5rem;
}

.why-text {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.why-us p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.slogan-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 1.5rem 2rem;
    border-radius: 15px;
    display: inline-block;
}

.main-slogan {
    font-size: 1.4rem;
    font-weight: 700;
    color: white !important;
    margin: 0 !important;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.contact-info-section h2,
.contact-form-section h2 {
    margin-bottom: 1.5rem;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
}

.contact-details h4 {
    margin-bottom: 0.2rem;
}

.contact-details a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-btn {
    width: 50px;
    height: 50px;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group select {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    justify-content: center;
}

/* FAQ */
.faq-section h2 {
    margin-bottom: 2rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item h4 {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

.faq-item h4 i {
    color: var(--primary-color);
}

.faq-item p {
    color: var(--text-muted);
    padding-right: 1.8rem;
}

/* Vision Statement */
.vision-statement {
    text-align: center;
    position: relative;
    padding: 3rem;
}

.vision-quote {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 2rem;
}

.vision-statement h2 {
    margin-bottom: 1rem;
}

.vision-text {
    font-size: 1.4rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
    transition-delay: 0.6s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

    .hero p {
        font-size: 1.1rem;
    }

    .hero-logo-main {
        font-size: 3rem;
    }

    .hero-j {
        font-size: 3.5rem;
    }

    .hero-home-text {
        font-size: 2.5rem;
    }

    .featured-app-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-info {
        order: 2;
    }

    .app-visual {
        order: 1;
        margin-bottom: 2rem;
    }

    .app-buttons {
        justify-content: center;
    }

    .phone-mockup {
        width: 200px;
        height: 360px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .goal-header {
        flex-direction: column;
        text-align: center;
    }

    .name-parts {
        flex-direction: column;
        gap: 2rem;
    }

    .letter-j {
        font-size: 4rem;
    }

    .letter-home {
        font-size: 2.5rem;
    }

    .story-card {
        flex-direction: column;
        text-align: center;
    }

    .story-stats {
        justify-content: center;
    }
}

/* Projects Grid (for existing projects page) */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.project-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.project-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.project-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.project-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.project-link:hover {
    gap: 0.8rem;
}

/* Featured Project */
.featured-project {
    position: relative;
    border: 2px solid var(--primary-color);
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold-color), #fbbf24);
    color: #1e1b4b;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Join CTA */
.join-cta {
    text-align: center;
    padding: 3rem 2rem;
}

.join-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.join-content p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.join-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.join-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.join-step span {
    font-size: 0.9rem;
    color: var(--text-muted);
}