/*
Theme Name: Devish Technologies
Theme URI: https://devishtechnologies.com
Author: Devish Technologies
Author URI: https://devishtechnologies.com
Description: Custom WordPress theme for Devish Technologies — a digital agency site with dynamic Blog, Case Studies, animated hero, dark UI, and Bootstrap 5 layout.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: devish-tech
Tags: dark, agency, blog, custom-background, full-width-template
*/
/* ════════════════════════════════════════════════
   DEVISH TECHNOLOGIES — MAIN STYLESHEET
   Brand Colors:
   Primary Orange : #FF6600
   Dark Grey      : #555555
   Dark BG        : #0D1117
   Card BG        : #161B22
   ════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --orange:       #FF6600;
  --orange-light: #FF8533;
  --orange-dark:  #CC5200;
  --grey:         #555555;
  --grey-light:   #888888;
  --grey-dark:    #333333;
  --bg:           #0D1117;
  --bg2:          #161B22;
  --bg3:          #1C2128;
  --border:       rgba(255,255,255,0.08);
  --border-o:     rgba(255,102,0,0.30);
  --text:         #E6EDF3;
  --text-muted:   #7D8590;
  --ff-h:         'Syne', sans-serif;
  --ff-b:         'DM Sans', sans-serif;
  --radius:       14px;
  --shadow-o:     0 0 40px rgba(255,102,0,0.12);
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-b);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg2); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }

/* ══════════════════════════
   TYPOGRAPHY
══════════════════════════ */
.eyebrow {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}
.sec-title {
  font-family: var(--ff-h);
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -1.2px;
  line-height: 1.15;
}
.sec-sub {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.8;
  max-width: 540px;
  margin: 14px auto 0;
}
h1, h2, h3, h4, h5, h6 { font-family: var(--ff-h); }

/* ══════════════════════════
   BUTTONS
══════════════════════════ */
.btn-primary-dt {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: 12px 28px;
  border-radius: 50px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s;
  cursor: pointer;
}
.btn-primary-dt:hover {
  background: var(--orange-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255,102,0,.4);
  color: #fff;
}
.btn-outline-dt {
  background: transparent;
  border: 1.5px solid rgba(255,102,0,.4);
  color: var(--orange);
  font-weight: 600;
  font-size: .9rem;
  padding: 11px 26px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .3s;
  cursor: pointer;
}
.btn-outline-dt:hover {
  background: rgba(255,102,0,.1);
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-3px);
}
.btn-sm-dt {
  font-size: .8rem;
  padding: 8px 18px;
}

/* ══════════════════════════
   NAVBAR
══════════════════════════ */
.dt-navbar {
  background: rgba(13,17,23,.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: all .3s;
}
.dt-navbar.scrolled {
  background: rgba(13,17,23,.99);
  box-shadow: 0 2px 30px rgba(0,0,0,.6);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 8px;
}
/* Brand Logo */
.brand-link { text-decoration: none; display: flex; align-items: center; gap: 10px; }
.brand-dt-mark {
  font-family: var(--ff-h);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}
.brand-dt-mark .d { color: var(--grey); }
.brand-dt-mark .t { color: var(--orange); }
.brand-text-wrap { display: flex; flex-direction: column; line-height: 1; }
.brand-devish {
  font-family: var(--ff-h);
  font-size: 1rem;
  font-weight: 800;
  color: var(--grey);
  letter-spacing: 3px;
  text-transform: uppercase;
}
.brand-tech {
  font-size: .62rem;
  font-weight: 500;
  color: var(--orange);
  letter-spacing: 1px;
  text-transform: lowercase;
}
/* Nav Links */
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-a {
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .86rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all .25s;
  white-space: nowrap;
}
.nav-a:hover, .nav-a.active {
  color: #fff;
  background: rgba(255,102,0,.1);
}
.nav-a.active { color: var(--orange); }
/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 8px;
  min-width: 230px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: all .25s;
  z-index: 200;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.dd-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: .84rem;
  transition: all .2s;
}
.dd-item:hover { background: rgba(255,102,0,.1); color: var(--orange); }
.dd-icon {
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(255,102,0,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  color: var(--orange);
  flex-shrink: 0;
}
/* Mobile hamburger */
.hamburger {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: #fff;
  padding: 7px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
}
.mobile-menu {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 16px;
  z-index: 999;
  display: none;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 20px 40px rgba(0,0,0,.5);
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-a {
  display: block;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: .92rem;
}

/* ══════════════════════════
   PAGE HERO
══════════════════════════ */
.page-hero {
  padding: 130px 0 56px;
  background: var(--bg2);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: '';
  position: absolute;
  left: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255,102,0,.07), transparent 70%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--ff-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-top: 8px;
}
.breadcrumb-x {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: .82rem;
  margin-top: 12px;
  flex-wrap: wrap;
}
.breadcrumb-x a { color: var(--text-muted); text-decoration: none; transition: color .25s; }
.breadcrumb-x a:hover { color: var(--orange); }
.breadcrumb-x span { color: var(--orange); }

/* ══════════════════════════
   CARDS
══════════════════════════ */
.card-dt {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .35s;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.card-dt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,102,0,.04), transparent);
  opacity: 0;
  transition: opacity .35s;
}
.card-dt:hover {
  border-color: var(--border-o);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), var(--shadow-o);
}
.card-dt:hover::before { opacity: 1; }

