/* ==================================================
   VARIABLES
================================================== */
:root {
  --main-color: #0d3163;
  --secondary-color: #1f4fa3;
  --light-bg: #f5f7fa;
  --white: #ffffff;
  --shadow: 0 5px 15px rgba(0,0,0,0.08);
  --radius: 12px;
  --transition: 0.3s ease;
}

/* ==================================================
   RESET & BASE
================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Cairo', sans-serif;
  background: var(--light-bg);
  color: #333;
  line-height: 1.9;
  direction: rtl;
}

/* ==================================================
   CONTAINER
================================================== */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 15px;
}

/* ==================================================
   PAGE HEADER (COMMON)
================================================== */
.page-header,
.about-header {
  background: linear-gradient(135deg, var(--main-color), var(--secondary-color));
  color: #fff;
  text-align: center;
  padding: 50px 15px;
}

.page-header h1,
.about-header h1 {
  font-size: 32px;
  margin-bottom: 10px;
}

.page-header p,
.about-header p {
  font-size: 18px;
  opacity: 0.95;
}

/* ==================================================
   SECTIONS (COMMON)
================================================== */
.page-content,
.about-section,
.services-section {
  padding: 50px 0;
}

.page-content h2,
.about-section h2 {
  font-size: 26px;
  color: var(--main-color);
  margin: 30px 0 15px;
}

.page-content p,
.about-section p {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius);
  margin-bottom: 25px;
  box-shadow: var(--shadow);
  font-size: 16.5px;
  text-align: justify;
}

/* ==================================================
   ABOUT PAGE
================================================== */
.about-section h3 {
  font-size: 22px;
  color: var(--main-color);
  margin-bottom: 25px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-box {
  background: var(--white);
  padding: 25px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box h4 {
  color: var(--secondary-color);
  margin-bottom: 10px;
  font-size: 18px;
}

/* ==================================================
   INFO / ALERT BOXES
================================================== */
.info-box,
.alert-box,
.notice-box,
.intro-box {
  padding: 18px;
  border-radius: 10px;
  margin-bottom: 30px;
  font-size: 16px;
}

.info-box,
.intro-box {
  background: #e8f1ff;
  color: var(--main-color);
  border-right: 5px solid var(--secondary-color);
}

.alert-box {
  background: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}

.notice-box {
  background: #e9f7ef;
  color: #155724;
  border-right: 5px solid #28a745;
}

/* ==================================================
   SERVICES PAGE
================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.service-card {
  background: var(--white);
  padding: 25px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card h3 {
  color: var(--secondary-color);
  margin-bottom: 12px;
  font-size: 19px;
}

.guarantee-box {
  background: var(--white);
  margin-top: 40px;
  padding: 25px;
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.guarantee-box ul {
  margin-top: 12px;
  padding-right: 18px;
}

.guarantee-box li {
  margin-bottom: 8px;
}

/* ==================================================
   FOOTER
================================================== */
.site-footer {
  background: var(--main-color);
  color: #fff;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 15px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #ffd966;
}

.footer-col p,
.footer-col li {
  font-size: 14px;
  line-height: 1.9;
}

.footer-col ul {
  list-style: none;
}

.footer-col a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.footer-col a:hover {
  opacity: 0.8;
}

.footer-bottom {
  background: #08264d;
  text-align: center;
  padding: 15px;
  font-size: 13px;
  opacity: 0.9;
}

/* ==================================================
   RESPONSIVE
================================================== */
@media (max-width: 600px) {
  .page-header h1,
  .about-header h1 {
    font-size: 26px;
  }

  .page-content h2,
  .about-section h2 {
    font-size: 22px;
  }

  .feature-box,
  .service-card,
  .guarantee-box {
    padding: 20px;
  }

  .footer-container {
    text-align: center;
  }
}

.mobile-call-btn {
  display: none;
}

@media (max-width: 768px) {
  .mobile-call-btn {
    display: block;
    position: fixed;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: #025d8f; /* أخضر */
    color: #fefefe;      /* أبيض */
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  }
}
  .call-icon {
    color: rgb(254, 54, 54);            /* الأيقونة حمرا */
    font-size: 20px;
  }