:root {
    --primary-yellow: #f1c40f;
    --primary-yellow-light: #fbe687;
    --dark-bg: #111111;
    --footer-bg: #1c1c1c;
    --section-bg: #f8f9fa;
    --text-light: #ffffff;
    --text-dark: #2c3e50;
    --text-gray: #7f8c8d;
    --font-family: 'Cairo', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

body {
    font-family: var(--font-family);
    background-color: var(--dark-bg);
    color: var(--text-light);
    line-height: 1.7;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hover-lift {
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(241, 196, 15, 0.3);
}

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* Header Section */
.navbar {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo img {
    height: 45px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    font-weight: 600;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-yellow);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-btn {
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease;
}

.search-btn:hover {
    color: var(--primary-yellow);
}

.lang-btn {
    border: 1.5px solid rgba(255,255,255,0.3);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.lang-btn:hover {
    background-color: var(--text-light);
    color: var(--dark-bg);
    border-color: var(--text-light);
}

/* Hero Section */
.hero-section {
    position: relative;
    padding: 180px 40px 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
    overflow: hidden;
}

.hero-background-graphics {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-image: 
        radial-gradient(circle at 100% 0%, rgba(241, 196, 15, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 0% 100%, rgba(241, 196, 15, 0.1) 0%, transparent 40%);
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    width: 100%;
    gap: 60px;
}

.hero-content {
    flex: 1.2;
}

.hero-content h1 {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-light);
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 28px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #f39c12 100%);
    color: #111;
    padding: 16px 40px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    box-shadow: 0 10px 20px rgba(241, 196, 15, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 15px 30px rgba(241, 196, 15, 0.5);
    transform: translateY(-3px);
}

.hero-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--primary-yellow);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-image img {
    max-width: 100%;
    height: auto;
    max-height: 700px;
    filter: drop-shadow(0 30px 40px rgba(0,0,0,0.5));
}

/* Intro Section */
.intro-section {
    background-color: #ffffff;
    color: var(--text-dark);
    padding: 100px 40px;
    text-align: center;
    position: relative;
}

.intro-container {
    max-width: 900px;
    margin: 0 auto;
}

.intro-container h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #111;
    font-weight: 800;
}

.intro-container p {
    font-size: 20px;
    color: #555;
    line-height: 2;
}

/* Mini App Features Section */
.mini-app-features {
    background-color: var(--section-bg);
    padding: 100px 40px;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.mini-app-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.mini-app-content {
    flex: 1.2;
}

.mini-app-images {
    flex: 0.8;
    position: relative;
}

.mini-app-images::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    background: linear-gradient(to right, var(--section-bg) 0%, transparent 30%);
    pointer-events: none;
}

.mini-app-images img {
    width: 100%;
    max-width: 450px;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.5s ease;
}

.mini-app-images:hover img {
    transform: perspective(1000px) rotateY(0deg);
}

.mini-app-content h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #111;
    font-weight: 800;
}

.app-icons {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.app-icon-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
}

.app-icon-item img {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    object-fit: cover;
    background: #fff;
    padding: 5px;
}

.digital-zone-icon {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.app-icon-item span {
    font-weight: 700;
    color: #444;
    font-size: 16px;
}

.mini-app-desc {
    font-size: 18px;
    line-height: 2;
    color: #555;
    margin-bottom: 40px;
}

.download-app-links h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #111;
}

.links-row {
    display: flex;
    gap: 20px;
}

.links-row a {
    color: #2563eb;
    font-weight: 700;
    font-size: 16px;
    position: relative;
    padding-bottom: 5px;
}

.links-row a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2563eb;
    transition: height 0.3s ease;
    z-index: -1;
}

.links-row a:hover {
    color: #fff;
}

.links-row a:hover::after {
    height: 100%;
    border-radius: 4px;
}

/* Features Grid Section */
.features-grid-section {
    background-color: #fff;
    padding: 120px 40px;
    color: var(--text-dark);
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
}

.features-container h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: right;
    color: #111;
    font-weight: 800;
}

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

.feature-card {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #f39c12 100%);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(241, 196, 15, 0.2);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #111;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.feature-card p {
    font-size: 18px;
    color: #222;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.features-footer-text {
    text-align: right;
    font-size: 20px;
    color: #555;
    line-height: 1.8;
    font-weight: 600;
}

/* Footer */
.site-footer {
    background-color: var(--footer-bg);
    color: var(--text-light);
    padding: 80px 40px 30px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-trusted {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 30px;
}

.footer-trusted > span {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
}

.trusted-logos {
    display: flex;
    gap: 15px;
}

.trust-logo-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    overflow: hidden;
}

.trust-logo-wrapper img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1.5fr 1.5fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
    direction: rtl;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #fff;
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 15px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--primary-yellow);
    transform: translateX(-5px);
}

.address-col p {
    font-size: 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.address-col svg {
    margin-top: 5px;
    min-width: 18px;
    color: var(--primary-yellow);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    flex-wrap: wrap-reverse;
    gap: 30px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: #fff;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-icon:hover {
    background-color: var(--primary-yellow);
    color: #111;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(241, 196, 15, 0.3);
}

.copyright {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    display: flex;
    gap: 30px;
    align-items: center;
    flex-direction: row-reverse;
}

.copyright a {
    color: rgba(255,255,255,0.7);
}

.copyright a:hover {
    color: var(--primary-yellow);
}

.born-interactive {
    color: rgba(255,255,255,0.4);
}

.rights-text {
    font-family: 'Inter', sans-serif;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content h1 { font-size: 56px; }
    .hero-content p { font-size: 22px; }
    .mini-app-content h2 { font-size: 32px; }
    .features-container h2 { font-size: 36px; }
}

@media (max-width: 992px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    
    .mini-app-container {
        flex-direction: column-reverse;
        text-align: center;
    }
    
    .mini-app-images img {
        transform: none;
    }

    .app-icons {
        justify-content: center;
    }
    
    .links-row {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-links {
        display: none; 
    }
}

@media (max-width: 768px) {
    .hero-section { padding: 140px 20px 80px; }
    .hero-content h1 { font-size: 42px; }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-trusted {
        flex-direction: column;
        align-items: flex-end;
    }
    
    .copyright {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        justify-content: center;
    }
}
