/* ============================================================
   DEVPRO — SERVICES PAGE
   ============================================================ */
.dp-services-section .dp-section-cta {
  text-align: center;
  margin-top: 3rem;
}

/* Service row layout (Services page) */
.dp-service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
}
.dp-service-row-reverse { direction: rtl; }
.dp-service-row-reverse > * { direction: ltr; }

.dp-service-row-content {}
.dp-service-row-num {
  font-family: var(--dp-font-mono);
  font-size: 0.6rem; letter-spacing: 0.2em;
  color: var(--dp-muted); margin-bottom: 1rem;
}
.dp-service-row-icon { margin-bottom: 1.2rem; }
.dp-service-row-title {
  font-family: var(--dp-font-head);
  font-size: 1.5rem; font-weight: 700;
  margin-bottom: 0.8rem; line-height: 1.2;
}
.dp-service-row-title a { color: var(--dp-text); }
.dp-service-row-title a:hover { color: var(--dp-cyan); }
.dp-service-row-desc { color: var(--dp-muted); line-height: 1.75; margin-bottom: 1.5rem; }
.dp-service-row-btn  { margin-top: 0.5rem; }

.dp-service-row-visual {}
.dp-service-img { border-radius: var(--dp-radius); border: 1px solid var(--dp-border); }
.dp-service-placeholder {
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius);
  background: var(--dp-surface);
  height: 260px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem;
  transition: all 0.4s;
}
.dp-service-placeholder:hover {
  border-color: rgba(0,200,240,0.3);
  box-shadow: 0 0 40px rgba(0,200,240,0.1);
}

@media (max-width: 768px) {
  .dp-service-row { grid-template-columns: 1fr; gap: 2rem; direction: ltr; }
}

/* ============================================================
   TECH MARQUEE
   ============================================================ */
.dp-tech-section { overflow: hidden; }
.dp-section-head-center { text-align: center; }
.dp-section-head-center .dp-tag { justify-content: center; }

.dp-marquee-outer {
  margin-top: 2.5rem;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.dp-marquee-track {
  display: flex; gap: 0.9rem;
  animation: dpMarquee 22s linear infinite;
  width: max-content;
  margin-bottom: 0.9rem;
}
.dp-marquee-track-2 { animation-direction: reverse; animation-duration: 28s; }
@keyframes dpMarquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

.dp-tech-pill {
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.75rem 1.3rem;
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: 8px;
  white-space: nowrap;
  font-family: var(--dp-font-mono);
  font-size: 0.78rem;
  color: var(--dp-muted);
  transition: all 0.3s;
  cursor: default;
}
.dp-tech-pill:hover { border-color: rgba(0,200,240,0.3); color: var(--dp-cyan); background: var(--dp-surface2); }
.dp-tech-dot        { width: 6px; height: 6px; border-radius: 50%; background: var(--dp-cyan); flex-shrink: 0; }
.dp-tech-dot.dp-td-purple { background: var(--dp-purple); }
.dp-tech-dot.dp-td-red    { background: var(--dp-red); }
.dp-tech-dot.dp-td-gold   { background: var(--dp-gold); }

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.dp-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0;
  position: relative;
}
.dp-process-grid::before {
  content: '';
  position: absolute; top: 40px; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--dp-border), var(--dp-cyan), var(--dp-border), transparent);
  pointer-events: none;
}
.dp-process-step { padding: 1.5rem 1rem; text-align: center; }
.dp-step-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid var(--dp-border);
  background: var(--dp-surface);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem;
  position: relative; z-index: 1;
  transition: all 0.4s;
}
.dp-process-step:hover .dp-step-circle {
  border-color: var(--dp-cyan);
  box-shadow: 0 0 28px rgba(0,200,240,0.3);
}
.dp-step-num {
  font-family: var(--dp-font-head);
  font-size: 1.1rem; font-weight: 700;
  color: var(--dp-cyan);
}
.dp-step-name {
  font-family: var(--dp-font-head);
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.05em; margin-bottom: 0.4rem;
}
.dp-step-desc { font-size: 0.78rem; color: var(--dp-muted); line-height: 1.6; }

