/* ============================================================
   ODASS SOFTWARE — SERVICE PAGES CSS
   assets/css/service.css  (Link in all 5 service pages)
   ============================================================ */

/* ─── PAGE BANNER (Service Hero) ─── */
.srv-banner {
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.srv-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255,122,0,0.10);
  pointer-events: none;
}
.srv-banner::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(31,168,79,0.08);
  pointer-events: none;
}
.srv-banner-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.srv-banner-icon {
  width: 110px; height: 110px;
  border-radius: 28px;
  background: rgba(255,255,255,0.12);
  border: 2px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 58px;
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.srv-banner h1 { color: #fff; margin-bottom: 14px; }
.srv-banner p  { color: rgba(255,255,255,0.78); font-size: 17px; margin-bottom: 28px; max-width: 620px; line-height: 1.75; }
.srv-banner-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.srv-banner-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.srv-tag {
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.80);
  font-size: 12px;
  font-family: var(--font-head);
  font-weight: 500;
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.08);
  padding: 7px 20px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 26px;
}
.breadcrumb a     { color: rgba(255,255,255,0.70); transition: color .2s; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep  { color: rgba(255,255,255,0.30); }
.breadcrumb .cur  { color: var(--orange); font-weight: 600; }

/* ─── SECTION HEADING ─── */
.sh { text-align: center; margin-bottom: 50px; }
.sh .tag {
  display: inline-block;
  background: rgba(255,122,0,0.10); color: var(--orange);
  font-size: 12px; font-weight: 700; font-family: var(--font-head);
  letter-spacing: 1.8px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px; margin-bottom: 14px;
}
.sh h2 { margin-bottom: 12px; }
.sh p  { max-width: 580px; margin: 0 auto; font-size: 16px; }
.sh .ul {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  border-radius: 4px; margin: 14px auto 0;
}

/* ─── FEATURE CARDS ─── */
.feat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  transform: scaleX(0);
  transition: transform 0.3s;
  transform-origin: left;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.feat-card:hover::before { transform: scaleX(1); }
.feat-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.feat-card h4 { font-size: 16px; margin-bottom: 8px; color: var(--blue); }
.feat-card p  { font-size: 14px; line-height: 1.7; }

/* ─── DETAIL SECTION (2-column) ─── */
.srv-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.srv-visual {
  border-radius: var(--radius-xl);
  padding: 50px 40px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  min-height: 380px;
  position: relative;
  overflow: hidden;
}
.srv-visual::after {
  content: '';
  position: absolute;
  bottom: -60px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.srv-visual .big-icon { font-size: 90px; margin-bottom: 20px; display: block; }
.srv-visual h3  { color: #fff; font-size: 1.4rem; margin-bottom: 12px; }
.srv-visual p   { color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.7; }
.srv-detail-content .tag-inline {
  display: inline-block;
  background: rgba(255,122,0,0.10); color: var(--orange);
  font-size: 12px; font-weight: 700; font-family: var(--font-head);
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 16px; border-radius: 50px; margin-bottom: 16px;
}
.srv-detail-content h3 { margin-bottom: 14px; }
.srv-detail-content p  { margin-bottom: 16px; font-size: 15px; }
.detail-points { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.dp-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  background: var(--light-bg);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--orange);
  transition: all 0.25s;
}
.dp-item:hover { background: #fff; box-shadow: var(--shadow-sm); }
.dp-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.dp-item h5 {
  font-size: 14px; font-weight: 600; color: var(--blue);
  margin-bottom: 3px; font-family: var(--font-head);
}
.dp-item p  { font-size: 13px; margin: 0; }

/* ─── PROCESS STEPS ─── */
.proc-wrap { position: relative; }
.proc-line {
  position: absolute;
  top: 36px; left: calc(10% + 0px); right: calc(10% + 0px);
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--green));
  z-index: 0;
}
.proc-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 0; }
.proc-step { text-align: center; padding: 0 10px; position: relative; z-index: 1; }
.proc-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: #fff; border: 3px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--orange);
  margin: 0 auto 16px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s;
}
.proc-step:hover .proc-num {
  background: var(--orange); color: #fff;
  transform: scale(1.08);
}
.proc-title { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 7px; }
.proc-desc  { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

/* ─── TECH STACK ─── */
.tech-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.tech-pill {
  padding: 10px 20px; border-radius: 50px;
  background: #fff; border: 2px solid var(--border);
  font-size: 13px; font-weight: 600; font-family: var(--font-head); color: var(--blue);
  transition: all 0.25s; cursor: default;
}
.tech-pill:hover {
  border-color: var(--orange); color: var(--orange);
  transform: translateY(-3px); box-shadow: var(--shadow-sm);
}

/* ─── INCLUDED LIST ─── */
.included-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.inc-item {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); font-size: 14px; font-weight: 500;
  color: var(--text-dark); transition: all 0.25s;
}
.inc-item:hover { border-color: var(--green); color: var(--blue); box-shadow: var(--shadow-sm); }
.inc-item::before {
  content: '✓';
  width: 22px; height: 22px;
  background: rgba(31,168,79,0.12);
  color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
  flex-shrink: 0;
}

/* ─── TESTIMONIAL ─── */
.testi-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.t-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  transition: all 0.3s;
}
.t-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.t-stars { color: var(--orange); font-size: 18px; margin-bottom: 14px; }
.t-text  { font-size: 14px; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 15px;
}
.t-name { font-family: var(--font-head); font-size: 14px; font-weight: 600; color: var(--blue); }
.t-role { font-size: 12px; color: var(--text-light); margin-top: 2px; }

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item.open { box-shadow: var(--shadow-md); border-color: rgba(255,122,0,0.30); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; cursor: pointer;
  font-family: var(--font-head); font-size: 15px; font-weight: 600; color: var(--blue);
  gap: 14px; user-select: none;
}
.faq-q .arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--light-bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 14px;
  transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-q { color: var(--orange); }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); background: rgba(255,122,0,0.12); }
.faq-a { display: none; padding: 0 22px 20px; font-size: 14px; color: var(--text-muted); line-height: 1.75; }
.faq-item.open .faq-a { display: block; }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius-xl); padding: 60px 50px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,122,0,0.12);
}
.cta-banner h2 { color: #fff; margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,0.72); font-size: 17px; margin-bottom: 28px; }

/* ─── WHY CHOOSE ─── */
.why-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.wr-item {
  text-align: center; padding: 26px 16px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: all 0.3s;
}
.wr-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.wr-icon { width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; margin: 0 auto 12px; }
.wr-item h4 { font-size: 15px; margin-bottom: 6px; }
.wr-item p  { font-size: 13px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .feat-grid  { grid-template-columns: repeat(2,1fr); }
  .why-row    { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 992px) {
  .srv-banner-inner { grid-template-columns: 1fr; }
  .srv-banner-icon  { display: none; }
  .srv-detail       { grid-template-columns: 1fr; gap: 40px; }
  .proc-grid        { grid-template-columns: repeat(3,1fr); gap: 28px; }
  .proc-line        { display: none; }
  .testi-grid       { grid-template-columns: 1fr; }
  .included-grid    { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .feat-grid  { grid-template-columns: 1fr; }
  .proc-grid  { grid-template-columns: repeat(2,1fr); }
  .why-row    { grid-template-columns: 1fr 1fr; }
  .cta-banner { padding: 40px 24px; }
}
@media (max-width: 480px) {
  .proc-grid { grid-template-columns: 1fr; }
  .why-row   { grid-template-columns: 1fr; }
}