/* Svc Icon */
.svc-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.ic-o  { background: rgba(255,102,0,.1);  color: var(--orange); }
.ic-g  { background: rgba(85,85,85,.2);   color: #aaa; }
.ic-b  { background: rgba(59,130,246,.1); color: #60a5fa; }
.ic-gr { background: rgba(16,185,129,.1); color: #34d399; }
.ic-p  { background: rgba(168,85,247,.1); color: #c084fc; }

.card-dt h5 {
  font-family: var(--ff-h);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.card-dt p {
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.7;
  margin: 0;
  position: relative;
  z-index: 1;
}
.card-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  opacity: 0;
  transition: .3s;
  color: var(--orange);
  font-size: 1.1rem;
}
.card-dt:hover .card-arrow { opacity: 1; }

/* Tech tags */
.tech-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 14px; position: relative; z-index: 1; }
.tt {
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  color: rgba(255,255,255,.55);
  padding: 3px 9px;
  border-radius: 5px;
  font-size: .72rem;
}

/* ══════════════════════════
   HERO (INDEX)
══════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 15% 50%, rgba(255,102,0,.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 90% 20%, rgba(255,102,0,.04) 0%, transparent 60%),
    var(--bg);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at 20% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 20% 50%, black 20%, transparent 70%);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,102,0,.08);
  border: 1px solid rgba(255,102,0,.25);
  padding: 7px 16px;
  border-radius: 50px;
  font-size: .78rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 22px;
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 1.5s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.hero-title {
  font-family: var(--ff-h);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
}
.hero-title .orange { color: var(--orange); }
.hero-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 520px;
  margin: 20px 0 36px;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 50px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hstat .n {
  font-family: var(--ff-h);
  font-size: 1.9rem;
  font-weight: 800;
  color: #fff;
}
.hstat .n em { color: var(--orange); font-style: normal; }
.hstat .l { color: var(--text-muted); font-size: .78rem; margin-top: 2px; }

/* Hero Visual Card */
.hero-card-main {
  background: var(--bg2);
  border: 1px solid var(--border-o);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-o);
  position: relative;
}
.hc-top { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.hc-logo-box {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-h);
  font-weight: 900;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.hc-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), rgba(255,102,0,.1));
  border-radius: 2px;
  margin-bottom: 18px;
}
.svc-pills { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 14px; }
.spill {
  background: rgba(255,102,0,.07);
  border: 1px solid rgba(255,102,0,.2);
  color: rgba(255,255,255,.7);
  padding: 6px 13px;
  border-radius: 50px;
  font-size: .76rem;
  font-weight: 500;
  transition: all .3s;
  cursor: default;
}
.spill:hover {
  background: rgba(255,102,0,.15);
  color: #fff;
  border-color: var(--orange);
}
/* Floating badges */
.float-badge {
  position: absolute;
  background: var(--bg2);
  border: 1px solid var(--border-o);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .78rem;
  font-weight: 600;
  box-shadow: var(--shadow-o);
  animation: floaty 4s ease-in-out infinite;
  z-index: 2;
}
@keyframes floaty { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.fb-a { top: -18px; right: 20px; animation-delay: .4s; }
.fb-b { bottom: 8px; left: -20px; animation-delay: 1.2s; }
.fb-ico {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  background: rgba(255,102,0,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: .85rem;
}

/* ══════════════════════════
   COUNTER STRIP
══════════════════════════ */
.counter-strip {
  background: linear-gradient(135deg, var(--bg2), var(--bg3));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 50px 0;
}
.cs-num {
  font-family: var(--ff-h);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
}
.cs-label { color: var(--text-muted); font-size: .82rem; margin-top: 4px; }

/* ══════════════════════════
   PROCESS STEPS
══════════════════════════ */
.process-step {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: all .3s;
}
.process-step:hover { border-color: var(--border-o); }
.ps-num {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 10px;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-h);
  font-weight: 800;
  font-size: 1rem;
  color: #fff;
}
.ps-content h6 { font-family: var(--ff-h); font-weight: 700; font-size: .93rem; margin-bottom: 5px; }
.ps-content p { color: var(--text-muted); font-size: .84rem; line-height: 1.65; margin: 0; }

/* ══════════════════════════
   TESTIMONIALS
══════════════════════════ */
.testi-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all .3s;
  height: 100%;
}
.testi-card:hover { border-color: var(--border-o); }
.stars { color: var(--orange); font-size: .85rem; margin-bottom: 14px; letter-spacing: 2px; }
.testi-q {
  color: rgba(255,255,255,.8);
  font-size: .92rem;
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 18px;
}
.testi-author { display: flex; align-items: center; gap: 11px; }
.testi-av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .88rem;
  color: #fff;
  flex-shrink: 0;
}
.testi-nm { font-weight: 600; font-size: .88rem; }
.testi-rl { color: var(--text-muted); font-size: .78rem; }

