/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Royal Green & Gold Color Palette */
    --primary-green: #2D5A27;
    --primary-green-light: #3A7233;
    --primary-green-dark: #1E3B1A;
    --royal-gold: #D4AF37;
    --royal-gold-light: #F4D03F;
    --royal-gold-dark: #B8941F;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --black: #000000;
    --gray-100: #F8F9FA;
    --gray-200: #E9ECEF;
    --gray-300: #DEE2E6;
    --gray-400: #CED4DA;
    --gray-500: #ADB5BD;
    --gray-600: #6C757D;
    --gray-700: #495057;
    --gray-800: #343A40;
    --gray-900: #212529;
    
    /* Status Colors */
    --success: #28A745;
    --warning: #FFC107;
    --error: #DC3545;
    --info: #17A2B8;
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-arabic: 'Tajawal', Arial, sans-serif;
    --font-english: 'Poppins', Arial, sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-padding: 0 2rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.25);
}

body {
    font-family: var(--font-arabic);
    background: linear-gradient(135deg, 
        var(--primary-green) 0%, 
        var(--primary-green-light) 50%, 
        var(--royal-gold-dark) 100%);
    background-attachment: fixed;
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Text improvements */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Improved focus states */
a:focus,
button:focus {
    outline: 2px solid var(--royal-gold);
    outline-offset: 2px;
}

/* Glass Card Effect */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--royal-gold-light), 
        transparent);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--royal-gold);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(45, 90, 39, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: rgba(45, 90, 39, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.nav-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-icon {
    color: var(--royal-gold);
    font-size: 2rem;
}

.logo-text {
    background: linear-gradient(45deg, var(--royal-gold), var(--royal-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.mobile-actions {
    display: none;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--royal-gold);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--royal-gold);
    background: rgba(212, 175, 55, 0.1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.nav-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.btn-download {
    background: linear-gradient(45deg, var(--royal-gold), var(--royal-gold-light));
    color: var(--primary-green);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    font-size: 0.9rem;
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-company {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 0.75rem 1.2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.btn-company:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-company i {
    color: var(--royal-gold);
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 120px;
    height: 120px;
    top: 10%;
    right: 20%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.title-main {
    display: block;
    background: linear-gradient(45deg, var(--royal-gold), var(--royal-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 4rem;
}

.title-sub {
    display: block;
    font-size: 2rem;
    color: var(--white);
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--gray-200);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-features {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-tag i {
    color: var(--royal-gold);
}

.feature-tag:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-store {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--glass-bg);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    color: var(--white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    font-family: var(--font-english);
}

.btn-store i {
    font-size: 1.5rem;
    color: var(--royal-gold);
}

.btn-store div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-text {
    font-size: 0.8rem;
    color: var(--gray-300);
}

.store-name {
    font-size: 1rem;
    font-weight: 600;
}

.btn-store:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Phone Mockup */
.hero-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, var(--gray-800), var(--gray-900));
    border-radius: 40px;
    padding: 20px;
    box-shadow: var(--shadow-xl);
    position: relative;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: all 0.3s ease;
}

.phone-mockup:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) translateY(-10px);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.app-preview {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.signal-icons {
    display: flex;
    gap: 5px;
}

.app-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--royal-gold);
    margin-bottom: 30px;
}

.user-card-preview {
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    padding: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.user-avatar {
    width: 50px;
    height: 50px;
    background: var(--royal-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 1.2rem;
}

.user-details h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.user-details p {
    font-size: 0.8rem;
    color: var(--gray-300);
}

.balance-card {
    text-align: center;
    padding: 15px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    border: 1px solid var(--royal-gold);
}

.balance-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-300);
    margin-bottom: 5px;
}

.balance-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--royal-gold);
}

/* Notification */
.notification {
    position: fixed;
    top: 120px;
    right: 20px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--royal-gold);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: slideInNotification 0.5s ease-out;
    z-index: 999;
}

.notification i {
    color: var(--royal-gold);
}

@keyframes slideInNotification {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Dashboard Section */
.dashboard {
    padding: var(--section-padding);
    background: rgba(0, 0, 0, 0.1);
}

.dashboard-content {
    display: grid;
    gap: 2rem;
}

/* User Card */
.user-card {
    padding: 2rem;
    margin-bottom: 2rem;
}

.user-profile {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 2rem;
    align-items: center;
}

.user-avatar-large {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--royal-gold);
    box-shadow: var(--shadow-md);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-info-detailed h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.user-status {
    color: var(--royal-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.balance-display {
    background: rgba(212, 175, 55, 0.1);
    padding: 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--royal-gold);
}

.balance-label {
    display: block;
    font-size: 0.9rem;
    color: var(--gray-300);
    margin-bottom: 0.5rem;
}

.balance-amount-large {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.currency {
    font-size: 1rem;
    color: var(--gray-400);
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--royal-gold);
}

.user-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.action-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--royal-gold);
    transform: translateY(-2px);
}

.action-btn i {
    color: var(--royal-gold);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.service-card {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-card p {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-btn {
    background: linear-gradient(45deg, var(--royal-gold), var(--royal-gold-light));
    color: var(--primary-green);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Financial Cards */
.financial-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.financial-card {
    padding: 1.5rem;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.card-header h3 {
    color: var(--white);
    font-size: 1.2rem;
}

.card-status {
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

.card-status.active {
    background: var(--success);
    color: var(--white);
}

.card-status.gold {
    background: var(--royal-gold);
    color: var(--primary-green);
}

.card-status.success {
    background: var(--success);
    color: var(--white);
}

.card-content {
    display: grid;
    gap: 1rem;
}

.amount-info, .payment-plan, .points-info, .loyalty-level, .next-reward, .cashback-info, .cashback-total, .cashback-rate {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.label {
    color: var(--gray-300);
    font-size: 0.9rem;
}

.amount, .plan, .points, .level, .reward, .total, .rate {
    color: var(--royal-gold);
    font-weight: 600;
}

.progress-container {
    margin-top: 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--gray-700);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--royal-gold), var(--royal-gold-light));
    border-radius: var(--radius-sm);
    transition: width 0.3s ease;
}

.progress-text {
    color: var(--gray-300);
    font-size: 0.8rem;
}

/* Charity Section */
.charity-section {
    padding: 2rem;
    text-align: center;
}

.charity-header h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.charity-header p {
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.charity-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.charity-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 1rem;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-width: 100px;
}

.charity-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--royal-gold);
    transform: translateY(-2px);
}

.charity-btn i {
    color: var(--royal-gold);
    font-size: 1.5rem;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--white), var(--royal-gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: var(--section-padding);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--royal-gold);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--gray-200);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--glass-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.value-item i {
    color: var(--royal-gold);
    font-size: 1.2rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.image-placeholder i {
    font-size: 4rem;
    color: var(--royal-gold);
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: rgba(0, 0, 0, 0.1);
}

.services-categories {
    display: grid;
    gap: 2rem;
}

.category-card {
    padding: 2rem;
}

.category-card h3 {
    font-size: 1.8rem;
    color: var(--royal-gold);
    margin-bottom: 1.5rem;
}

.services-list {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.services-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray-200);
    font-size: 1.1rem;
}

.services-list i {
    color: var(--royal-gold);
    font-size: 1.2rem;
    width: 20px;
}

/* Rewards Section */
.rewards {
    padding: var(--section-padding);
}

.loyalty-levels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.level-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.level-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--royal-gold), transparent);
}

.level-card.active {
    border-color: var(--royal-gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.level-card.active::before {
    background: var(--royal-gold);
}

.level-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.level-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.level-card p {
    color: var(--royal-gold);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.level-card ul {
    list-style: none;
    text-align: right;
}

.level-card li {
    color: var(--gray-300);
    margin-bottom: 0.5rem;
    position: relative;
    padding-right: 1rem;
}

.level-card li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--royal-gold);
    font-weight: bold;
}

/* Shariah Section */
.shariah {
    padding: var(--section-padding);
    background: rgba(0, 0, 0, 0.1);
}

.shariah-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.shariah-statement, .financing-model {
    padding: 2rem;
    text-align: center;
}

.shariah-statement i, .financing-model i {
    font-size: 3rem;
    color: var(--royal-gold);
    margin-bottom: 1rem;
}

.shariah-statement h3, .financing-model h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.shariah-statement p, .financing-model p {
    color: var(--gray-200);
    line-height: 1.8;
}

/* Security Section */
.security {
    padding: var(--section-padding);
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.security-card {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.security-card i {
    font-size: 3rem;
    color: var(--royal-gold);
    margin-bottom: 1rem;
}

.security-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.security-card p {
    color: var(--gray-300);
    line-height: 1.6;
}

/* Download Section */
.download {
    padding: var(--section-padding);
    background: rgba(0, 0, 0, 0.1);
}

.download-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.download-text h2 {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.download-text p {
    color: var(--gray-300);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.btn-store-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--glass-bg);
    padding: 1.25rem 2rem;
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--white);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    font-family: var(--font-english);
}

.btn-store-large i {
    font-size: 2rem;
    color: var(--royal-gold);
}

.btn-store-large:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.development-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    padding: 1rem;
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--royal-gold);
}

.development-notice i {
    color: var(--royal-gold);
}

.qr-code {
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-placeholder {
    width: 200px;
    height: 200px;
    background: var(--glass-bg);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    text-align: center;
}

.qr-placeholder i {
    font-size: 4rem;
    color: var(--royal-gold);
    margin-bottom: 1rem;
}

.qr-placeholder p {
    color: var(--gray-300);
    font-size: 0.9rem;
}

/* FAQ Section */
.faq {
    padding: var(--section-padding);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--royal-gold);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    color: var(--white);
    font-size: 1.2rem;
}

.faq-question i {
    color: var(--royal-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-300);
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: rgba(0, 0, 0, 0.1);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.form {
    display: grid;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--royal-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.btn-submit {
    background: linear-gradient(45deg, var(--royal-gold), var(--royal-gold-light));
    color: var(--primary-green);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--glass-bg);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--royal-gold);
    transform: translateY(-2px);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--royal-gold);
    width: 24px;
}

.contact-item h4 {
    color: var(--white);
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--gray-300);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--glass-bg);
    border-radius: 50%;
    color: var(--royal-gold);
    text-decoration: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--royal-gold);
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
    padding: 3rem 0 1rem;
    border-top: 2px solid var(--royal-gold);
    margin-top: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-top: 1rem;
}

