/* ============================================================
   BEXON IT AGENCY — Global Stylesheet
   Font: Plus Jakarta Sans (Google Sans equivalent)
   Colors: #e8532a (primary), #0d1322 (dark), #f4f6fa (light)
   ============================================================ */

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

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Plus Jakarta Sans', 'Google Sans', sans-serif;
  color: #6b7280;
  background: #fff;
  overflow-x: hidden;
  line-height: 1.7;
}
a { text-decoration: none; color: inherit; transition: all .3s ease; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }
h2
{
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
}
/* ===== CSS VARIABLES ===== */
:root {
  --primary-dk:    #0c3e73;
  --primary: #0668d7;
  --primary-lt: rgba(21, 20, 117, 0.1);
  --dark:       #0c2448;
  --dark-2:     #111827;
  --dark-3:     #1a2236;
  --heading:    #111827;
  --text:       #6b7280;
  --text-dk:    #374151;
  --white:      #ffffff;
  --light:      #f4f6fa;
  --light-2:    #eef0f5;
  --border:     #e5e7eb;
  --shadow-sm:  0 2px 12px rgba(0,0,0,.06);
  --shadow-md:  0 8px 32px rgba(0,0,0,.10);
  --shadow-lg:  0 20px 60px rgba(0,0,0,.12);
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-pill:50px;
}

/* ===== LAYOUT ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 70px 0; }

/* ===== TYPOGRAPHY ===== */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: var(--primary);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px;
}
.section-tag::before { content:''; width:22px; height:2px; background:var(--primary); flex-shrink:0; }
.section-title {
  font-size: clamp(28px, 3.5vw, 46px); font-weight: 800;
  color: var(--heading); line-height: 1.15; margin-bottom: 18px;
}
.section-title em { color: var(--primary); font-style: normal; }
.section-sub { font-size: 16px; color: var(--text); max-width: 580px; line-height: 1.8; }
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }
.text-white { color: #fff !important; }
.text-white-70 { color: rgba(255,255,255,.7) !important; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--radius-pill);
  font-size: 14px; font-weight: 700; border: none;
  transition: all .3s ease; letter-spacing: .3px;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dk); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(232,83,42,.35); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--dark-3); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--heading); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.35); }
.btn-outline-white:hover { background: #fff; color: var(--primary); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--primary); color: #fff; }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-sm { padding: 10px 22px; font-size: 13px; }
.btn-icon { width: 48px; height: 48px; padding: 0; border-radius: 50%; justify-content: center; }

/* ===== CARDS ===== */
.card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all .3s ease;
}
.card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.card-body { padding: 28px; }

/* ===== BADGE ===== */
.badge {
  display: inline-block; padding: 4px 14px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px;
}
.badge-primary { background: var(--primary-lt); color: var(--primary); }
.badge-dark { background: rgba(255,255,255,.1); color: rgba(255,255,255,.8); }