/* ══════════════════════════
   BLOG CARDS
══════════════════════════ */
.blog-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: var(--border-o);
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.blog-img-area {
  height: 190px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  flex-shrink: 0;
}
.blog-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.blog-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.blog-meta { display: flex; gap: 12px; margin-bottom: 12px; flex-wrap: wrap; }
.blog-meta span {
  color: var(--text-muted);
  font-size: .78rem;
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-body h5 {
  font-family: var(--ff-h);
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}
.blog-body p { color: var(--text-muted); font-size: .85rem; line-height: 1.65; margin: 0; flex: 1; }
.read-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--orange);
  font-size: .83rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 14px;
  transition: gap .3s;
  align-self: flex-start;
}
.read-link:hover { gap: 10px; color: var(--orange-light); }

/* ══════════════════════════
   PORTFOLIO CARDS
══════════════════════════ */
.portfolio-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .35s;
  position: relative;
}
.portfolio-card:hover { border-color: var(--border-o); transform: translateY(-5px); }
.port-img {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}
.port-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,102,0,.85);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transition: opacity .3s;
}
.portfolio-card:hover .port-overlay { opacity: 1; }
.port-body { padding: 20px; }
.port-tag {
  background: rgba(255,102,0,.1);
  border: 1px solid var(--border-o);
  color: var(--orange);
  font-size: .72rem;
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
}

/* ══════════════════════════
   PRICING
══════════════════════════ */
.price-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .3s;
  position: relative;
}
.price-card.popular {
  border-color: var(--orange);
  box-shadow: var(--shadow-o);
}
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.price-card h4 { font-family: var(--ff-h); font-size: 1.2rem; font-weight: 700; }
.price-amt {
  font-family: var(--ff-h);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin: 16px 0;
}
.price-amt sup { font-size: 1.1rem; vertical-align: super; }
.price-amt sub { font-size: .9rem; color: var(--text-muted); font-weight: 400; }
.price-features { list-style: none; padding: 0; margin: 20px 0 24px; }
.price-features li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .87rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: rgba(255,255,255,.8);
}
.price-features li i { color: var(--orange); font-size: .85rem; flex-shrink: 0; }
.price-features li.no { color: var(--text-muted); text-decoration: line-through; }
.price-features li.no i { color: var(--text-muted); }

/* ══════════════════════════
   TEAM CARDS
══════════════════════════ */
.team-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all .3s;
}
.team-card:hover { border-color: var(--border-o); transform: translateY(-4px); }
.team-av {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-h);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.team-card .nm { font-family: var(--ff-h); font-weight: 700; font-size: .98rem; margin-bottom: 4px; }
.team-card .rl { color: var(--orange); font-size: .79rem; font-weight: 600; margin-bottom: 10px; }
.team-card .bio { color: var(--text-muted); font-size: .83rem; line-height: 1.6; margin-bottom: 16px; }
.team-socials { display: flex; justify-content: center; gap: 7px; }
.tsoc {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .82rem;
  transition: all .3s;
}
.tsoc:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

/* ══════════════════════════
   FAQ
══════════════════════════ */
.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color .3s;
}
.faq-item.open { border-color: var(--border-o); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: .92rem;
  transition: color .3s;
  user-select: none;
}
.faq-q:hover { color: var(--orange); }
.faq-q i { color: var(--orange); transition: transform .3s; font-size: .95rem; }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  padding: 0 22px;
  max-height: 0;
  overflow: hidden;
  transition: all .4s;
  color: var(--text-muted);
  font-size: .88rem;
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 20px; }