.footer-section h4 {
    color: var(--royal-gold);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    padding: 0.3rem 0;
}

.footer-section ul li a:hover {
    color: var(--royal-gold-light);
    transform: translateX(5px);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--royal-gold);
}

.footer-logo i {
    color: var(--royal-gold);
    font-size: 2rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--royal-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--royal-gold-light);
}

.footer-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    background: var(--glass-bg);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.8rem;
    color: var(--royal-gold);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-phone {
        order: -1;
    }
    
    .phone-mockup {
        width: 250px;
        height: 500px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 4rem 0;
        --container-padding: 0 1.5rem;
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        grid-template-columns: none;
        gap: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(45, 90, 39, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 2rem 0;
        justify-content: flex-start;
        min-height: calc(100vh - 80px);
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .mobile-actions .btn-download,
    .mobile-actions .btn-company {
        width: 200px;
        margin: 0 auto;
        text-align: center;
        justify-content: center;
    }
    
    .nav-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
        position: relative;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .title-main {
        font-size: 3rem;
    }
    
    .title-sub {
        font-size: 1.5rem;
    }
    
    .hero-features {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .user-profile {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .user-actions {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .financial-cards {
        grid-template-columns: 1fr;
    }
    
    .charity-options {
        flex-wrap: wrap;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .loyalty-levels {
        grid-template-columns: 1fr;
    }
    
    .shariah-content {
        grid-template-columns: 1fr;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    /* Footer fixes for mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .notification {
        position: relative;
        top: auto;
        right: auto;
        margin: 1rem auto;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 1.2rem;
    }
    
    .phone-mockup {
        width: 200px;
        height: 400px;
    }
    
    .feature-tag {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .financial-cards {
        gap: 1rem;
    }
    
    .financial-card {
        padding: 1rem;
    }
    
    .user-card {
        padding: 1.5rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Development Timeline Section */
.development {
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.development::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M20 20c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8zm0-20c0 4.4-3.6 8-8 8s-8-3.6-8-8 3.6-8 8-8 8 3.6 8 8z'/%3E%3C/g%3E%3C/svg%3E");
}

.development .section-header {
    color: var(--white);
    margin-bottom: 3rem;
}

.development-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.development-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--royal-gold), var(--royal-gold-light));
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    border: 2px solid var(--royal-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.timeline-item.completed .timeline-icon {
    background: var(--royal-gold);
    color: var(--primary-green-dark);
}

.timeline-item.active .timeline-icon {
    background: var(--royal-gold-light);
    color: var(--primary-green-dark);
    animation: pulse 2s infinite;
}

.timeline-content {
    flex: 1;
    background: var(--glass-bg);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin: 0 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--white);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow);
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--royal-gold);
}

.timeline-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.timeline-status {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
}

.timeline-item.completed .timeline-status {
    background: var(--success);
    color: var(--white);
}

.timeline-item.active .timeline-status {
    background: var(--royal-gold);
    color: var(--primary-green-dark);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(212, 175, 55, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

/* Disabled buttons style */
.btn-store.disabled {
    opacity: 0.8;
    cursor: pointer;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border: 2px dashed rgba(212, 175, 55, 0.5);
}

.btn-store.disabled::after {
    content: 'قيد التطوير';
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--royal-gold);
    color: var(--primary-green-dark);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* App Interface Preview Section */
.app-interface {
    background: linear-gradient(135deg, var(--gray-100), var(--white));
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.app-interface::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 25% 75%, rgba(45, 90, 39, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 75% 25%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

.interface-preview {
    position: relative;
    z-index: 2;
}

.phone-mockups {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    padding: 2rem 0;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #f0f0f0, #cacaca);
    border-radius: 30px;
    padding: 20px 15px;
    box-shadow: 
        20px 20px 60px #bebebe,
        -20px -20px 60px #ffffff,
        inset 5px 5px 10px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
}

.phone-mockup:hover {
    transform: translateY(-10px);
    box-shadow: 
        25px 25px 80px #bebebe,
        -25px -25px 80px #ffffff,
        inset 5px 5px 10px rgba(0,0,0,0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* App Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.header-profile {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--royal-gold);
    border-radius: 50%;
    position: relative;
}

.avatar::after {
    content: 'أ';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-green-dark);
    font-weight: bold;
    font-size: 18px;
}

.user-info h4 {
    margin: 0;
    font-size: 16px;
}

.user-info p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

.header-notifications {
    position: relative;
}

.header-notifications i {
    font-size: 20px;
    color: var(--royal-gold);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Balance Card */
.balance-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.balance-info {
    color: white;
}

.balance-info p {
    margin: 0 0 5px 0;
    font-size: 14px;
    opacity: 0.8;
}

.balance-info h3 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}

.balance-chart i {
    font-size: 30px;
    color: var(--royal-gold);
}

/* Quick Actions */
.quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.action-btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 15px 10px;
    text-align: center;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.action-btn i {
    font-size: 20px;
    color: var(--royal-gold);
    margin-bottom: 8px;
    display: block;
}

.action-btn span {
    font-size: 12px;
    font-weight: 500;
}

/* Rewards Screen */
.rewards-screen {
    background: linear-gradient(135deg, var(--royal-gold-dark), var(--royal-gold));
    color: var(--primary-green-dark);
}

.rewards-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.rewards-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.level-badge {
    background: var(--primary-green);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.points-circle {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.progress-ring {
    width: 120px;
    height: 120px;
    border: 8px solid rgba(45, 90, 39, 0.2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.progress-ring::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 8px solid transparent;
    border-top-color: var(--primary-green);
    border-radius: 50%;
    transform: rotate(45deg);
}

.progress-value {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

.progress-ring p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

.rewards-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reward-item {
    background: rgba(45, 90, 39, 0.1);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(45, 90, 39, 0.2);
}

.reward-item i {
    font-size: 20px;
    color: var(--primary-green);
}

.reward-item span {
    flex: 1;
    font-weight: 500;
}

.points-cost {
    background: var(--primary-green);
    color: white;
    padding: 4px 8px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: bold;
}

/* Security Screen */
.security-screen {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.security-header {
    text-align: center;
    margin-bottom: 30px;
}

.security-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.security-icon i {
    font-size: 24px;
    color: #4CAF50;
}

.security-header h3 {
    margin: 0 0 5px 0;
    font-size: 20px;
}

.security-header p {
    margin: 0;
    opacity: 0.8;
    font-size: 14px;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.security-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.security-item i {
    font-size: 20px;
    color: #4CAF50;
}

.security-item.active i {
    color: #4CAF50;
}

.security-info {
    flex: 1;
}

.security-info h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
}

.security-info p {
    margin: 0;
    font-size: 12px;
    opacity: 0.8;
}

.security-status {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.security-status.on {
    background: #4CAF50;
    box-shadow: 0 0 8px rgba(76, 175, 80, 0.5);
}

.security-status.off {
    background: #f44336;
}

/* Interface Features */
.interface-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-highlight {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-highlight:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--royal-gold);
}

.feature-highlight h3 {
    color: var(--primary-green-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.feature-highlight p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Responsive Timeline */
@media (max-width: 768px) {
    .development-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        padding-left: 60px;
    }
    
    .timeline-icon {
        position: absolute;
        left: 0;
        width: 50px;
        height: 50px;
    }
    
    .timeline-content {
        margin: 0 0 0 1rem;
    }
    
    /* App Interface Responsive */
    .phone-mockups {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }
    
    .phone-mockup {
        width: 100%;
        max-width: 280px;
        height: 500px;
    }
    
    .interface-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-highlight {
        padding: 1.5rem;
    }
    
    /* Navigation fixes for mobile */
    .nav-link {
        padding: 1rem 0;
        font-size: 1.1rem;
        display: block;
        width: 100%;
    }
    
    .mobile-actions .btn-download,
    .mobile-actions .btn-company {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Smooth transitions */
* {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-800);
}

::-webkit-scrollbar-thumb {
    background: var(--royal-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--royal-gold-light);
}

/* Loading states */
.loading {
    opacity: 0.5;
    pointer-events: none;
}

/* Error states */
.error {
    border-color: var(--error) !important;
    box-shadow: 0 0 0 2px rgba(220, 53, 69, 0.2);
}

/* Success states */
.success {
    border-color: var(--success) !important;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.2);
}