/* ============================================================ دراجتك - Landing Page (Modern Redesign) Colors: Primary #1A5276, Secondary #E67E22, Accent #27AE60 ============================================================ */ @import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@400;500;700;800;900&display=swap'); :root { --primary: #1A5276; --primary-light: #2980B9; --primary-dark: #0E2F44; --secondary: #E67E22; --secondary-light: #F5B041; --accent: #27AE60; --accent-light: #2ECC71; --bg: #F0F4F8; --bg-alt: #F8FAFB; --surface: #FFFFFF; --text: #1E293B; --text-light: #64748B; --text-muted: #94A3B8; --border: #E2E8F0; --glass-bg: rgba(255,255,255,0.7); --glass-border: rgba(255,255,255,0.4); --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04); --shadow: 0 4px 16px rgba(26,82,118,0.08), 0 2px 4px rgba(0,0,0,0.04); --shadow-lg: 0 12px 40px rgba(26,82,118,0.12), 0 4px 8px rgba(0,0,0,0.06); --shadow-xl: 0 24px 64px rgba(26,82,118,0.16), 0 8px 16px rgba(0,0,0,0.08); --radius-sm: 12px; --radius: 16px; --radius-lg: 24px; --radius-xl: 32px; --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1); } /* ---------- Reset ---------- */ *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; } html { scroll-behavior: smooth; direction: rtl; } body { font-family: 'Tajawal', sans-serif; color: var(--text); background: var(--bg); line-height: 1.8; -webkit-font-smoothing: antialiased; overflow-x: hidden; } a { color: var(--primary-light); text-decoration: none; transition: var(--transition); } a:hover { color: var(--primary); } img { max-width: 100%; height: auto; display: block; } /* ---------- Container ---------- */ .container { max-width: 1140px; margin: 0 auto; padding: 0 24px; } /* ---------- Scroll Animations ---------- */ .animate { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; } .animate.visible { opacity: 1; transform: translateY(0); } .animate-delay-1 { transition-delay: 0.1s; } .animate-delay-2 { transition-delay: 0.2s; } .animate-delay-3 { transition-delay: 0.3s; } .animate-delay-4 { transition-delay: 0.4s; } .animate-delay-5 { transition-delay: 0.5s; } .animate-delay-6 { transition-delay: 0.6s; } /* ---------- Navbar ---------- */ .navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: var(--transition); background: transparent; } .navbar.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: var(--shadow); padding: 10px 0; } .navbar .container { display: flex; align-items: center; justify-content: space-between; } .nav-logo { font-size: 1.5rem; font-weight: 900; color: white !important; display: flex; align-items: center; gap: 8px; } .navbar.scrolled .nav-logo { color: var(--primary) !important; } .nav-logo .logo-icon { font-size: 1.8rem; } .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; } .nav-links a { font-weight: 500; font-size: 0.95rem; color: rgba(255,255,255,0.85); } .navbar.scrolled .nav-links a { color: var(--text); } .nav-links a:hover { color: var(--secondary); } .nav-cta { background: var(--secondary); color: white !important; padding: 10px 24px; border-radius: 50px; font-weight: 700 !important; } .nav-cta:hover { background: var(--secondary-light); transform: translateY(-1px); } .menu-toggle { display: none; background: none; border: none; font-size: 1.6rem; cursor: pointer; color: white; } .navbar.scrolled .menu-toggle { color: var(--text); } /* ---------- Hero ---------- */ .hero { position: relative; background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%); min-height: 100vh; display: flex; align-items: center; overflow: hidden; } .hero::before { content: ''; position: absolute; top: -50%; left: -50%; width: 100%; height: 100%; background: radial-gradient(circle, rgba(230,126,34,0.15) 0%, transparent 70%); } .hero::after { content: ''; position: absolute; bottom: -30%; right: -20%; width: 80%; height: 80%; background: radial-gradient(circle, rgba(39,174,96,0.1) 0%, transparent 60%); } .hero .container { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; padding-top: 80px; } .hero-content h1 { font-size: 3.5rem; font-weight: 900; color: white; line-height: 1.3; margin-bottom: 20px; } .hero-content h1 .highlight { color: var(--secondary); position: relative; } .hero-content p { font-size: 1.2rem; color: rgba(255,255,255,0.8); line-height: 1.9; margin-bottom: 36px; max-width: 480px; } .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; } .hero-image { display: flex; justify-content: center; position: relative; } .phone-mockup { width: 280px; height: 560px; background: var(--primary-dark); border-radius: 36px; border: 3px solid rgba(255,255,255,0.2); overflow: hidden; position: relative; box-shadow: var(--shadow-xl); } .phone-mockup .phone-notch { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 120px; height: 24px; background: var(--primary-dark); border-radius: 0 0 16px 16px; z-index: 2; } .phone-mockup .phone-screen { width: 100%; height: 100%; background: linear-gradient(180deg, #1A5276, #0E2F44); display: flex; align-items: center; justify-content: center; padding: 40px 16px 16px; } .phone-mockup .phone-screen .app-preview { text-align: center; color: white; } .phone-mockup .phone-screen .app-preview .app-icon { font-size: 3rem; margin-bottom: 12px; } .phone-mockup .phone-screen .app-preview h3 { font-size: 1.1rem; font-weight: 700; } .phone-mockup .phone-screen .app-preview p { font-size: 0.8rem; color: rgba(255,255,255,0.7); margin-top: 4px; } /* ---------- Buttons ---------- */ .btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 36px; border-radius: 50px; font-weight: 700; font-size: 1.05rem; cursor: pointer; border: none; transition: var(--transition); text-decoration: none; white-space: nowrap; } .btn-primary { background: var(--secondary); color: white; box-shadow: 0 4px 16px rgba(230,126,34,0.35); } .btn-primary:hover { background: var(--secondary-light); color: white; transform: translateY(-3px); box-shadow: 0 8px 24px rgba(230,126,34,0.45); } .btn-outline { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: white; } .btn-outline:hover { background: white; color: var(--primary); border-color: white; } .btn-lg { padding: 20px 48px; font-size: 1.15rem; } /* ---------- Stats ---------- */ .stats-section { position: relative; margin-top: -64px; z-index: 10; } .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; } .stat-card { background: var(--surface); border-radius: var(--radius); padding: 32px 20px; text-align: center; box-shadow: var(--shadow-lg); transition: var(--transition); } .stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); } .stat-number { font-size: 2.4rem; font-weight: 900; color: var(--primary); line-height: 1; } .stat-number.accent { color: var(--secondary); } .stat-number.green { color: var(--accent); } .stat-label { font-size: 0.95rem; color: var(--text-light); margin-top: 8px; font-weight: 500; } /* ---------- Sections ---------- */ .section { padding: 100px 0; } .section-alt { background: var(--surface); } .section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; } .section-badge { display: inline-block; background: rgba(26,82,118,0.08); color: var(--primary); padding: 6px 18px; border-radius: 50px; font-size: 0.85rem; font-weight: 700; margin-bottom: 16px; } .section-title { font-size: 2.4rem; font-weight: 900; color: var(--text); margin-bottom: 16px; line-height: 1.3; } .section-title .highlight { color: var(--primary); } .section-subtitle { font-size: 1.1rem; color: var(--text-light); line-height: 1.8; } /* ---------- Features Grid ---------- */ .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; } .feature-card { position: relative; background: var(--glass-bg); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); border: 1px solid var(--glass-border); border-radius: var(--radius-lg); padding: 40px 28px; transition: var(--transition); overflow: hidden; } .feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--primary), var(--primary-light)); opacity: 0; transition: var(--transition); } .feature-card:hover::before { opacity: 1; } .feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(26,82,118,0.15); } .feature-icon-wrapper { width: 64px; height: 64px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 20px; } .feature-icon-wrapper.blue { background: rgba(26,82,118,0.1); } .feature-icon-wrapper.orange { background: rgba(230,126,34,0.1); } .feature-icon-wrapper.green { background: rgba(39,174,96,0.1); } .feature-icon-wrapper.purple { background: rgba(142,68,173,0.1); } .feature-icon-wrapper.red { background: rgba(231,76,60,0.1); } .feature-icon-wrapper.teal { background: rgba(26,188,156,0.1); } .feature-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 8px; } .feature-card p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; } /* ---------- How It Works ---------- */ .steps-wrapper { position: relative; } .steps-line { display: none; } .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; } .step { text-align: center; position: relative; } .step-circle { width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; font-size: 1.6rem; font-weight: 900; position: relative; z-index: 1; } .step-circle.one { background: var(--primary); color: white; box-shadow: 0 8px 24px rgba(26,82,118,0.3); } .step-circle.two { background: var(--secondary); color: white; box-shadow: 0 8px 24px rgba(230,126,34,0.3); } .step-circle.three { background: var(--accent); color: white; box-shadow: 0 8px 24px rgba(39,174,96,0.3); } .step h3 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 8px; } .step p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; } /* ---------- Screenshots ---------- */ .screenshots-scroll { display: flex; gap: 24px; overflow-x: auto; padding: 20px 0 40px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; } .screenshots-scroll::-webkit-scrollbar { height: 6px; } .screenshots-scroll::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; } .screenshot-card { flex: 0 0 260px; scroll-snap-align: center; background: var(--surface); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); } .screenshot-card:hover { transform: translateY(-6px) scale(1.02); box-shadow: var(--shadow-lg); } .screenshot-img { width: 100%; height: 480px; background: linear-gradient(180deg, var(--primary), var(--primary-dark)); display: flex; align-items: center; justify-content: center; color: white; font-size: 3rem; } /* ---------- CTA Banner ---------- */ .cta-section { background: linear-gradient(135deg, var(--secondary), #d4701a); position: relative; overflow: hidden; } .cta-section::before { content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); border-radius: 50%; } .cta-content { position: relative; z-index: 1; text-align: center; color: white; } .cta-content h2 { font-size: 2.4rem; font-weight: 900; margin-bottom: 16px; } .cta-content p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 32px; } .cta-content .btn { background: white; color: var(--secondary); box-shadow: 0 8px 32px rgba(0,0,0,0.2); } .cta-content .btn:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); } /* ---------- Footer ---------- */ .footer { background: var(--primary-dark); color: rgba(255,255,255,0.6); padding: 64px 0 32px; } .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; } .footer-brand .logo-text { font-size: 1.4rem; font-weight: 900; color: white; margin-bottom: 12px; } .footer-brand p { font-size: 0.9rem; line-height: 1.8; } .footer-col h4 { color: white; font-weight: 700; font-size: 1rem; margin-bottom: 16px; } .footer-col ul { list-style: none; } .footer-col ul li { margin-bottom: 10px; } .footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition); } .footer-col ul li a:hover { color: var(--secondary); } .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 0.85rem; } /* ---------- Legal Pages ---------- */ .legal-page { padding: 120px 0 80px; background: var(--bg); } .legal-page .container { max-width: 800px; } .legal-card { background: var(--surface); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow); } .legal-card h1 { color: var(--primary); font-size: 2rem; font-weight: 900; margin-bottom: 8px; } .legal-card .last-updated { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 32px; } .legal-card h2 { color: var(--text); font-size: 1.3rem; font-weight: 700; margin-top: 36px; margin-bottom: 12px; padding-top: 24px; border-top: 1px solid var(--border); } .legal-card h2:first-of-type { border-top: none; padding-top: 0; } .legal-card p, .legal-card li { color: var(--text-light); margin-bottom: 14px; line-height: 2; font-size: 0.95rem; } .legal-card ul { padding-right: 24px; margin-bottom: 16px; } /* ---------- Responsive ---------- */ @media (max-width: 968px) { .hero .container { grid-template-columns: 1fr; text-align: center; padding-top: 100px; } .hero-content h1 { font-size: 2.2rem; } .hero-content p { margin-left: auto; margin-right: auto; } .hero-buttons { justify-content: center; } .hero-image { display: none; } .stats-grid { grid-template-columns: repeat(2, 1fr); } .section-title { font-size: 1.8rem; } .steps { grid-template-columns: 1fr; gap: 32px; } .footer-grid { grid-template-columns: 1fr 1fr; } .nav-links { display: none; position: absolute; top: 100%; right: 0; left: 0; background: var(--surface); flex-direction: column; padding: 24px; box-shadow: var(--shadow-lg); gap: 20px; } .nav-links.show { display: flex; } .nav-links a { color: var(--text) !important; } .menu-toggle { display: block; } } @media (max-width: 600px) { .hero-content h1 { font-size: 1.8rem; } .stats-grid { grid-template-columns: 1fr 1fr; gap: 12px; } .stat-card { padding: 20px 12px; } .stat-number { font-size: 1.8rem; } .features-grid { grid-template-columns: 1fr; } .cta-content h2 { font-size: 1.6rem; } .footer-grid { grid-template-columns: 1fr; } .legal-card { padding: 24px; } .section { padding: 60px 0; } }