/* =========================
   SERVICES PAGE CSS
   ========================= */

/* CSS Variables */
:root {
  --brand: #f7931e;
  --dark: #071c34;
  --light: #f9fafb;
  --muted: #6b7280;
  --border: #e5e7eb;
}

/* =========================
   PAGE BANNER
   ========================= */
.page-banner {
  height: 260px;
  background: url("/assets/images/banner.com_technical-support_") center/cover no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.banner-content {
  color: #fff;
  position: relative;
  text-align: center;
  z-index: 2;
}

.banner-content h1 {
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 800;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content p {
  font-size: 16px;
  color: #fff;
}

.banner-content p a {
  color: #fff;
  opacity: 1;
  text-decoration: none;
  transition: opacity 0.3s ease;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.banner-content p a:hover {
  opacity: 1;
}

.banner-content p span {
  color: var(--brand);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  font-weight: 700;
}

/* =========================
   WRAPPER & SIDE MENU
   ========================= */
.wrapper {
  display: flex;
  max-width: 1300px;
  margin: 60px auto;
  gap: 40px;
  padding: 0 20px;
}

.side-menu {
  min-width: 280px;
  flex-shrink: 0;
}

.side-menu ul {
  list-style: none;
  background: var(--dark);
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.side-menu li {
  margin-bottom: 8px;
}

.side-menu a {
  display: block;
  padding: 12px 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 15px;
}

.side-menu a:hover,
.side-menu a.active {
  background: var(--brand);
  color: #fff;
  padding-left: 24px;
}

/* =========================
   CONTENT AREA
   ========================= */
.content {
  flex: 1;
}

.main-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* Content headings */
.content h1 {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin: 30px 0 15px 0;
}

.content h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand);
  margin: 25px 0 12px 0;
}

.content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin: 20px 0 10px 0;
}

.content p,
.desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin: 12px 0;
}

/* =========================
   FEATURES BLOCKS
   ========================= */
.features-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 35px 0;
}

.icon-block {
  background: #fff;
  border: 1px solid var(--border);
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.icon-block:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

.icon-block i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(247, 147, 30, 0.1);
  color: var(--brand);
  border-radius: 8px;
  font-size: 24px;
  margin-bottom: 15px;
}

.icon-block h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.icon-block p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================
   BENEFITS LIST
   ========================= */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.benefits-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

.benefits-list li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
  font-size: 18px;
}

/* =========================
   ARROW NAVIGATION
   ========================= */
.arrow-navigation {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 50px auto;
  padding: 0 20px;
  gap: 20px;
}

.arrow-navigation a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--dark);
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.arrow-navigation a:hover {
  background: var(--brand);
  transform: scale(1.1);
}

/* =========================
   RESPONSIVE DESIGN
   ========================= */
@media (max-width: 1200px) {
  .page-banner {
    height: 240px;
  }

  .banner-content h1 {
    font-size: 28px;
  }

  .wrapper {
    gap: 30px;
    margin: 50px auto;
  }

  .side-menu {
    min-width: 240px;
  }

  .main-img {
    height: 350px;
  }

  .content h1 {
    font-size: 28px;
  }

  .content h2 {
    font-size: 22px;
  }

  .features-row {
    gap: 20px;
  }
}

@media (max-width: 992px) {
  .page-banner {
    height: 220px;
  }

  .banner-content h1 {
    font-size: 24px;
  }

  .banner-content p {
    font-size: 14px;
  }

  .wrapper {
    flex-direction: column;
    gap: 20px;
    margin: 40px auto;
  }

  .side-menu {
    min-width: 100%;
  }

  .side-menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .side-menu li {
    margin-bottom: 0;
  }

  .side-menu a {
    padding: 10px 12px;
    font-size: 14px;
  }

  .features-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .arrow-navigation {
    margin: 40px auto;
  }
}

@media (max-width: 768px) {
  .page-banner {
    height: 200px;
  }

  .banner-content h1 {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .banner-content p {
    font-size: 13px;
  }

  .wrapper {
    gap: 15px;
    margin: 30px auto;
    padding: 0 16px;
  }

  .side-menu ul {
    padding: 12px;
    flex-direction: column;
  }

  .side-menu a {
    padding: 12px 8px;
    font-size: 14px;
    font-weight: 600;
  }

  .main-img {
    height: 280px;
    margin-bottom: 20px;
  }

  .content h1 {
    font-size: 24px;
    margin: 20px 0 12px 0;
  }

  .content h2 {
    font-size: 20px;
    margin: 18px 0 10px 0;
  }

  .content h3 {
    font-size: 16px;
    margin: 15px 0 8px 0;
  }

  .content p,
  .desc {
    font-size: 15px;
    line-height: 1.6;
  }

  .features-row {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 25px 0;
  }

  .icon-block {
    padding: 20px;
  }

  .icon-block i {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .icon-block h4 {
    font-size: 16px;
  }

  .icon-block p {
    font-size: 13px;
  }

  .benefits-list li {
    padding: 8px 0 8px 24px;
    font-size: 14px;
  }

  .arrow-navigation {
    margin: 30px auto;
    padding: 0 16px;
  }

  .arrow-navigation a {
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .page-banner {
    height: 160px;
  }

  .banner-content h1 {
    font-size: 18px;
    margin-bottom: 6px;
  }

  .banner-content p {
    font-size: 12px;
  }

  .wrapper {
    gap: 12px;
    margin: 20px auto;
    padding: 0 12px;
  }

  .side-menu ul {
    padding: 10px;
  }

  .side-menu a {
    padding: 10px 6px;
    font-size: 13px;
  }

  .main-img {
    height: 220px;
    margin-bottom: 15px;
    border-radius: 6px;
  }

  .content h1 {
    font-size: 20px;
    margin: 15px 0 10px 0;
  }

  .content h2 {
    font-size: 18px;
    margin: 12px 0 8px 0;
  }

  .content h3 {
    font-size: 15px;
  }

  .content p,
  .desc {
    font-size: 14px;
    line-height: 1.5;
  }

  .features-row {
    margin: 20px 0;
    gap: 12px;
  }

  .icon-block {
    padding: 16px;
  }

  .icon-block i {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 12px;
  }

  .icon-block h4 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .icon-block p {
    font-size: 12px;
  }

  .benefits-list li {
    padding: 6px 0 6px 22px;
    font-size: 13px;
    margin-bottom: 4px;
  }

  .benefits-list li:before {
    font-size: 16px;
  }

  .arrow-navigation {
    flex-direction: column;
    margin: 20px auto;
    padding: 0 12px;
    gap: 15px;
  }

  .arrow-navigation a {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* =========================
   SERVICES CHECKLIST
   ========================= */
.services-checklist {
  padding-left: 0;
  line-height: 1.8;
  margin-top: 10px;
  list-style: none;
}

.services-checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 16px;
  color: #444;
  line-height: 1.7;
}

.services-checklist li i {
  position: absolute;
  left: 0;
  color: #f7931e;
  font-weight: 800;
  font-size: 18px;
}

.services-checklist strong {
  color: #071c34;
  font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services-checklist li {
    padding-left: 28px;
    margin-bottom: 14px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .services-checklist li {
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 14px;
  }
}
