/* ========================= ABOUT PAGE ========================= */ .about-hero .section-head { margin-bottom: 1.4rem; } .about-lead { max-width: 78ch; line-height: 1.75; font-size: var(--fs-lg); color: rgba(0, 0, 0, .75); } .about-stats { display: grid; grid-template-columns: repeat(3, minmax(220px, 1fr)); gap: 1rem; margin-top: 1.25rem; } .stat-card { padding: 1.25rem; } .stat-card .card-text { margin: 0; } @media (max-width: 900px) { .about-stats { grid-template-columns: 1fr; } } /* Story split */ .grid-story { display: grid; grid-template-columns: 2fr 1fr; gap: 1.25rem; align-items: start; } @media (max-width: 991px) { .grid-story { grid-template-columns: 1fr; } } /* Highlights pills */ .highlights { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1rem; } .pill { display: inline-flex; align-items: center; gap: .45rem; padding: .65rem .9rem; border: 1px solid rgba(0, 0, 0, .08); border-radius: 999px; background: rgba(255, 255, 255, .75); font-size: .95rem; } .pill i { opacity: .9; } /* Feature list (لو هتشيل الايقونز لاحقًا سيب CSS ده شغال عادي) */ .feature-list { margin: 0; padding: 0; list-style: none; display: grid; gap: .9rem; } .feature-list li { display: flex; gap: .75rem; align-items: flex-start; } /* لو شلت الايقون من العربي: هنعمل بديل bullet شيك */ .feature-list .icon { width: .85rem; height: .85rem; margin-top: .55rem; border-radius: 999px; background: rgba(15, 61, 46, .25); flex: 0 0 auto; } .feature-list .icon i { display: none; } /* Process */ .grid-process { display: grid; grid-template-columns: repeat(4, minmax(220px, 1fr)); gap: 1rem; } @media (max-width: 1200px) { .grid-process { grid-template-columns: repeat(2, minmax(220px, 1fr)); } } @media (max-width: 600px) { .grid-process { grid-template-columns: 1fr; } } /* Values modern */ .values-modern { background: #fff; } .values-head { max-width: 650px; margin-bottom: 2.5rem; } .values-head p { opacity: .78; line-height: 1.8; } .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; } .value-item { padding: 1.6rem 1.4rem; border-inline-start: 4px solid var(--primary); background: rgba(0, 0, 0, .015); border-radius: 12px; transition: .25s ease; } .value-item:hover { transform: translateY(-4px); background: rgba(0, 0, 0, .03); } .value-item h3 { margin-bottom: .6rem; font-size: 1.2rem; } .value-item p { line-height: 1.8; opacity: .82; margin: 0; } @media (max-width: 992px) { .values-grid { grid-template-columns: 1fr 1fr; } } @media (max-width: 600px) { .values-grid { grid-template-columns: 1fr; } .values-head { margin-bottom: 1.8rem; } } /* ========================= SERVICES PAGE ========================= */ .highlights span { font-size: 12px; } .services-grid { display: grid; grid-template-columns: repeat(3, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; } @media (max-width: 992px) { .services-grid { grid-template-columns: repeat(2, minmax(220px, 1fr)); } } @media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } } .service-card { border-radius: 14px; border: 1px solid rgba(0, 0, 0, .06); background: rgba(255, 255, 255, .92); padding: 1.35rem 1.25rem; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; } .service-card:hover { transform: translateY(-4px); background: #fff; box-shadow: var(--shadow-md); } .service-top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .75rem; } .service-no { font-weight: 900; letter-spacing: .06em; opacity: .35; font-size: 16px; flex: 0 0 auto; } .service-title { margin: 0; font-size: 16px; line-height: 1.35; } .service-text { margin: 0; line-height: 1.8; opacity: .82; } /* Steps */ .steps-grid { display: grid; grid-template-columns: repeat(3, minmax(220px, 1fr)); gap: 1.25rem; margin-top: 1.5rem; } @media (max-width: 992px) { .steps-grid { grid-template-columns: 1fr; } } .step-card { border-radius: 14px; border: 1px solid rgba(0, 0, 0, .06); background: rgba(255, 255, 255, .9); padding: 1.35rem 1.25rem; transition: transform .25s ease, box-shadow .25s ease; } .step-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); } /* FAQ */ .faq-list { display: grid; gap: .85rem; margin-top: 1.25rem; } .faq-item { border: 1px solid rgba(0, 0, 0, .06); border-radius: 14px; background: rgba(255, 255, 255, .92); padding: .2rem; overflow: hidden; } .faq-item summary { cursor: pointer; padding: 1rem 1.15rem; font-weight: 800; list-style: none; outline: none; position: relative; padding-inline-end: 3.25rem; } .faq-item summary::-webkit-details-marker { display: none; } .faq-item summary::after { content: "+"; position: absolute; inset-inline-end: 1.1rem; top: 50%; transform: translateY(-50%); width: 2rem; height: 2rem; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(0, 0, 0, .08); background: rgba(0, 0, 0, .03); font-weight: 900; opacity: .75; } .faq-item[open] summary::after { content: "–"; } .faq-body { padding: 0 1.15rem 1rem; line-height: 1.85; opacity: .82; } /* ========================= SCROLL REVEAL (global) ========================= */ .reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; will-change: opacity, transform; } .reveal--left { transform: translateX(18px); } .reveal--right { transform: translateX(-18px); } .reveal--up { transform: translateY(18px); } .reveal.is-visible { opacity: 1; transform: translate3d(0, 0, 0); } @media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; transition: none !important; } } /* ========================= CONTACT PAGE ========================= */ .contact-head { max-width: 78ch; } .contact-pills { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1rem; } .contact-pill { display: inline-flex; align-items: center; justify-content: center; padding: .55rem .85rem; border-radius: 999px; border: 1px solid rgba(0, 0, 0, .08); background: rgba(255, 255, 255, .85); color: inherit; font-weight: 700; font-size: 12px; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; } .contact-pill:hover { transform: translateY(-2px); background: #fff; box-shadow: var(--shadow-md); } .contact-pill.is-static { cursor: default; } .contact-pill.is-static:hover { transform: none; box-shadow: none; } .contact-layout { display: grid; grid-template-columns: 1.35fr .95fr; gap: 1.25rem; align-items: start; } @media (max-width: 980px) { .contact-layout { grid-template-columns: 1fr; } } .contact-right { display: grid; gap: 1.25rem; } .contact-card { padding: 1.25rem; } /* Form */ .cform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; } @media (max-width: 740px) { .cform-grid { grid-template-columns: 1fr; } } .field { display: grid; gap: .45rem; margin-bottom: .9rem; } .field label { font-weight: 900; font-size: .95rem; } .field input, .field select, .field textarea { width: 100%; border-radius: 12px; border: 1px solid rgba(0, 0, 0, .10); background: rgba(255, 255, 255, .96); padding: .85rem .95rem; outline: none; transition: box-shadow .2s ease, border-color .2s ease; } .field textarea { resize: vertical; min-height: 150px; } .field input:focus, .field select:focus, .field textarea:focus { border-color: rgba(0, 0, 0, .22); box-shadow: 0 0 0 4px rgba(0, 0, 0, .06); } .cform-actions { display: grid; gap: .65rem; margin-top: .25rem; } /* Info */ .contact-info .card-title { margin: 0 0 1rem; font-size: var(--fs-lg); } .info-list { display: grid; gap: .85rem; margin-top: .25rem; } .info-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: .75rem .85rem; border-radius: 12px; background: rgba(0, 0, 0, .03); border: 1px solid rgba(0, 0, 0, .06); } .info-label { font-weight: 900; opacity: .85; white-space: nowrap; } .info-value { text-align: left; direction: ltr; } html[lang="ar"] .info-value { text-align: right; direction: rtl; } .info-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1rem; } /* Map */ .contact-map .map-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .75rem; } .map-link { font-weight: 900; font-size: .95rem; opacity: .85; } .map-link:hover { opacity: 1; } .map-frame { position: relative; border-radius: 16px; overflow: hidden; height: 320px; border: 1px solid rgba(0, 0, 0, .08); box-shadow: var(--shadow-lg); background: rgba(0, 0, 0, .04); } @media (max-width: 980px) { .map-frame { height: 300px; } } .map-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(1.05) contrast(1.05) brightness(1.02); } .map-overlay { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(1200px 400px at 30% 10%, rgba(255, 255, 255, .18), transparent 60%), linear-gradient(180deg, rgba(0, 0, 0, .06), transparent 35%, rgba(0, 0, 0, .10)); mix-blend-mode: multiply; } .map-note { margin: .75rem 0 0; } /* ========================= PROJECTS PAGE (Premium) ========================= */ .projects-hero__wrap { display: grid; gap: 1.2rem; padding: 1.25rem 0; } .projects-hero__head { max-width: 78ch; } .projects-hero__meta { display: flex; flex-wrap: wrap; gap: .6rem; } .meta-chip { display: inline-flex; align-items: center; padding: .55rem .9rem; border-radius: 999px; border: 1px solid rgba(0, 0, 0, .08); background: rgba(255, 255, 255, .80); font-weight: 800; font-size: .95rem; } /* grid */ .projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: stretch; } @media (max-width: 992px) { .projects-grid { grid-template-columns: 1fr; } } @media (max-width: 600px) { .projects-grid { gap: 1rem; } } /* card */ .p-card { display: flex; flex-direction: column; border-radius: 18px; overflow: hidden; border: 1px solid rgba(0, 0, 0, .06); background: rgba(255, 255, 255, .92); box-shadow: 0 18px 50px rgba(0, 0, 0, .08); height: 100%; min-height: 420px; } .p-card__link { display: flex; flex-direction: column; color: inherit; height: 100%; } .p-card__media { position: relative; margin: 0; height: 260px; width: 100%; overflow: hidden; flex: 0 0 auto; } @media (max-width: 600px) { .p-card__media { height: 220px; } .p-card { min-height: 380px; } } .p-card__media img { width: 100%; height: 100%; object-fit: cover; display: block; } .p-card__shade { position: absolute; inset: 0; background: radial-gradient(900px 300px at 30% 10%, rgba(255, 255, 255, .20), transparent 55%), linear-gradient(180deg, rgba(0, 0, 0, .05), rgba(0, 0, 0, .35)); } .p-card__body { padding: 1.2rem; display: flex; flex-direction: column; gap: 0.85rem; flex: 1; } .p-card__top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; } .p-card__title { margin: 0; font-size: 2.35rem; line-height: 1.4; } .p-card__badge { font-weight: 900; opacity: .75; font-size: .95rem; padding: .35rem .7rem; border-radius: 999px; background: rgba(0, 0, 0, .04); border: 1px solid rgba(0, 0, 0, .08); white-space: nowrap; } .p-card__text { margin: 0; line-height: 1.85; max-width: 100%; font-size: 1.5rem; flex: 1; } .p-card__footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; padding-top: 0.5rem; border-top: 1px solid rgba(0, 0, 0, .05); } .p-card__meta { display: inline-flex; gap: .5rem; align-items: center; font-weight: 800; opacity: .85; } .p-card__cta { display: inline-flex; gap: .6rem; align-items: center; font-weight: 900; color: var(--primary); } /* ========================= PROJECT MODAL (pm) ========================= */ .pm { position: fixed; inset: 0; z-index: 2500; display: none; } .pm.is-open { display: grid; place-items: center; } .pm__backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .62); backdrop-filter: blur(8px); } .pm__panel { position: relative; width: min(1040px, calc(100% - 2rem)); background: rgba(255, 255, 255, .96); border: 1px solid rgba(0, 0, 0, .12); border-radius: 18px; box-shadow: 0 30px 90px rgba(0, 0, 0, .40); overflow: hidden; } .pm__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1rem 1.1rem; border-bottom: 1px solid rgba(0, 0, 0, .08); } .pm__titles { display: grid; gap: .2rem; max-width: 78ch; } .pm__title { margin: 0; font-size: clamp(1.8rem, 1.7vw, 2.2rem); } .pm__desc { margin: 0; line-height: 1.8; } .pm__close { width: 44px; height: 44px; border-radius: 12px; border: 1px solid rgba(0, 0, 0, .12); background: rgba(255, 255, 255, .9); cursor: pointer; } .pm__stage { position: relative; padding: .9rem; } .pm__figure { margin: 0; border-radius: 14px; overflow: hidden; background: rgba(0, 0, 0, .03); border: 1px solid rgba(0, 0, 0, .10); } .pm__figure img { width: 100%; height: min(68vh, 620px); object-fit: contain; display: block; } .pm__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 44px; height: 44px; border-radius: 12px; border: 1px solid rgba(0, 0, 0, .12); background: rgba(255, 255, 255, .92); cursor: pointer; } .pm__prev { inset-inline-start: 1.15rem; } .pm__next { inset-inline-end: 1.15rem; } @media (max-width: 700px) { .pm__nav { display: none; } .pm__figure img { height: 54vh; } } .pm__thumbs { display: flex; gap: .6rem; padding: 0 1.1rem 1rem; overflow: auto; scroll-snap-type: x mandatory; } .pm__thumbs::-webkit-scrollbar { height: 10px; } .pm__thumbs::-webkit-scrollbar-thumb { background: rgba(0, 0, 0, .15); border-radius: 999px; } .pm__thumb { flex: 0 0 auto; width: 90px; height: 64px; border-radius: 12px; border: 1px solid rgba(0, 0, 0, .12); background: rgba(0, 0, 0, .03); overflow: hidden; cursor: pointer; scroll-snap-align: start; opacity: .85; transition: opacity .2s ease, transform .2s ease; } .pm__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; } .pm__thumb:hover { opacity: 1; transform: translateY(-2px); } .pm__thumb.is-active { opacity: 1; outline: 2px solid rgba(15, 61, 46, .35); outline-offset: 2px; } .pm__foot { display: flex; align-items: center; justify-content: flex-start; gap: 1rem; padding: .85rem 1.1rem 1rem; border-top: 1px solid rgba(0, 0, 0, .08); } .pm__maps { font-weight: 900; color: var(--primary); text-decoration: none; padding: .6rem .9rem; border-radius: 12px; border: 1px solid rgba(15, 61, 46, .20); background: rgba(15, 61, 46, .05); } .pm__maps:hover { background: rgba(15, 61, 46, .08); } /* =========================== FOOTER — Premium =========================== */ .site-footer { position: relative; overflow: hidden; color: var(--white); padding: clamp(4.8rem, 6vw, 7.2rem) 0 2.8rem; background: radial-gradient(800px 500px at 18% 18%, rgba(212, 185, 140, .18), transparent 62%), radial-gradient(700px 420px at 85% 25%, rgba(255, 255, 255, .08), transparent 60%), linear-gradient(135deg, rgba(21, 88, 68, .96), rgba(29, 111, 85, .86)); } /* overlay */ .site-footer::after { content: ""; position: absolute; inset: 0; background: rgba(0, 0, 0, .30); /* أغمق سنة = أفخم */ pointer-events: none; } .site-footer>.container { position: relative; z-index: 2; } /* layout */ .footer-wrap { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: clamp(2rem, 3vw, 4rem); } /* brand */ .footer-logo img { height: 44px; filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .25)); } .footer-desc { color: rgba(255, 255, 255, .85); line-height: 1.8; max-width: 55ch; } /* titles */ .footer-title { margin-bottom: 1.2rem; font-weight: 800; color: #fff; } /* links */ .footer-links { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; } .footer-links a { color: rgba(255, 255, 255, .85); padding: .5rem 0; transition: .25s; } .footer-links a:hover { color: #fff; transform: translateX(4px); } /* contact */ .footer-contact { list-style: none; padding: 0; margin: 0; display: grid; gap: .8rem; } .footer-contact li a, .footer-contact li.is-muted { display: grid; grid-template-columns: 2rem 1fr; gap: .8rem; align-items: center; } .footer-contact i { color: var(--secondary); } .footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .15); text-align: center; color: rgba(255, 255, 255, .7); } /* =========================== 🔥 MOBILE MAGIC =========================== */ @media (max-width: 992px) { .footer-wrap { grid-template-columns: 1fr; text-align: center; /* كل حاجة في النص */ justify-items: center; } .footer-desc { max-width: 60ch; } /* اللوجو في النص */ .footer-brand { display: flex; flex-direction: column; align-items: center; } /* Contact centered */ .footer-contact li a, .footer-contact li.is-muted { grid-template-columns: 1fr; justify-items: center; text-align: center; } /* 🔥 شيل hover من روابط سريعة */ .footer-links a:hover { transform: none; color: rgba(255, 255, 255, .85); background: none; } .footer-bottom { text-align: center; display: flex; justify-content: center; align-items: center; } .footer-bottom small { width: 100%; text-align: center; } }