@media (max-width: 768px) {
  .dp-process-grid { grid-template-columns: repeat(2, 1fr); }
  .dp-process-grid::before { display: none; }
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.dp-industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 0.9rem;
  margin-top: 2rem;
}
.dp-industry-item {
  padding: 1.2rem 1rem;
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius);
  display: flex; flex-direction: column; align-items: center;
  gap: 0.5rem;
  transition: all 0.3s;
  cursor: default;
}
.dp-industry-item:hover {
  border-color: rgba(0,200,240,0.35);
  background: var(--dp-surface2);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,200,240,0.1);
}
.dp-industry-emoji { font-size: 1.6rem; }
.dp-industry-label {
  font-family: var(--dp-font-mono);
  font-size: 0.72rem; letter-spacing: 0.04em;
  color: var(--dp-muted); text-align: center;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.dp-cta-section { text-align: center; position: relative; overflow: hidden; }
.dp-cta-section::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,200,240,0.05) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}
.dp-cta-inner { position: relative; z-index: 1; }
.dp-cta-title { font-size: clamp(2rem, 4.5vw, 3.2rem); text-align: center; max-width: 700px; margin: 0 auto 1rem; }
.dp-cta-sub   { text-align: center; margin: 0 auto 2.5rem; }
.dp-cta-btns  { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.dp-about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start;
}
.dp-about-text { color: var(--dp-muted); line-height: 1.8; margin-bottom: 1.2rem; }
.dp-about-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.dp-about-card {
  padding: 1.8rem;
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-left: 3px solid var(--dp-cyan);
  border-radius: var(--dp-radius);
}
.dp-about-card-title {
  font-family: var(--dp-font-head);
  font-size: 0.85rem; font-weight: 600;
  color: var(--dp-cyan); margin-bottom: 0.6rem; letter-spacing: 0.05em;
}
.dp-about-card p { color: var(--dp-muted); font-size: 0.88rem; line-height: 1.7; }
.dp-why-section { background: var(--dp-bg2); }

@media (max-width: 768px) {
  .dp-about-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.dp-contact-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: start;
}