/* ===== ICON BOX ===== */
.icon-box {
  width: 52px; height: 52px; border-radius: var(--radius-md);
  background: var(--primary-lt); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0; transition: all .3s;
}
.icon-box-sm { width: 40px; height: 40px; font-size: 17px; border-radius: 10px; }
.icon-box-dark { background: rgba(255,255,255,.08); color: #fff; }
.card:hover .icon-box { background: var(--primary); color: #fff; }

/* ===== DIVIDER ===== */
.divider { width: 60px; height: 3px; background: var(--primary); border-radius: 2px; margin: 16px 0 24px; }
.divider-center { margin-left: auto; margin-right: auto; }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--dark); padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.topbar-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: #9ca3af; }
.topbar-item a { color: #9ca3af; }
.topbar-item a:hover, .topbar-item:hover { color: var(--primary); }
.topbar-item i { color: var(--primary); font-size: 12px; }
.topbar-social { display: flex; gap: 8px; }
.topbar-social a {
  width: 28px; height: 28px; border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: #9ca3af; font-size: 11px;
}
.topbar-social a:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

/* ===== HEADER / NAV ===== */
.header {
  background: #fff; position: sticky; top: 0; z-index: 999;
  box-shadow: 0 2px 20px rgba(0,0,0,.07);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 20px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon {
  width: 40px; height: 40px; background: var(--primary); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 18px;
}
.logo-text { font-size: 24px; font-weight: 800; color: var(--heading); }
.logo-text span { color: var(--primary); }

.nav { display: flex; align-items: center; gap: 2px; }
.nav > li { position: relative; }
.nav > li > a {
  display: flex; align-items: center; gap: 5px;
  padding: 9px 14px; font-size: 14px; font-weight: 600; color: var(--heading);
  border-radius: var(--radius-sm); white-space: nowrap;
}
.nav > li > a:hover,
.nav > li > a.active { color: var(--primary); }
.nav > li > a i { font-size: 10px; transition: transform .3s; }
.nav > li:hover > a i { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + 10px); left: 0;
  background: #fff; min-width: 220px; border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(0,0,0,.13); padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s ease; border: 1px solid var(--border);
}
.nav > li:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 20px; font-size: 13px; font-weight: 500; color: var(--text-dk);
}
.dropdown li a i { color: var(--primary); width: 16px; font-size: 12px; }
.dropdown li a:hover { color: var(--primary); background: var(--light); padding-left: 26px; }
.dropdown-divider { height: 1px; background: var(--border); margin: 6px 0; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none; background: none; border: none; padding: 6px;
  flex-direction: column; gap: 5px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--heading); border-radius: 2px; transition: all .3s; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--dark); padding: 80px 0;
  position: relative; overflow: hidden; text-align: center;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background: radial-gradient(ellipse at 50% 80%, rgba(232,83,42,.12) 0%, transparent 65%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(32px,4vw,52px); font-weight:800; color:#fff; margin-bottom:16px; }
.page-hero p { font-size:16px; color:#94a3b8; max-width:560px; margin:0 auto 24px; }
.breadcrumb { display:inline-flex; align-items:center; gap:8px; font-size:13px; color:#94a3b8; }
.breadcrumb a { color:#94a3b8; }
.breadcrumb a:hover { color:var(--primary); }
.breadcrumb .sep { color:rgba(255,255,255,.3); }
.breadcrumb .current { color:var(--primary); font-weight:600; }

/* ===== HERO (HOME) ===== */
.hero-home {
  background: var(--dark); min-height: 80vh;
  padding: 20px 0 0 0;
  display: flex; align-items: center; position: relative; overflow: hidden;

}
.hero-home::before {
  content:''; position:absolute; inset:0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(232,83,42,.13) 0%, transparent 60%),
    radial-gradient(ellipse at 15% 80%, rgba(59,130,246,.07) 0%, transparent 55%);
}
.hero-h2
{
  color: #fff;
}
.hero-grid { display:grid; grid-template-columns:1fr 1fr; align-items:center; gap:60px; position:relative; z-index:2; }
.hero-badge {
  display:inline-flex; align-items:center; gap:8px;
  background: rgb(9 102 208 / 13%);
    border: 1px solid #0668d7;
  color:var(--primary); padding:6px 16px; border-radius:var(--radius-pill);
  font-size:12px; font-weight:700; letter-spacing:1px; text-transform:uppercase; margin-bottom:22px;
}
.hero-home h1 {
  font-size:clamp(36px,5vw,62px); font-weight:800; color:#fff; line-height:1.1; margin-bottom:22px;
}
.hero-home p { color:#94a3b8; font-size:17px; line-height:1.8; margin-bottom:34px; max-width:480px; }
.hero-btns { display:flex; align-items:center; gap:14px; flex-wrap:wrap; margin-bottom:44px; }
.hero-divider { width:1px; height:60px; background:rgba(255,255,255,.1); }
.hero-stat-num { font-size:30px; font-weight:800; color:#fff; }
.hero-stat-lbl { font-size:12px; color:#94a3b8; max-width:120px; line-height:1.4; margin-top:2px; }
.hero-stats { display:flex; align-items:center; gap:28px; flex-wrap:wrap; border-top:1px solid rgba(255,255,255,.08); padding-top:28px; }

.hero-visual { display:flex; justify-content:center; align-items:flex-end; }
.hero-card-wrap {
  position:relative; width:100%; max-width:500px;
  background:linear-gradient(145deg,#1a2542,#0f1a2e);
  border-radius:24px 24px 0 0; height:480px;
  border:1px solid rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.hero-card-wrap::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(circle at 50% 100%, rgba(232,83,42,.18) 0%, transparent 65%);
}
.hero-float-1 {
  position:absolute; top:24px; right:-16px;
  background:#fff; border-radius:14px; padding:14px 18px;
  box-shadow:0 16px 48px rgba(0,0,0,.18);
  display:flex; align-items:center; gap:10px; z-index:3;
}
.hero-float-2 {
  position:absolute; bottom:80px; left:-16px;
  background:#fff; border-radius:14px; padding:14px 20px;
  box-shadow:0 16px 48px rgba(0,0,0,.18); z-index:3;
}
.float-icon { width:36px; height:36px; border-radius:9px; background:var(--primary-lt); color:var(--primary); display:flex; align-items:center; justify-content:center; font-size:16px; }
.float-label { font-size:11px; color:var(--text); font-weight:600; text-transform:uppercase; letter-spacing:.5px; }
.float-value { font-size:18px; font-weight:800; color:var(--heading); line-height:1.1; margin-top:1px; }
.progress-mini { width:90px; height:5px; background:#eee; border-radius:3px; margin-top:6px; overflow:hidden; }
.progress-mini-fill { height:100%; background:var(--primary); border-radius:3px; }
.hero-center-icon { font-size:120px; color:rgba(255,255,255,.04); position:absolute; }

/* ===== PARTNERS TICKER ===== */
.partners-bar { background:var(--light); padding:28px 0; border-top:1px solid var(--border); border-bottom:1px solid var(--border); overflow:hidden; }
.partners-label { font-size:13px; font-weight:700; color:var(--text); text-transform:uppercase; letter-spacing:1.5px; white-space:nowrap; flex-shrink:0; }
.partners-inner { display:flex; align-items:center; gap:48px; }
.partner-name { font-size:17px; font-weight:800; color:#c4cad6; letter-spacing:-1px; white-space:nowrap; transition:color .3s; }
.partner-name:hover { color:var(--primary); }

/* ===== ABOUT SECTION ===== */
.about-grid { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.about-visual { position:relative; }
.about-img-main {
  width:100%; height:480px; border-radius:var(--radius-xl);
  background:linear-gradient(145deg,#1a2542,#0f1a2e);
  display:flex; align-items:center; justify-content:center; overflow:hidden;
  border:1px solid rgba(255,255,255,.06);
}
.about-img-main i { font-size:90px; color:rgba(255,255,255,.06); }
.about-exp-badge {
  position:absolute; bottom:28px; left:-24px;
  background:var(--primary); color:#fff; border-radius:16px;
  padding:20px 26px; box-shadow: 0 16px 48px rgb(0 108 243 / 24%);
}
.about-exp-num { font-size:40px; font-weight:800; line-height:1; }
.about-exp-lbl { font-size:13px; opacity:.9; margin-top:4px; }
.about-stats-card {
  position:absolute; top:28px; right:-24px;
  background:#fff; border-radius:14px; padding:16px 20px;
  box-shadow:0 16px 48px rgba(0,0,0,.12); border:1px solid var(--border);
}
.about-stats-row { display:flex; gap:20px; }
.about-stat { text-align:center; }
.about-stat-n { font-size:24px; font-weight:800; color:var(--heading); line-height:1; }
.about-stat-l { font-size:11px; color:var(--text); margin-top:2px; font-weight:600; text-transform:uppercase; letter-spacing:.5px; }

.about-content {}
.about-list { margin-top:24px; display:flex; flex-direction:column; gap:14px; }
.about-list li { display:flex; align-items:flex-start; gap:12px; font-size:15px; color:var(--text-dk); }
.about-list li i { color:var(--primary); margin-top:4px; flex-shrink:0; }
.review-box { background:var(--light); border-radius:var(--radius-lg); padding:24px; margin-top:32px; display:flex; gap:16px; align-items:flex-start; }
.review-stars { color:#f59e0b; font-size:13px; margin-bottom:6px; }
.review-text { font-size:14px; color:var(--text-dk); font-style:italic; line-height:1.7; }
.review-author-name { font-weight:700; color:var(--heading); font-size:14px; margin-top:8px; }
.review-author-role { font-size:12px; color:var(--primary); }
.avatar-sm { width:46px; height:46px; border-radius:50%; background:linear-gradient(135deg,var(--primary),var(--primary-dk)); display:flex; align-items:center; justify-content:center; color:#fff; font-size:18px; font-weight:700; flex-shrink:0; }

/* ===== SERVICES CARDS ===== */
.services-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.service-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; transition:all .3s; display:flex; flex-direction:column; }
.service-card:hover { border-color:var(--primary); box-shadow:var(--shadow-lg); transform:translateY(-5px); }
.service-img {
  height:200px; background:linear-gradient(145deg,#1a2542,#0f1a2e);
  display:flex; align-items:center; justify-content:center;
  font-size:55px; color:rgba(255,255,255,.1); position:relative; overflow:hidden;
}
.service-img-accent { position:absolute; bottom:-30px; right:-30px; width:120px; height:120px; border-radius:50%; background:rgba(232,83,42,.18); }
.service-body { padding:26px; flex:1; display:flex; flex-direction:column; }
.service-title { font-size:19px; font-weight:700; color:var(--heading); margin-bottom:10px; }
.service-text { font-size:14px; color:var(--text); line-height:1.75; flex:1; }
.service-link { display:inline-flex; align-items:center; gap:7px; margin-top:18px; color:var(--primary); font-weight:700; font-size:14px; }
.service-link i { transition:transform .3s; }
.service-link:hover i { transform:translateX(4px); }

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail-grid { display:grid; grid-template-columns:2fr 1fr; gap:60px; align-items:start; }
.service-detail-sidebar {}
.sidebar-widget { background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; margin-bottom:24px; }
.sidebar-widget-title { background:var(--dark); color:#fff; padding:18px 24px; font-size:15px; font-weight:700; }
.sidebar-links { padding:8px 0; }
.sidebar-links li a {
  display:flex; align-items:center; justify-content:space-between;
  padding:12px 24px; font-size:14px; color:var(--text-dk); font-weight:500; border-left:3px solid transparent;
}
.sidebar-links li a:hover, .sidebar-links li a.active { color:var(--primary); background:var(--light); border-left-color:var(--primary); }
.sidebar-links li a i { font-size:12px; }
.sidebar-cta { background:var(--primary); border-radius:var(--radius-lg); padding:32px 28px; text-align:center; margin-bottom:24px; }
.sidebar-cta h4 { color:#fff; font-size:20px; font-weight:800; margin-bottom:10px; }
.sidebar-cta p { color:rgba(255,255,255,.8); font-size:14px; margin-bottom:20px; }

/* ===== PROCESS STEPS ===== */
.process-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.process-card { text-align:center; padding:36px 24px; background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); position:relative; transition:all .3s; }
.process-card:hover { border-color:var(--primary); box-shadow:var(--shadow-md); }
.process-num {
  width:56px; height:56px; border-radius:50%; background:var(--primary-lt); color:var(--primary);
  font-size:20px; font-weight:800; display:flex; align-items:center; justify-content:center; margin:0 auto 20px;
}
.process-card:hover .process-num { background:var(--primary); color:#fff; }
.process-title { font-size:16px; font-weight:700; color:var(--heading); margin-bottom:10px; }
.process-text { font-size:13px; color:var(--text); line-height:1.7; }

/* ===== PORTFOLIO ===== */
.portfolio-filter { display:flex; gap:10px; flex-wrap:wrap; margin-bottom:40px; }
.filter-btn { padding:8px 20px; border-radius:var(--radius-pill); background:var(--light); color:var(--text-dk); font-size:13px; font-weight:600; border:1px solid var(--border); transition:all .3s; }
.filter-btn.active, .filter-btn:hover { background:var(--primary); color:#fff; border-color:var(--primary); }
.portfolio-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.portfolio-card { border-radius:var(--radius-lg); overflow:hidden; position:relative; }
.portfolio-img {
  height:280px; background:linear-gradient(145deg,#1a2542,#0f1a2e);
  display:flex; align-items:center; justify-content:center; font-size:60px;
  color:rgba(255,255,255,.1); position:relative;
}
.portfolio-overlay {
  position:absolute; inset:0; background:rgba(13,19,34,.85);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:28px; transform:translateY(100%); transition:transform .4s ease;
}
.portfolio-card:hover .portfolio-overlay { transform:translateY(0); }
.portfolio-tag { background:var(--primary); color:#fff; padding:4px 12px; border-radius:var(--radius-pill); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.8px; display:inline-block; margin-bottom:10px; }
.portfolio-title { color:#fff; font-size:19px; font-weight:700; margin-bottom:6px; }
.portfolio-sub { color:#94a3b8; font-size:13px; margin-bottom:14px; }

/* ===== STATS ===== */
.stats-bar { background:var(--primary); padding:70px 0; }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:40px; text-align:center; }
.stat-num { font-size:48px; font-weight:800; color:#fff; line-height:1; margin-bottom:8px; }
.stat-lbl { font-size:14px; color:rgba(255,255,255,.8); font-weight:600; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.testimonial-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); padding:32px; transition:all .3s; }
.testimonial-card:hover { border-color:var(--primary); box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.testimonial-quote { font-size:32px; color:var(--primary); opacity:.3; margin-bottom:14px; line-height:1; }
.testimonial-text { font-size:14px; color:var(--text); line-height:1.8; font-style:italic; margin-bottom:24px; }
.testimonial-author { display:flex; align-items:center; gap:12px; }
.testimonial-avatar { width:50px; height:50px; border-radius:50%; background:linear-gradient(135deg,var(--primary),var(--primary-dk)); display:flex; align-items:center; justify-content:center; color:#fff; font-size:18px; font-weight:800; flex-shrink:0; }
.testimonial-name { font-weight:700; color:var(--heading); font-size:15px; }
.testimonial-role { font-size:12px; color:var(--primary); }
.testimonial-stars { color:#f59e0b; font-size:12px; margin-top:3px; }

/* ===== FAQ ===== */
.faq-grid { display:grid; grid-template-columns:1.1fr 1fr; gap:80px; align-items:start; }
.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:border-color .3s; }
.faq-item.open { border-color:var(--primary); }
.faq-question {
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 22px; font-weight:600; color:var(--heading); cursor:pointer;
  font-size:15px; gap:14px; user-select:none;
}
.faq-question .faq-icon { color:var(--primary); font-size:13px; transition:transform .3s; flex-shrink:0; }
.faq-item.open .faq-icon { transform:rotate(180deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .4s ease; font-size:14px; color:var(--text); line-height:1.8; }
.faq-item.open .faq-answer { max-height:300px; }
.faq-answer-inner { padding:0 22px 18px; }
.faq-sidebar {}
.faq-sidebar-img {
  height:380px; border-radius:var(--radius-xl); background:linear-gradient(145deg,#1a2542,#0f1a2e);
  display:flex; align-items:center; justify-content:center; font-size:80px;
  color:rgba(255,255,255,.07); position:relative; overflow:hidden; margin-bottom:24px;
}
.faq-sidebar-cta { background:var(--primary); border-radius:var(--radius-lg); padding:24px 28px; color:#fff; }
.faq-sidebar-cta .cta-lbl { font-size:12px; opacity:.8; text-transform:uppercase; letter-spacing:1px; font-weight:700; margin-bottom:4px; }
.faq-sidebar-cta .cta-phone { font-size:22px; font-weight:800; }

/* ===== BLOG ===== */
.blog-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.blog-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; transition:all .3s; }
.blog-card:hover { box-shadow:var(--shadow-lg); transform:translateY(-4px); border-color:var(--primary); }
.blog-img {
  height:220px; background:linear-gradient(145deg,#1a2542,#0f1a2e);
  display:flex; align-items:center; justify-content:center;
  font-size:55px; color:rgba(255,255,255,.1); position:relative; overflow:hidden;
}
.blog-date-badge {
  position:absolute; top:16px; left:16px;
  background:var(--primary); color:#fff; border-radius:10px;
  padding:8px 12px; text-align:center; line-height:1;
}
.blog-date-num { font-size:20px; font-weight:800; display:block; }
.blog-date-mon { font-size:11px; text-transform:uppercase; letter-spacing:1px; }
.blog-body { padding:22px; }
.blog-meta { display:flex; align-items:center; gap:10px; font-size:12px; color:var(--text); margin-bottom:12px; flex-wrap:wrap; }
.blog-meta a { color:var(--primary); font-weight:700; }
.blog-title { font-size:17px; font-weight:700; color:var(--heading); line-height:1.4; margin-bottom:14px; }
.blog-title a:hover { color:var(--primary); }
.blog-read { display:inline-flex; align-items:center; gap:6px; color:var(--primary); font-weight:700; font-size:13px; }
.blog-read i { transition:transform .3s; }
.blog-read:hover i { transform:translateX(4px); }

/* ===== CONTACT ===== */
.contact-grid { display:grid; grid-template-columns:1fr 1.3fr; gap:70px; }
.contact-info {}
.contact-info-items { display:flex; flex-direction:column; gap:20px; margin-top:28px; }
.contact-info-item { display:flex; gap:16px; align-items:flex-start; }
.contact-info-icon { width:50px; height:50px; background:var(--primary-lt); border-radius:var(--radius-md); display:flex; align-items:center; justify-content:center; color:var(--primary); font-size:20px; flex-shrink:0; }
.contact-info-label { font-size:11px; font-weight:700; color:var(--primary); text-transform:uppercase; letter-spacing:1px; margin-bottom:3px; }
.contact-info-value { font-size:14px; color:var(--text-dk); line-height:1.6; }
.contact-info-value a:hover { color:var(--primary); }
.contact-social { display:flex; gap:10px; margin-top:28px; }
.contact-social a { width:40px; height:40px; border:1px solid var(--border); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--text-dk); font-size:14px; }
.contact-social a:hover { background:var(--primary); border-color:var(--primary); color:#fff; }

.contact-form-wrap {}
.contact-form-title { font-size:32px; font-weight:800; color:var(--heading); margin-bottom:28px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-group { margin-bottom:18px; }
.form-group label { display:block; font-size:13px; font-weight:600; color:var(--heading); margin-bottom:7px; }
.form-group input,
.form-group select,
.form-group textarea {
  width:100%; padding:13px 16px; border:1.5px solid var(--border);
  border-radius:10px; font-size:14px; color:var(--heading);
  font-family:inherit; outline:none; transition:border-color .3s; background:#fff;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color:var(--primary); }
.form-group textarea { height:130px; resize:vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color:#9ca3af; }

/* ===== CTA BANNER ===== */
.cta-banner { background:var(--dark); padding:80px 0; position:relative; overflow:hidden; }
.cta-banner::before {
  content:''; position:absolute; inset:0;
  background:radial-gradient(ellipse at 50% 50%, rgba(232,83,42,.14) 0%, transparent 70%);
}
.cta-inner { text-align:center; position:relative; z-index:2; }
.cta-inner h2 { font-size:clamp(28px,4vw,48px); font-weight:800; color:#fff; margin-bottom:16px; }
.cta-inner p { color:#94a3b8; font-size:16px; margin-bottom:32px; }
.cta-btns { display:flex; align-items:center; justify-content:center; gap:14px; flex-wrap:wrap; }

/* ===== TEAM ===== */
.team-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.team-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius-lg); overflow:hidden; transition:all .3s; text-align:center; }
.team-card:hover { border-color:var(--primary); box-shadow:var(--shadow-lg); transform:translateY(-4px); }
.team-img { height:240px; background:linear-gradient(145deg,#1a2542,#0f1a2e); display:flex; align-items:center; justify-content:center; font-size:70px; color:rgba(255,255,255,.1); }
.team-body { padding:20px 16px; }
.team-name { font-size:17px; font-weight:700; color:var(--heading); margin-bottom:4px; }
.team-role { font-size:13px; color:var(--primary); font-weight:600; margin-bottom:14px; }
.team-social { display:flex; justify-content:center; gap:8px; }
.team-social a { width:32px; height:32px; border:1px solid var(--border); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:12px; color:var(--text); }
.team-social a:hover { background:var(--primary); border-color:var(--primary); color:#fff; }

/* ===== PRICING ===== */
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:start; }
.pricing-card { background:#fff; border:1px solid var(--border); border-radius:var(--radius-xl); padding:36px 32px; transition:all .3s; }
.pricing-card:hover, .pricing-card.featured { border-color:var(--primary); box-shadow:var(--shadow-lg); transform:translateY(-6px); }
.pricing-card.featured { background:var(--dark); }
.pricing-badge { background:var(--primary); color:#fff; padding:5px 14px; border-radius:var(--radius-pill); font-size:12px; font-weight:700; display:inline-block; margin-bottom:16px; }
.pricing-plan { font-size:14px; font-weight:700; color:var(--text); text-transform:uppercase; letter-spacing:1.5px; margin-bottom:8px; }
.pricing-card.featured .pricing-plan { color:#94a3b8; }
.pricing-amount { font-size:48px; font-weight:800; color:var(--heading); line-height:1; margin:12px 0 4px; }
.pricing-card.featured .pricing-amount { color:#fff; }
.pricing-period { font-size:14px; color:var(--text); margin-bottom:24px; }
.pricing-card.featured .pricing-period { color:#94a3b8; }
.pricing-features { display:flex; flex-direction:column; gap:12px; margin-bottom:32px; }
.pricing-features li { display:flex; align-items:center; gap:10px; font-size:14px; color:var(--text-dk); }
.pricing-card.featured .pricing-features li { color:#d1d5db; }
.pricing-features li i { color:var(--primary); font-size:12px; }
.pricing-features li.disabled { opacity:.5; text-decoration:line-through; }

/* ===== FOOTER ===== */
.footer { background:var(--dark-2); padding:80px 0 0; position:relative; overflow:hidden; }
.footer-grid { display:grid; grid-template-columns:1.6fr 1fr 1fr 1.5fr; gap:60px; padding-bottom:60px; }
.footer-logo-text { font-size:26px; font-weight:800; color:#fff; margin-bottom:14px; }
.footer-logo-text span { color:var(--primary); }
.footer-desc { font-size:14px; color:#94a3b8; line-height:1.75; margin-bottom:22px; }
.footer-awards { display:flex; gap:12px; }
.footer-award { padding:10px 14px; background:rgba(255,255,255,.05); border:1px solid rgba(255,255,255,.1); border-radius:10px; font-size:11px; font-weight:700; color:#94a3b8; text-align:center; line-height:1.4; }
.footer-title { font-size:15px; font-weight:700; color:#fff; margin-bottom:22px; padding-bottom:14px; border-bottom:1px solid rgba(255,255,255,.08); }
.footer-links { display:flex; flex-direction:column; gap:10px; }
.footer-links a { font-size:14px; color:#94a3b8; display:flex; align-items:center; gap:7px; }
.footer-links a::before { content:'→'; color:var(--primary); font-size:11px; transition:transform .3s; }
.footer-links a:hover { color:var(--primary); }
.footer-links a:hover::before { transform:translateX(3px); }





.footer-newsletter-lbl { font-size:14px; color:#94a3b8; margin-bottom:14px; line-height:1.6; }
.newsletter-row { display:flex; gap:0; }
.newsletter-row input { flex:1; padding:12px 16px; background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.14); border-right:none; border-radius:8px 0 0 8px; color:#fff; font-size:13px; outline:none; font-family:inherit; }
.newsletter-row input::placeholder { color:#6b7280; }
.newsletter-row button { background:var(--primary); border:none; border-radius:0 8px 8px 0; color:#fff; padding:12px 18px; font-size:16px; transition:background .3s; }
.newsletter-row button:hover { background:var(--primary-dk); }
.footer-contacts-list { margin-top:20px; display:flex; flex-direction:column; gap:10px; }
.footer-contacts-list a { font-size:14px; color:#94a3b8; display:flex; align-items:center; gap:9px; }
.footer-contacts-list a i { color:var(--primary); width:15px; }
.footer-contacts-list a:hover { color:var(--primary); }
.footer-bottom { border-top:1px solid rgba(255,255,255,.07); padding:22px 0; display:flex; align-items:center; justify-content:space-between; font-size:13px; color:#6b7280; flex-wrap:wrap; gap:12px; }
.footer-bottom a { color:var(--primary); }
.footer-social { display:flex; gap:10px; }
.footer-social a { width:34px; height:34px; border:1px solid rgba(255,255,255,.14); border-radius:50%; display:flex; align-items:center; justify-content:center; color:#94a3b8; font-size:12px; }
.footer-social a:hover { background:var(--primary); border-color:var(--primary); color:#fff; }

/* ===== ANIMATION HELPERS ===== */
.fade-up { opacity:0; transform:translateY(28px); transition:opacity .6s ease, transform .6s ease; }
.fade-up.visible { opacity:1; transform:translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width:1024px) {
  .hero-grid, .about-grid, .faq-grid, .contact-grid { grid-template-columns:1fr; gap:44px; }
  .services-grid, .team-grid { grid-template-columns:repeat(2,1fr); }
  .process-grid { grid-template-columns:repeat(2,1fr); }
  .portfolio-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; gap:40px; }
  .service-detail-grid { grid-template-columns:1fr; }
  .nav { display:none; }
  .hamburger { display:flex; }
  .hero-home { min-height:auto; }
  .about-exp-badge { left:16px; }
  .about-stats-card { right:16px; }
}

@media (max-width:768px) {
  .services-grid, .team-grid, .blog-grid, .testimonials-grid, .portfolio-grid { grid-template-columns:1fr; }
  .stats-grid, .pricing-grid { grid-template-columns:1fr 1fr; }
  .process-grid { grid-template-columns:1fr; }
  .form-row { grid-template-columns:1fr; }
  .footer-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:repeat(2,1fr); gap:20px; }
  .topbar-left { gap:12px; }
  .hero-btns, .cta-btns { flex-direction:column; align-items:flex-start; }
  .cta-btns { align-items:center; }
}

/* Mobile nav open */
.nav.nav-open {
  display:flex; flex-direction:column; position:fixed;
  inset:0; top:69px; background:#fff; z-index:998;
  padding:24px; overflow-y:auto; gap:0;
}
.nav.nav-open > li { border-bottom:1px solid var(--border); }
.nav.nav-open > li > a { padding:14px 4px; font-size:15px; width:100%; }
.nav.nav-open .dropdown { position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:none; background:var(--light); border-radius:0; }
