body {
  font-family: 'Tajawal', Arial, sans-serif;
  background: #fff;
  color: #222;
  margin: 0;
  padding: 0;
  direction: rtl;
}

:root {
  --main-color: #EF6622;
  --dark: #222;
  --light: #fff;
  --gray: #444;
  --footer-bg: #222;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background: var(--light);
  border-bottom: 5px solid var(--main-color);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.logo {
  height: 80px;
  margin: 1.5rem 0 1rem 0;
  display: block;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}
nav a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.2s;
}
nav a.active,
nav a:hover {
  color: var(--main-color);
}
nav a.active {
  border-bottom: 3px solid var(--main-color);
  padding-bottom: 0.2rem;
  font-weight: 900;
}

.hero {
  background: linear-gradient(120deg, #fff 60%, #ef662210 100%);
  padding: 4rem 0 2rem 0;
  text-align: center;
}
.hero h1 {
  color: var(--main-color);
  font-size: 2.3rem;
  margin-bottom: 1.2rem;
  font-weight: 900;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  justify-content: center;
}
.hero h1 i {
  color: var(--main-color);
  background: #fff7f3;
  border-radius: 50%;
  padding: 0.5rem;
  font-size: 1.5em;
  margin-left: 0.5rem;
}
.hero p {
  color: var(--gray);
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.btn-main {
  background: var(--main-color);
  color: #fff;
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 40px;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
  display: inline-block;
  box-shadow: 0 2px 8px #ef662233;
  letter-spacing: 0.5px;
}
.btn-main:hover {
  background: #d3541a;
}

.quick-links {
  margin: 3rem 0;
}
.quick-flex {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.quick-card {
  background: #fff;
  border: 1.5px solid #ef662233;
  border-radius: 18px;
  box-shadow: 0 2px 8px #ef662210;
  padding: 2rem 2.5rem;
  text-align: center;
  color: var(--main-color);
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  transition: box-shadow 0.2s, border 0.2s;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.quick-card i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}
.quick-card:hover {
  border: 1.5px solid var(--main-color);
  box-shadow: 0 4px 16px #ef662233;
  background: #fff7f3;
}

footer {
  background: #232323;
  color: #fff;
  padding: 2.5rem 0 1.2rem 0;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo {
  max-width: 120px;
  margin-bottom: 1rem;
}
footer p {
  color: #e0e0e0;
  font-size: 1.05rem;
  margin: 0.5rem 0 0 0;
  line-height: 1.8;
}
.social-links {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
}
.social-links a {
  color: #fff;
  font-size: 1.5rem;
  transition: color 0.2s;
}
.social-links a:hover {
  color: var(--main-color);
}

h2 {
  font-size: 1.5rem;
  border-right: 5px solid var(--main-color);
  padding-right: 0.7rem;
  background: #fff7f3;
  border-radius: 0 18px 18px 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
}
h2 i {
  color: var(--main-color);
  background: #fff7f3;
  border-radius: 50%;
  padding: 0.5rem;
  font-size: 1.5em;
  margin-left: 0.5rem;
}

.about-hero .container,
.about-section .container,
.services-hero .container,
.services-list .container,
.contact-hero .container,
.contact-form-section .container {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px #ef662210;
  padding: 2.5rem 2rem;
  margin-bottom: 2.5rem;
}

.about-section, .services-list, .contact-form-section {
  background: #fff7f3;
  padding: 2rem 0;
}

.about-list, .sub-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}
.about-list > li {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  color: var(--dark);
  position: relative;
  padding-right: 1.5rem;
}
.about-list > li:before {
  content: '\2022';
  color: var(--main-color);
  font-size: 1.5rem;
  position: absolute;
  right: 0;
  top: 0.1rem;
}
.sub-list li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: var(--main-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.sub-list li i {
  color: var(--main-color);
  font-size: 1.1em;
  margin-left: 0.3rem;
}

p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 2.1;
  margin-bottom: 1.2rem;
}

section {
  margin-bottom: 2.5rem;
}

@media (max-width: 700px) {
  .header-flex, .footer-flex, .quick-flex {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .logo {
    height: 56px;
    margin: 1rem auto 1rem auto;
  }
  .footer-logo {
    height: 32px;
  }
  .quick-card {
    min-width: 120px;
    padding: 1.2rem 1rem;
  }
  .hero h1 {
    font-size: 1.5rem;
  }
  .hero h2 {
    font-size: 1.1rem;
    padding-right: 0.4rem;
  }
  .about-hero .container,
  .about-section .container,
  .services-hero .container,
  .services-list .container,
  .contact-hero .container,
  .contact-form-section .container {
    padding: 1.2rem 0.7rem;
  }
} 

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-group label {
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 0.3rem;
  display: block;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7rem;
  border: 1.5px solid #ef662233;
  border-radius: 10px;
  font-size: 1rem;
  margin-top: 0.2rem;
  background: #fff;
  transition: border 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border: 1.5px solid var(--main-color);
  outline: none;
}

.contact-info {
  background: #fff7f3;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.1rem;
  display: inline-block;
}
.contact-info a {
  color: var(--main-color);
  text-decoration: underline;
  font-weight: 900;
}

.header-brand {
  width: 100%;
  background: #fff7f3;
  text-align: center;
  padding: 0.7rem 0 0.2rem 0;
  border-bottom: 2px solid #ef6622;
}
.brand-name {
  color: var(--main-color);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  display: inline-block;
  font-family: 'Tajawal', Arial, sans-serif;
}

.page-bar {
  width: 100%;
  background: #fff7f3;
  border-bottom: 2.5px solid var(--main-color);
  padding: 0.7rem 0 0.2rem 0;
  font-family: 'Tajawal', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
}
.page-bar span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0;
}
.page-bar i {
  color: var(--main-color);
  font-size: 1.3em;
  background: #fff;
  border-radius: 50%;
  padding: 0.3rem 0.5rem;
  margin-left: 0.3rem;
}
@media (max-width: 700px) {
  .page-bar {
    font-size: 1rem;
    justify-content: center;
    padding: 0.5rem 0 0.1rem 0;
  }
  .page-bar span {
    margin-left: 0;
  }
} 

/* --- Hero Section --- */
.redesigned-hero {
  background: linear-gradient(120deg, #fff 60%, #fff7f3 100%);
  padding: 2.5rem 0 1.5rem 0;
  text-align: center;
}
.hero-icon-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.hero-icon {
  background: #fff7f3;
  color: var(--main-color);
  border-radius: 50%;
  font-size: 2.5rem;
  padding: 1rem 1.2rem;
  box-shadow: 0 2px 12px #ef662220;
  margin-bottom: 0.5rem;
}
.redesigned-hero h1 {
  color: var(--main-color);
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.hero-lead {
  color: var(--gray);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* --- Vision, Mission, Values Cards --- */
.about-cards-section {
  background: #fff7f3;
  padding: 2rem 0 1.5rem 0;
}
.about-cards-flex {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.about-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #ef662220;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.about-card-icon {
  background: #fff7f3;
  color: var(--main-color);
  border-radius: 50%;
  font-size: 2rem;
  padding: 0.7rem 1rem;
  margin-bottom: 0.3rem;
  box-shadow: 0 2px 8px #ef662220;
}
.about-card h3 {
  color: var(--main-color);
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0.2rem 0 0.3rem 0;
}
.about-card p {
  color: var(--gray);
  font-size: 1.05rem;
  margin: 0;
}

/* --- Why Hello Partner Section --- */
.about-why-section {
  background: #fff;
  padding: 2rem 0 1.5rem 0;
}
.section-title {
  color: var(--main-color);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
}
.why-icons-flex {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
.why-icon-card {
  background: #fff7f3;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--main-color);
  font-weight: 700;
  box-shadow: 0 2px 8px #ef662220;
  gap: 0.3rem;
}
.why-icon-card span {
  font-size: 2rem;
  margin-bottom: 0.2rem;
}
.why-desc {
  color: var(--gray);
  font-size: 1.05rem;
  text-align: center;
  margin-top: 0.5rem;
}

/* --- Stats Bar --- */
.about-stats-section {
  background: #fff7f3;
  padding: 1.5rem 0 1.5rem 0;
}
.stats-flex {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.stat-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px #ef662220;
  padding: 1.2rem 2rem;
  min-width: 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.stat-card i {
  color: var(--main-color);
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}
.stat-number {
  color: var(--main-color);
  font-size: 1.3rem;
  font-weight: 900;
}
.stat-label {
  color: var(--gray);
  font-size: 1rem;
}

/* --- Core Values Cards --- */
.about-values-section {
  background: #fff;
  padding: 2rem 0 1.5rem 0;
}
.values-flex {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.value-card {
  background: #fff7f3;
  border-radius: 14px;
  box-shadow: 0 2px 8px #ef662220;
  padding: 1.2rem 1.5rem;
  min-width: 160px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.05rem;
}
.value-card i {
  font-size: 1.3rem;
  margin-bottom: 0.2rem;
}

/* --- Company Story Section --- */
.about-story-section {
  background: #fff7f3;
  padding: 2rem 0 2.5rem 0;
}
.about-story {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 2.1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px #ef662220;
  padding: 2rem 1.5rem;
}

@media (max-width: 900px) {
  .about-cards-flex, .stats-flex, .values-flex, .why-icons-flex {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .about-card, .stat-card, .value-card, .why-icon-card {
    min-width: 180px;
    max-width: 100%;
  }
} 

/* --- Company Intro Card (after hero) --- */
.about-intro-card {
  background: #fff;
  padding: 0 0 1.5rem 0;
}
.intro-card {
  background: #fff7f3;
  border-radius: 18px;
  box-shadow: 0 2px 12px #ef662220;
  padding: 1.5rem 1.2rem 1.2rem 1.2rem;
  max-width: 700px;
  margin: -2.5rem auto 1.5rem auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.intro-card .section-title {
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
}
.intro-card p {
  color: var(--gray);
  font-size: 1.08rem;
  margin: 0;
}
@media (max-width: 900px) {
  .intro-card {
    margin: -2rem 1rem 1.2rem 1rem;
    padding: 1.2rem 0.7rem;
  }
} 

/* --- About Story List --- */
.about-story-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 700px;
  text-align: center;
}
.about-story-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px #ef662220;
  margin-bottom: 1rem;
  padding: 0.9rem 1.2rem;
  color: var(--gray);
  font-size: 1.08rem;
  font-weight: 500;
  transition: box-shadow 0.2s;
}
.about-story-list li i {
  color: var(--main-color);
  font-size: 1.2rem;
  min-width: 1.5em;
}
.about-story-list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 900px) {
  .about-story-list li {
    font-size: 1rem;
    padding: 0.7rem 0.7rem;
  }
} 

/* --- Services Hero Section --- */
.services-hero.redesigned-hero {
  background: linear-gradient(120deg, #fff 60%, #fff7f3 100%);
  padding: 2.5rem 0 1.5rem 0;
  text-align: center;
}
.services-hero .hero-icon-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}
.services-hero .hero-icon {
  background: #fff7f3;
  color: var(--main-color);
  border-radius: 50%;
  font-size: 2.5rem;
  padding: 1rem 1.2rem;
  box-shadow: 0 2px 12px #ef662220;
  margin-bottom: 0.5rem;
}
.services-hero h1 {
  color: var(--main-color);
  font-size: 2.1rem;
  font-weight: 900;
  margin-bottom: 0.5rem;
}
.services-hero .hero-lead {
  color: var(--gray);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

/* --- Services Features Bar --- */
.services-features-bar {
  background: var(--main-color);
  padding: 1.2rem 0 1.2rem 0;
  margin-bottom: 0.5rem;
  border-radius: 0 0 24px 24px;
}
.features-flex {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.feature-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 8px #ef662220;
  padding: 0.7rem 1.3rem;
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, color 0.2s;
}
.feature-item i {
  font-size: 1.2rem;
  color: var(--main-color);
  transition: color 0.2s;
}
.services-features-bar .feature-item {
  background: #fff;
  color: var(--main-color);
}
.services-features-bar .feature-item:hover {
  background: #ff8844;
  color: #fff;
}
.services-features-bar .feature-item:hover i {
  color: #fff;
}

/* --- Services Cards Section --- */
.services-cards-section {
  background: #fff;
  padding: 2rem 0 2rem 0;
}
.services-cards-flex {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}
.service-card {
  background: #fff7f3;
  border-radius: 18px;
  box-shadow: 0 2px 12px #ef662220;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 220px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  transition: box-shadow 0.2s;
}
.service-card:hover {
  box-shadow: 0 4px 20px #ef662240;
}
.service-card .icon-exchange {
  background: #fff;
  color: var(--main-color);
  border-radius: 50%;
  font-size: 2rem;
  padding: 0.7rem 1rem;
  margin-bottom: 0.3rem;
  box-shadow: 0 2px 8px #ef662220;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-card i {
  background: #fff;
  color: var(--main-color);
  border-radius: 50%;
  font-size: 2rem;
  padding: 0.7rem 1rem;
  margin-bottom: 0.3rem;
  box-shadow: 0 2px 8px #ef662220;
}
.service-card h3 {
  color: var(--main-color);
  font-size: 1.2rem;
  font-weight: 900;
  margin: 0.2rem 0 0.3rem 0;
}
.service-card p {
  color: var(--gray);
  font-size: 1.05rem;
  margin: 0;
}

@media (max-width: 900px) {
  .services-cards-flex, .features-flex {
    flex-direction: column;
    gap: 1.2rem;
    align-items: center;
  }
  .service-card {
    min-width: 180px;
    max-width: 100%;
  }
} 

.footer-link {
  color: #fff;
  font-weight: 700;
  text-decoration: underline dotted;
  transition: color 0.2s;
  word-break: break-all;
}
.footer-link:hover {
  color: #fff;
  text-decoration: underline solid;
} 