/* ══════════════════════════
   CONTACT FORM
══════════════════════════ */
.form-ctrl {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: .9rem;
  width: 100%;
  transition: all .3s;
  font-family: var(--ff-b);
}
.form-ctrl:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(255,102,0,.04);
  box-shadow: 0 0 0 3px rgba(255,102,0,.1);
}
.form-ctrl::placeholder { color: rgba(255,255,255,.22); }
.form-ctrl option { background: #161B22; }
.form-lbl { font-size: .81rem; font-weight: 600; color: rgba(255,255,255,.62); margin-bottom: 7px; display: block; }
.ci-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  height: 100%;
}
.ci-row { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 22px; }
.ci-ico {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 9px;
  background: rgba(255,102,0,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: .9rem;
}
.ci-lbl { font-size: .74rem; color: var(--text-muted); margin-bottom: 2px; }
.ci-val { font-size: .9rem; font-weight: 500; }

/* ══════════════════════════
   CTA BANNER
══════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, rgba(255,102,0,.11) 0%, rgba(255,102,0,.03) 100%);
  border: 1px solid var(--border-o);
  border-radius: 24px;
  padding: 56px 44px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,102,0,.12), transparent 70%);
  pointer-events: none;
}

/* ══════════════════════════
   SOCIAL BUTTONS
══════════════════════════ */
.soc-btn {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .85rem;
  transition: all .3s;
}
.soc-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.soc-row { display: flex; gap: 8px; }

/* ══════════════════════════
   FOOTER
══════════════════════════ */
.dt-footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 0 28px;
}
.footer-brand-d { color: var(--grey); }
.footer-brand-t { color: var(--orange); }
.footer-brand {
  font-family: var(--ff-h);
  font-size: 1.5rem;
  font-weight: 900;
}
.footer-tech {
  font-size: .65rem;
  color: var(--orange);
  letter-spacing: 1px;
  margin-top: 2px;
}
.footer-desc {
  color: var(--text-muted);
  font-size: .87rem;
  line-height: 1.75;
  margin-top: 12px;
  max-width: 280px;
}
.footer-heading {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 18px;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 9px; }
.footer-list a { color: var(--text-muted); text-decoration: none; font-size: .87rem; transition: color .3s; }
.footer-list a:hover { color: var(--orange); }
.footer-bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom p { color: var(--text-muted); font-size: .8rem; margin: 0; }

/* ══════════════════════════
   TOAST NOTIFICATION
══════════════════════════ */
.dt-toast {
  position: fixed;
  bottom: 26px;
  right: 26px;
  background: var(--bg2);
  border: 1px solid var(--border-o);
  color: var(--text);
  padding: 14px 20px;
  border-radius: 12px;
  font-size: .87rem;
  font-weight: 500;
  z-index: 9999;
  transform: translateX(160%);
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  display: flex;
  align-items: center;
  gap: 9px;
  max-width: 320px;
}
.dt-toast.show { transform: translateX(0); }

/* ══════════════════════════
   FADE-UP ANIMATION
══════════════════════════ */
.fu { opacity: 0; transform: translateY(28px); transition: all .65s cubic-bezier(.16,1,.3,1); }
.fu.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ══════════════════════════
   SECTION PADDING
══════════════════════════ */
.sec { padding: 90px 0; }
.sec-alt { padding: 90px 0; background: var(--bg2); }

/* ══════════════════════════
   UTILITIES
══════════════════════════ */
.divider { height: 1px; background: var(--border); margin: 0; }
.orange { color: var(--orange); }
.text-muted-dt { color: var(--text-muted); }
.bg-card { background: var(--bg2); }
.bg-dark-dt { background: var(--bg); }

/* ══════════════════════════
   STATUS BADGES (for service pages)
══════════════════════════ */
.badge-active {
  background: rgba(52,211,153,.1);
  color: #34d399;
  border: 1px solid rgba(52,211,153,.2);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.badge-orange {
  background: rgba(255,102,0,.1);
  border: 1px solid var(--border-o);
  color: var(--orange);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ══════════════════════════
   RESPONSIVE
══════════════════════════ */
@media (max-width: 992px) {
  .nav-links, .btn-quote-wrap { display: none !important; }
  .hamburger { display: block; }
  .hero-stats { gap: 22px; }
  .cta-banner { padding: 36px 24px; }
}
@media (max-width: 768px) {
  .sec, .sec-alt { padding: 65px 0; }
  .hero-title { letter-spacing: -1px; }
  .hero-sub { font-size: .95rem; }
  .float-badge { display: none; }
  .page-hero h1 { font-size: 1.9rem; }
}
@media (max-width: 576px) {
  .hero-stats { gap: 18px; }
  .hstat .n { font-size: 1.5rem; }
}

/* ── Blog Filter Buttons ── */
.btn-filter-dt {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
  padding: 7px 18px; border-radius: 50px;
  font-size: .82rem; font-weight: 600; cursor: pointer;
  transition: all .22s ease;
}
.btn-filter-dt:hover, .btn-filter-dt.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