/* Form */
.dp-contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.dp-form-row     { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.dp-form-group   { display: flex; flex-direction: column; gap: 0.4rem; }
.dp-form-label {
  font-family: var(--dp-font-mono);
  font-size: 0.68rem; letter-spacing: 0.12em;
  color: var(--dp-muted); text-transform: uppercase;
}
.dp-form-input,
.dp-form-textarea,
.dp-form-select {
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  color: var(--dp-text);
  padding: 0.82rem 1rem;
  font-family: var(--dp-font-body);
  font-size: 0.9rem;
  border-radius: 7px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  width: 100%;
  -webkit-appearance: none; appearance: none;
}
.dp-form-input::placeholder,
.dp-form-textarea::placeholder { color: var(--dp-muted); }
.dp-form-input:focus,
.dp-form-textarea:focus,
.dp-form-select:focus {
  border-color: rgba(0,200,240,0.45);
  box-shadow: 0 0 0 3px rgba(0,200,240,0.08);
}
.dp-form-textarea { resize: vertical; min-height: 130px; }
.dp-form-submit {
  width: 100%; padding: 1rem;
  font-size: 0.8rem; font-weight: 700;
  margin-top: 0.4rem;
  cursor: pointer;
}
.dp-form-message {
  padding: 0.8rem 1rem;
  border-radius: 7px;
  font-family: var(--dp-font-mono);
  font-size: 0.78rem;
  display: none;
}
.dp-form-message.dp-success { background: rgba(40,200,64,0.1); border: 1px solid rgba(40,200,64,0.25); color: #28c840; display: block; }
.dp-form-message.dp-error   { background: rgba(255,58,94,0.1);  border: 1px solid rgba(255,58,94,0.25);  color: var(--dp-red); display: block; }

/* Info cards */
.dp-contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.dp-info-card {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1.3rem;
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius);
  transition: border-color 0.3s;
}
.dp-info-card:hover { border-color: rgba(0,200,240,0.25); }
.dp-info-icon  { font-size: 1.3rem; flex-shrink: 0; margin-top: 0.1rem; }
.dp-info-title { font-family: var(--dp-font-head); font-size: 0.75rem; color: var(--dp-cyan); margin-bottom: 0.35rem; letter-spacing: 0.04em; }
.dp-info-text  { font-size: 0.85rem; color: var(--dp-muted); line-height: 1.6; }
.dp-info-link  { font-size: 0.85rem; color: var(--dp-muted); transition: color 0.3s; }
.dp-info-link:hover { color: var(--dp-cyan); }

@media (max-width: 768px) {
  .dp-contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .dp-form-row     { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.dp-footer { background: var(--dp-bg); border-top: 1px solid var(--dp-border); }

.dp-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}
.dp-footer-logo { margin-bottom: 1rem; }
.dp-footer-desc { font-size: 0.84rem; color: var(--dp-muted); line-height: 1.75; margin-bottom: 1.5rem; }

.dp-footer-socials { display: flex; gap: 0.6rem; }
.dp-social-link {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: 7px;
  color: var(--dp-muted);
  transition: all 0.3s;
}
.dp-social-link svg { width: 15px; height: 15px; }
.dp-social-link:hover { border-color: var(--dp-cyan); color: var(--dp-cyan); background: rgba(0,200,240,0.08); }

.dp-footer-col-title {
  font-family: var(--dp-font-head);
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--dp-text); margin-bottom: 1.3rem;
}
.dp-footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.dp-footer-links a {
  font-family: var(--dp-font-mono);
  font-size: 0.76rem; color: var(--dp-muted);
  transition: color 0.3s;
}
.dp-footer-links a:hover { color: var(--dp-cyan); }

.dp-footer-contact-list { display: flex; flex-direction: column; gap: 0.8rem; }
.dp-footer-contact-list li { display: flex; align-items: flex-start; gap: 0.6rem; }
.dp-fci { flex-shrink: 0; font-size: 0.9rem; margin-top: 0.1rem; }
.dp-footer-contact-list span,
.dp-footer-contact-list a {
  font-size: 0.82rem; color: var(--dp-muted); line-height: 1.5;
}
.dp-footer-contact-list a:hover { color: var(--dp-cyan); }

.dp-footer-bottom {
  border-top: 1px solid var(--dp-border);
  padding: 1.5rem 0;
}
.dp-footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.dp-footer-copy,
.dp-footer-tagline {
  font-family: var(--dp-font-mono);
  font-size: 0.68rem; color: var(--dp-muted);
}
.dp-footer-tagline { font-style: italic; }

@media (max-width: 900px) {
  .dp-footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .dp-footer-top { grid-template-columns: 1fr; }
  .dp-footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ============================================================
   BLOG
   ============================================================ */
.dp-blog-layout {
  display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start;
}
.dp-blog-card {
  background: var(--dp-surface);
  border: 1px solid var(--dp-border);
  border-radius: var(--dp-radius);
  overflow: hidden;
  margin-bottom: 2rem;
  transition: border-color 0.3s;
}
.dp-blog-card:hover { border-color: rgba(0,200,240,0.25); }
.dp-blog-thumb { display: block; overflow: hidden; aspect-ratio: 16/8; }
.dp-blog-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.dp-blog-thumb:hover .dp-blog-img { transform: scale(1.04); }
.dp-blog-body { padding: 1.8rem; }
.dp-blog-meta { display: flex; gap: 0.8rem; align-items: center; margin-bottom: 0.8rem; font-family: var(--dp-font-mono); font-size: 0.68rem; color: var(--dp-muted); }
.dp-blog-date { margin-left: auto; }
.dp-blog-title { font-family: var(--dp-font-head); font-size: 1.1rem; font-weight: 600; margin-bottom: 0.8rem; line-height: 1.3; }
.dp-blog-title a { color: var(--dp-text); }
.dp-blog-title a:hover { color: var(--dp-cyan); }
.dp-blog-excerpt { color: var(--dp-muted); font-size: 0.88rem; line-height: 1.7; margin-bottom: 1.2rem; }
.dp-blog-more { font-size: 0.72rem; padding: 0.55rem 1.2rem; }

/* Sidebar */
.dp-blog-sidebar {}
.dp-widget { background: var(--dp-surface); border: 1px solid var(--dp-border); border-radius: var(--dp-radius); padding: 1.5rem; margin-bottom: 1.5rem; }
.dp-widget-title { font-family: var(--dp-font-head); font-size: 0.8rem; letter-spacing: 0.08em; color: var(--dp-cyan); margin-bottom: 1rem; text-transform: uppercase; }

/* Single post */
.dp-single-layout { display: grid; grid-template-columns: 1fr 300px; gap: 3rem; align-items: start; }
.dp-single-thumb { margin-bottom: 2rem; }
.dp-single-img { border-radius: var(--dp-radius); border: 1px solid var(--dp-border); width: 100%; }
.dp-entry-content { color: var(--dp-muted); line-height: 1.85; font-size: 0.98rem; }
.dp-entry-content h2,h3,h4 { font-family: var(--dp-font-head); color: var(--dp-text); margin: 2rem 0 0.8rem; }
.dp-entry-content p { margin-bottom: 1.2rem; }
.dp-entry-content a { color: var(--dp-cyan); }
.dp-post-nav { display: flex; justify-content: space-between; padding: 2rem 0; border-top: 1px solid var(--dp-border); margin-top: 2rem; }
.dp-post-nav a { font-family: var(--dp-font-mono); font-size: 0.78rem; color: var(--dp-muted); transition: color 0.3s; }
.dp-post-nav a:hover { color: var(--dp-cyan); }

/* Projects Grid */
.dp-projects-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }
.dp-project-card { background: var(--dp-surface); border: 1px solid var(--dp-border); border-radius: var(--dp-radius); overflow: hidden; transition: all 0.35s; }
.dp-project-card:hover { border-color: rgba(0,200,240,0.3); transform: translateY(-5px); box-shadow: 0 12px 36px rgba(0,0,0,0.4); }
.dp-project-thumb { display: block; position: relative; aspect-ratio: 16/9; background: var(--dp-surface2); overflow: hidden; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.dp-project-img  { width: 100%; height: 100%; object-fit: cover; }
.dp-project-overlay { position: absolute; inset: 0; background: rgba(0,200,240,0.15); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; backdrop-filter: blur(4px); }
.dp-project-thumb:hover .dp-project-overlay { opacity: 1; }
.dp-project-view { font-family: var(--dp-font-mono); font-size: 0.75rem; letter-spacing: 0.1em; color: #fff; background: rgba(0,0,0,0.5); padding: 0.5rem 1rem; border-radius: 4px; }
.dp-project-meta { padding: 1.3rem; }
.dp-project-cat  { font-family: var(--dp-font-mono); font-size: 0.65rem; color: var(--dp-cyan); letter-spacing: 0.1em; text-transform: uppercase; }
.dp-project-title { font-family: var(--dp-font-head); font-size: 0.95rem; font-weight: 600; margin: 0.4rem 0 0.6rem; }
.dp-project-title a { color: var(--dp-text); }
.dp-project-title a:hover { color: var(--dp-cyan); }
.dp-project-desc { font-size: 0.82rem; color: var(--dp-muted); line-height: 1.65; }

/* Pagination */
.dp-pagination { text-align: center; margin-top: 2rem; }
.dp-pagination .nav-links { display: flex; justify-content: center; gap: 0.5rem; flex-wrap: wrap; }
.dp-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  background: var(--dp-surface); border: 1px solid var(--dp-border);
  border-radius: 6px; font-family: var(--dp-font-mono); font-size: 0.78rem; color: var(--dp-muted);
  transition: all 0.3s;
}
.dp-pagination .page-numbers.current,
.dp-pagination .page-numbers:hover { background: rgba(0,200,240,0.1); border-color: var(--dp-cyan); color: var(--dp-cyan); }

/* Empty state */
.dp-empty-state { text-align: center; color: var(--dp-muted); padding: 4rem 2rem; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }

/* 404 */
.dp-404-inner { text-align: center; }
.dp-404-num { font-family: var(--dp-font-head); font-size: clamp(5rem, 15vw, 10rem); font-weight: 900; color: transparent; -webkit-text-stroke: 1px rgba(0,200,240,0.3); line-height: 1; margin-bottom: 0; }

/* Page content */
.dp-page-content { max-width: 780px; }

@media (max-width: 900px) {
  .dp-blog-layout   { grid-template-columns: 1fr; }
  .dp-single-layout { grid-template-columns: 1fr; }
  .dp-blog-sidebar  { display: none; }
}
