﻿/* ============================================
   DESKTOP STYLES — UHRS IT Services
   Gold & Black Brand Theme
   ============================================ */

/* ============================================
   TOP BAR
   ============================================ */
.top_menu_bar {
  background: var(--black-primary);
  height: var(--topbar-height);
  border-bottom: 1px solid rgba(255, 179, 0, 0.15);
  overflow: hidden;
  transition: height 0.3s ease;
}
.top_menu_bar .container {
  height: 100%;
  display: flex;
  align-items: center;
}
.top_menu_bar .row {
  width: 100%;
  align-items: center;
}
.flag_and_phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
}
.flag_and_phone a {
  color: var(--mid-gray);
  transition: var(--transition-fast);
  letter-spacing: 0.3px;
}
.flag_and_phone a:hover { color: var(--gold-primary); }

/* ============================================
   HEADER
   ============================================ */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
header.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}
header.scrolled .top_menu_bar {
  height: 0;
  border: none;
}

.header_main {
  padding: 12px 0;
  transition: padding 0.3s ease;
}
header.scrolled .header_main { padding: 8px 0; }

.logo img {
  transition: var(--transition-smooth);
  width: 160px;
  height: auto;
}
header.scrolled .logo img { width: 130px; }

/* ============================================
   MAIN NAVIGATION — NAV LIST
   ============================================ */
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.3px;
  position: relative;
  transition: var(--transition-fast);
  white-space: nowrap;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--gold-gradient);
  border-radius: var(--radius-full);
  width: 0;
  transition: width 0.3s ease;
}
.nav-item:hover .nav-link,
.nav-link:hover { color: var(--gold-primary); }
.nav-item:hover .nav-link::after,
.nav-link:hover::after { width: calc(100% - 24px); }
.nav-link.active { color: var(--gold-primary); }
.nav-link.active::after { width: calc(100% - 24px); }

.nav-chevron {
  font-size: 8px;
  opacity: 0.7;
  transition: transform 0.25s;
  display: inline-block;
}
.nav-item:hover .nav-chevron { transform: rotate(180deg); }

/* CTA nav item */
.nav-cta {
  background: var(--gold-gradient) !important;
  color: var(--black-primary) !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-lg) !important;
  color: var(--black-primary) !important;
}

/* ============================================
   SIMPLE DROPDOWN MENU
   ============================================ */
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 240px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.14);
  border-top: 3px solid var(--gold-primary);
  padding: 8px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  transform: translateX(-50%) translateY(-8px);
  z-index: 1000;
}
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu li a {
  display: block;
  padding: 9px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: #333;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}
.dropdown-menu li a:hover {
  background: #f8f4ec;
  color: var(--gold-dark);
  padding-left: 26px;
}

/* Multi-column dropdown */
.dropdown-cols-3 {
  min-width: 560px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 8px 0;
}
.dropdown-cols-3 li { display: contents; }

/* ============================================
   INDUSTRY MEGA MENU
   ============================================ */
.has-industry-mega { position: static; }
.industry-mega {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: min(1180px, 98vw);
  background: #fff;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.16);
  border-top: 3px solid var(--gold-primary);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s, transform 0.25s ease;
  z-index: 999;
}
.has-industry-mega.open .industry-mega {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.industry-mega-inner {
  display: flex;
}
/* Left image panel */
.industry-mega-panel {
  flex: 0 0 200px;
  background: linear-gradient(160deg, #0f2a52 0%, #1a3868 40%, #0a1a30 100%);
  border-radius: 0 0 0 14px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 18px;
  overflow: hidden;
}
.industry-mega-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('/assets/images/industry-menu-bg.jpg') center/cover no-repeat;
  opacity: 0.25;
  border-radius: inherit;
}
.industry-mega-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,26,48,0.92) 0%, rgba(26,56,104,0.5) 60%, transparent 100%);
  border-radius: inherit;
}
.industry-panel-overlay {
  position: relative;
  z-index: 1;
}
.industry-panel-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 5px;
}
.industry-panel-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 6px;
}
.industry-panel-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  margin: 0;
  line-height: 1.4;
}
/* Right icon card grid */
.industry-mega-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  padding: 10px;
  background: #f7f8fc;
  border-radius: 0 0 14px 0;
  align-content: start;
}
.industry-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  padding: 9px 6px 8px;
  border: 1.5px solid #e8eaf0;
  border-radius: 8px;
  background: #fff;
  color: #444;
  text-align: center;
  font-size: 10.5px;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
  transition: border-color 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.industry-card:hover {
  border-color: var(--gold-primary);
  color: #1a3868;
  box-shadow: 0 3px 10px rgba(26,56,104,0.10);
  transform: translateY(-1px);
}
.industry-card-icon {
  width: 22px;
  height: 22px;
  color: #555;
  flex-shrink: 0;
  transition: color 0.18s;
}
.industry-card-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.6;
}
.industry-card:hover .industry-card-icon {
  color: var(--gold-dark);
}
.industry-card-label {
  display: block;
}

/* ============================================
   MEGA MENU
   ============================================ */
.has-mega { position: static; }
.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, 98vw);
  background: #f7f8fc;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 24px 70px rgba(0,0,0,0.16);
  border-top: 3px solid var(--gold-primary);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s, transform 0.25s ease;
  transform: translateX(-50%) translateY(-10px);
  z-index: 999;
}
/* Position relative to header_main (its nearest positioned ancestor) */
#site-header .header_main { position: relative; }

.has-mega.open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.mega-inner {
  display: flex;
  min-height: 360px;
}

/* Left category tabs */
.mega-cats {
  flex: 0 0 210px;
  background: #fff;
  border-right: 1px solid #e8eaf0;
  border-radius: 0 0 0 14px;
  overflow: hidden;
}
.mega-cats ul { list-style: none; margin: 0; padding: 10px 0; }
.mega-cat {
  padding: 13px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  border-left: 3px solid transparent;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.mega-cat:hover {
  background: #f5f6ff;
  color: #1a3868;
  border-left-color: var(--gold-primary);
}
.mega-cat.active {
  background: #1a1a1a;
  color: #fff;
  border-left-color: var(--gold-primary);
}

/* Center panels */
.mega-panels { flex: 1 1 0; padding: 20px 24px; min-width: 0; }
.mega-panel { display: none; }
.mega-panel.active { display: block; }
.mega-panel-head { margin-bottom: 12px; border-bottom: 1px solid #e5e7eb; padding-bottom: 10px; }
.mega-panel-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a3868;
  letter-spacing: 0.2px;
  transition: color 0.15s;
}
.mega-panel-title:hover { color: var(--gold-dark); }

/* Sub-item grid */
.mega-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 13px;
  color: #444;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}
.mega-item:hover {
  background: #fff;
  color: #1a3868;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.mega-item-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mega-item-icon svg { width: 18px; height: 18px; }
.mega-item:hover .mega-item-icon { color: #1a3868; }
.mega-item-label { line-height: 1.3; }

/* Right sidebar */
.mega-sidebar {
  flex: 0 0 190px;
  background: #fff;
  border-left: 1px solid #e8eaf0;
  border-radius: 0 0 14px 0;
  padding: 20px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mega-badges { display: flex; flex-direction: column; gap: 10px; }
.mega-badge-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mega-badge {
  background: #f4f6fa;
  border: 1px solid #e0e4ec;
  border-radius: 6px;
  padding: 6px 4px;
  text-align: center;
}
.badge-name {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #1a3868;
  line-height: 1.2;
}
.badge-stars {
  display: block;
  font-size: 9px;
  color: #e8920a;
  margin-top: 2px;
  line-height: 1.2;
}
.btn-mega-cta {
  display: block;
  text-align: center;
  background: #1a1a1a;
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 12px 8px;
  border-radius: 6px;
  transition: background 0.18s, transform 0.18s;
  margin-top: auto;
  text-transform: uppercase;
}
.btn-mega-cta:hover {
  background: #1a3868;
  transform: translateY(-1px);
}

/* ============================================
   HAMBURGER BUTTON
   ============================================ */
.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   MOBILE NAV (accordion)
   ============================================ */
.mobile-nav {
  display: none;
  background: var(--charcoal);
  border-top: 2px solid var(--gold-primary);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.mobile-nav.active {
  display: block;
  max-height: 85vh;
  overflow-y: auto;
}
.mobile-nav-inner { padding: 12px 0 20px; }
.mob-link {
  display: block;
  padding: 14px 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.15s, padding-left 0.15s;
}
.mob-link:hover { color: var(--gold-primary); padding-left: 30px; }
.mob-link-cta {
  margin: 12px 24px 4px;
  background: var(--gold-gradient);
  color: var(--black-primary) !important;
  font-weight: 700;
  border-radius: var(--radius-sm);
  padding: 13px 24px;
  text-align: center;
  border-bottom: none;
}
.mob-link-cta:hover { color: var(--black-primary) !important; padding-left: 24px; opacity: 0.9; }
.mob-group { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mob-group-toggle,
.mob-subgroup-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 14px 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: color 0.15s;
}
.mob-group-toggle:hover { color: var(--gold-primary); }
.mob-chevron { font-size: 9px; opacity: 0.7; transition: transform 0.25s; }
.mob-group-toggle[aria-expanded="true"] .mob-chevron,
.mob-subgroup-toggle[aria-expanded="true"] .mob-chevron { transform: rotate(180deg); }
.mob-group-body { display: none; background: rgba(255,255,255,0.04); }
.mob-group-body.open { display: block; }
.mob-subgroup { border-top: 1px solid rgba(255,255,255,0.06); }
.mob-subgroup-toggle {
  font-size: 13px;
  font-weight: 500;
  padding: 12px 32px;
  color: rgba(255,255,255,0.85);
}
.mob-subgroup-toggle:hover { color: var(--gold-primary); }
.mob-sublist {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(0,0,0,0.2);
}
.mob-sublist.open { display: block; }
.mob-sublist li a {
  display: block;
  padding: 10px 42px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
  transition: color 0.15s, padding-left 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.mob-sublist li a:hover { color: var(--gold-primary); padding-left: 48px; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.90) 0%, rgba(10,10,10,0.75) 50%, rgba(20,10,0,0.85) 100%);
  z-index: 1;
}
.hero-overlay::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 8%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255,179,0,0.14) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease infinite;
}
.hero-overlay::after {
  content: '';
  position: absolute;
  bottom: 12%;
  left: 4%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255,179,0,0.09) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 5s ease infinite 1.5s;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 20px 80px;
  max-width: 850px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,179,0,0.12);
  border: 1px solid rgba(255,179,0,0.4);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  animation: fadeInDown 0.8s ease both;
  letter-spacing: 0.5px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  animation: heroTextIn 0.9s ease 0.2s both;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.hero-title .highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glowPulse 3s ease infinite;
}
.hero-subtitle {
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  margin-bottom: 40px;
  line-height: 1.75;
  animation: fadeInUp 0.9s ease 0.4s both;
  max-width: 600px;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeInUp 0.9s ease 0.6s both;
}
.hero-btn { font-size: 15px; padding: 16px 36px; }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  animation: fadeInUp 0.9s ease 0.8s both;
  padding-top: 40px;
  border-top: 1px solid rgba(255,179,0,0.15);
}
.hero-stat { text-align: left; }
.hero-stats .stat-number {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  display: block;
}
.hero-stats .stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 6px;
  display: block;
}

/* ============================================
   RATINGS SECTION
   ============================================ */
.ratings-section {
  background: #f4f4f6;
  padding: 48px 0;
  border-top: 1px solid #e0e0e5;
  border-bottom: 1px solid #e0e0e5;
}
.ratings-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.rating-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  min-width: 140px;
  text-align: center;
}
.rating-card:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-5px);
}
.rating-logo { font-size: 2rem; line-height: 1; }
.rating-name { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0; }
.rating-stars { display: flex; gap: 2px; }
.star { color: var(--gold-primary); font-size: 18px; }
.star-small { color: var(--gold-primary); font-size: 12px; }
.rating-score {
  font-size: 1.6rem;
  font-weight: 800;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.rating-reviews { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0; }
.rating-badge { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.badge-inner {
  width: 52px;
  height: 52px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-text { font-size: 0.72rem; font-weight: 700; color: var(--text-primary); }

/* ============================================
   WHY CHOOSE SECTION
   ============================================ */
.why-choose-section { padding: 80px 0; background: var(--white); }
.why-choose-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-choose-content { animation: fadeInLeft 0.8s ease 0.1s both; }
.why-choose-image   { animation: fadeInRight 0.8s ease 0.2s both; }
.why-choose-title {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.25;
}
.why-choose-subtitle {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}
.why-choose-items { display: flex; flex-direction: column; gap: 24px; }
.why-choose-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  transition: var(--transition-smooth);
}
.why-choose-item:hover {
  background: var(--off-white);
  border-color: rgba(255,179,0,0.2);
  box-shadow: var(--shadow-sm);
}
.item-number {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--gold-gradient);
  color: var(--black-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
  flex-shrink: 0;
}
.item-title { font-size: 1rem; font-weight: 700; color: var(--text-primary); margin-bottom: 6px; }
.item-description { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 0; }
.why-choose-image { position: relative; }
.team-image {
  border-radius: var(--radius-lg);
  width: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.image-overlay {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: var(--gold-gradient);
  border-radius: var(--radius-md);
  opacity: 0.5;
  z-index: -1;
}

/* ============================================
   REAL RESULTS / STATS SECTION
   ============================================ */
.real-results-section {
  background: var(--black-primary);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.real-results-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold-gradient);
}
.results-header {
  text-align: center;
  padding: 80px 20px 50px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.8s ease both;
}
.results-title {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  margin-bottom: 16px;
}
.results-title .highlight {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.results-subtitle { color: rgba(255,255,255,0.55); font-size: 1rem; margin-bottom: 0; }

.results-tabs-wrapper { padding: 0 20px 80px; position: relative; z-index: 1; }
.results-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.results-tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,179,0,0.15);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-smooth);
  letter-spacing: 0.3px;
  font-family: inherit;
}
.results-tab:hover, .results-tab.active {
  background: var(--gold-gradient);
  color: var(--black-primary);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.lets-connect-sidebar-btn {
  position: fixed;
  right: -68px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: var(--gold-gradient);
  color: var(--black-primary);
  font-weight: 800;
  font-size: 12px;
  padding: 11px 22px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  letter-spacing: 0.5px;
  z-index: 997;
  box-shadow: var(--shadow-gold);
  transition: right 0.3s ease;
  text-transform: uppercase;
}
.lets-connect-sidebar-btn:hover {
  right: -58px;
  box-shadow: var(--shadow-gold-lg);
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section { padding: 80px 0; background: #fff; }
.services-section .section-header { margin-bottom: 50px; }
.services-section .section-title { max-width: 700px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}
.service-card {
  background: var(--gold-primary);
  border: none;
  border-radius: 14px;
  padding: 28px 14px;
  text-align: center;
  transition: var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.service-card::before { display: none; }
.service-card:hover::before { display: none; }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(255,179,0,0.45);
  background: var(--gold-light);
}
.service-icon { font-size: 2.8rem; margin-bottom: 12px; display: block; }
.service-title { font-size: 0.84rem; font-weight: 700; color: #1a1a1a; line-height: 1.45; margin-bottom: 0; }
.service-card:hover .service-title { color: #1a1a1a; }
.services-footer { text-align: center; margin-top: 20px; }
.btn-loadmore {
  display: inline-block;
  padding: 14px 48px;
  background: #1a3868;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}
.btn-loadmore:hover { background: #122650; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,56,104,0.3); }

/* ============================================
   PLATFORMS & SERVICES SECTION
   ============================================ */
.platforms-section { padding: 80px 0; background: var(--white); }
.platforms-header { text-align: center; max-width: 700px; margin: 0 auto 50px; animation: fadeInUp 0.8s ease both; }
.platforms-title { font-size: clamp(1.4rem, 2.8vw, 2rem); font-weight: 800; color: var(--text-primary); margin-bottom: 16px; }
.platforms-subtitle { color: var(--text-secondary); line-height: 1.8; margin-bottom: 0; }

.platforms-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  padding: 14px 20px;
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: var(--transition-smooth);
  cursor: default;
}
.platform-icon:hover {
  background: var(--gold-gradient);
  color: var(--black-primary);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.platforms-cta { text-align: center; }

/* ============================================
   SERVICES SHOWCASE — 3-PANEL LAYOUT
   ============================================ */
.services-showcase-section {
  padding: 0;
  overflow: hidden;
}
.showcase-layout {
  display: grid;
  grid-template-columns: 36% 1fr 26%;
  min-height: 540px;
}

/* LEFT: dark tab grid */
.showcase-tabs {
  background: var(--black-primary);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-right: 1px solid rgba(255,179,0,0.08);
}
.showcase-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 12px;
  text-align: center;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.04);
  background: var(--charcoal);
  transition: background 0.25s ease, border-color 0.25s ease;
  position: relative;
}
.showcase-tab:hover {
  background: rgba(255,179,0,0.08);
  border-color: rgba(255,179,0,0.2);
}
.showcase-tab.active {
  background: rgba(255,179,0,0.14);
  border-color: rgba(255,179,0,0.4);
}
.showcase-tab.active::after {
  content: '';
  position: absolute;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 60%;
  background: var(--gold-primary);
  border-radius: 3px 0 0 3px;
}
.showcase-tab-icon {
  font-size: 1.6rem;
  line-height: 1;
}
.showcase-tab-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  line-height: 1.3;
  letter-spacing: 0.2px;
}
.showcase-tab.active .showcase-tab-label,
.showcase-tab:hover .showcase-tab-label {
  color: var(--gold-light);
}

/* MIDDLE: content panel */
.showcase-content {
  background: #f9f9f9;
  padding: 52px 48px;
  position: relative;
  overflow: hidden;
}
.showcase-panel {
  display: none;
  animation: fadeInUp 0.4s ease both;
}
.showcase-panel.active { display: block; }

.showcase-panel-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--black-primary);
  margin-bottom: 18px;
  line-height: 1.3;
  border-left: 4px solid var(--gold-primary);
  padding-left: 14px;
}
.showcase-panel-desc {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 24px;
}
.showcase-panel-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  list-style: none;
  margin-bottom: 28px;
}
.showcase-panel-list li {
  font-size: 0.88rem;
  color: #333;
  font-weight: 500;
  padding-left: 18px;
  position: relative;
}
.showcase-panel-list li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-size: 1rem;
}
.showcase-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.92rem;
  border-bottom: 2px solid var(--gold-primary);
  padding-bottom: 2px;
  transition: gap 0.2s ease, color 0.2s ease;
}
.showcase-learn-more:hover {
  color: var(--gold-primary);
  gap: 12px;
}

/* RIGHT: fixed parallax image */
.showcase-image-panel {
  position: relative;
  overflow: hidden;
}
.showcase-image-inner {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1551434678-e076c223a692?w=800&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.industries-section {
  padding: 80px 0;
  background: #fff;
}
.industries-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.industries-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #1a3868;
  margin: 0 0 14px;
  line-height: 1.3;
}
.industries-tagline {
  font-size: 1rem;
  color: #333;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 10px;
}
.industries-subtitle {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 0;
}
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 48px;
  margin-bottom: 48px;
}
.industry-card {
  flex: 0 0 calc(20% - 16px);
  text-align: center;
  padding: 28px 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  transition: var(--transition-smooth);
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
  border-color: #c8d3e0;
}
.industry-icon { display: flex; justify-content: center; align-items: center; margin-bottom: 14px; min-height: 64px; }
.industry-name { font-size: 0.92rem; font-weight: 700; color: #1a3868; margin-bottom: 0; }
.industries-cta { text-align: center; }
.btn-coral {
  display: inline-block;
  padding: 14px 38px;
  background: #e84137;
  color: #fff !important;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition-smooth);
  border: none;
}
.btn-coral:hover { background: #c73228; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,65,55,0.35); }

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section { padding: 80px 0; background: #f4f4f6; }
.testimonials-title { font-size: clamp(1.3rem, 2.5vw, 2rem); font-weight: 800; max-width: 700px; }
.testimonials-wrapper { display: flex; flex-direction: column; gap: 50px; }
.testimonial-featured {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,179,0,0.08);
}
.testimonial-image-wrapper { position: relative; }
.testimonial-bg-shape {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80%;
  height: 80%;
  background: var(--gold-gradient);
  border-radius: var(--radius-lg);
  opacity: 0.12;
  z-index: 0;
}
.testimonial-image-container { position: relative; z-index: 1; }
.testimonial-image { width: 100%; border-radius: var(--radius-md); object-fit: cover; aspect-ratio: 4/3; }
.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-gold-lg);
  transition: var(--transition-smooth);
  animation: goldPulse 2.5s ease infinite;
}
.play-button:hover { transform: translate(-50%, -50%) scale(1.1); animation: none; }
.play-icon { color: var(--black-primary); font-size: 1.2rem; margin-left: 3px; }
.testimonial-company-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--black-primary);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold-primary);
  z-index: 2;
  box-shadow: var(--shadow-md);
}
.testimonial-company-badge strong { display: block; font-size: 0.88rem; font-weight: 700; }
.testimonial-company-badge small { font-size: 0.73rem; color: var(--mid-gray); }

.testimonial-highlight { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); line-height: 1.5; margin-bottom: 20px; }
.testimonial-text { color: var(--text-secondary); line-height: 1.8; font-size: 0.94rem; }
.testimonial-author { margin-top: 24px; display: flex; align-items: center; gap: 16px; }
.author-name { font-weight: 700; font-size: 1rem; color: var(--text-primary); margin-bottom: 2px; }
.author-location { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 0; }

.testimonials-avatars { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.avatar-item {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--light-gray);
  cursor: pointer;
  transition: var(--transition-smooth);
  opacity: 0.55;
}
.avatar-item.active, .avatar-item:hover {
  border-color: var(--gold-primary);
  opacity: 1;
  transform: scale(1.1);
  box-shadow: var(--shadow-gold);
}
.avatar-image { width: 100%; height: 100%; object-fit: cover; }

/* ============================================
   BLOGS & FAQS
   ============================================ */
.blogs-faqs-section { padding: 80px 0; background: var(--white); }
.blogs-faqs-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.blogs-section .section-header { margin-bottom: 30px; }
.blogs-grid { display: flex; flex-direction: column; gap: 16px; }
.blog-card {
  background: var(--off-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: var(--transition-smooth);
  border-left: 4px solid transparent;
}
.blog-card:hover {
  border-left-color: var(--gold-primary);
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.blog-title { font-size: 0.98rem; font-weight: 700; color: var(--text-primary); line-height: 1.4; margin-bottom: 10px; }
.blog-meta { display: flex; gap: 16px; margin-bottom: 10px; flex-wrap: wrap; }
.blog-author, .blog-date { display: flex; align-items: center; gap: 5px; font-size: 0.78rem; color: var(--text-muted); }
.blog-excerpt { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; margin-bottom: 14px; }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--gold-primary);
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: var(--transition-fast);
}
.blog-read-more:hover { border-bottom-color: var(--gold-primary); gap: 8px; }

.faqs-section .section-header { margin-bottom: 30px; }
.faqs-container { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.faq-item:hover { border-color: rgba(255,179,0,0.3); }
.faq-item.open { border-color: rgba(255,179,0,0.4); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  transition: background 0.2s ease;
  gap: 12px;
}
.faq-question:hover { background: rgba(255,179,0,0.04); }
.faq-item.open .faq-question { background: rgba(255,179,0,0.04); }
.faq-text { font-size: 0.94rem; font-weight: 600; color: var(--text-primary); line-height: 1.4; }
.faq-icon {
  font-size: 1.5rem;
  color: var(--gold-primary);
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-content {
  padding: 16px 20px 20px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.8;
  border-top: 1px solid var(--light-gray);
}

/* ============================================
   LOGO SLIDER
   ============================================ */
.logo-slider-section {
  padding: 48px 0;
  background: var(--black-primary);
  border-top: 1px solid rgba(255,179,0,0.1);
}
.logo-slider-wrapper { position: relative; }
.logo-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 0;
  -ms-overflow-style: none;
}
.logo-slider::-webkit-scrollbar { display: none; }
.logo-item {
  flex-shrink: 0;
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,179,0,0.1);
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  overflow: hidden;
}
.logo-item:hover { border-color: var(--gold-primary); background: rgba(255,179,0,0.07); }
.logo-img { max-width: 120px; max-height: 60px; object-fit: contain; filter: grayscale(1) brightness(2); transition: filter 0.3s ease; }
.logo-item:hover .logo-img { filter: none; }
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--gold-gradient);
  color: var(--black-primary);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: var(--shadow-gold);
  transition: var(--transition-smooth);
}
.slider-nav:hover { transform: translateY(-50%) scale(1.12); }
.slider-prev { left: -19px; }
.slider-next { right: -19px; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--dark-panel); color: var(--white); }
.footer-logo-area {
  padding: 50px 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  border-bottom: 1px solid rgba(255,179,0,0.08);
}
.footer-logo img { width: 150px; filter: brightness(10); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.4); font-style: italic; }
.footer-contact-info { display: flex; flex-direction: column; gap: 6px; align-items: flex-end; }
.footer-contact-info a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-contact-info a:hover { color: var(--gold-primary); }

.footer-services { padding: 50px 0; border-bottom: 1px solid rgba(255,179,0,0.08); }
.footer-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 40px; }
.footer-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}
.footer-list { display: flex; flex-direction: column; gap: 8px; }
.footer-list a { font-size: 0.8rem; color: rgba(255,255,255,0.5); transition: var(--transition-fast); line-height: 1.4; }
.footer-list a:hover { color: var(--gold-primary); padding-left: 5px; }

.footer-serve-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 10px; }
.footer-serve-grid a { font-size: 0.78rem; color: rgba(255,255,255,0.5); transition: var(--transition-fast); }
.footer-serve-grid a:hover { color: var(--gold-primary); }

.footer-contact-section { margin-top: 24px; }
.footer-phone {
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin: 14px 0 12px;
  letter-spacing: 0.3px;
}
.btn-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-gradient);
  color: var(--black-primary);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 16px rgba(255,179,0,0.3);
}
.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,179,0,0.5);
  filter: brightness(1.1);
}
.social-icons { display: flex; gap: 10px; flex-wrap: wrap; }
.social-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,179,0,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: var(--transition-smooth);
}
.social-icon:hover {
  background: var(--gold-gradient);
  color: var(--black-primary);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.footer-bottom {
  padding: 22px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-bottom a { color: var(--gold-primary); }

/* ============================================
   COMPANY OVERVIEW SECTION
   ============================================ */
.company-overview-section {
  padding: 80px 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.company-overview-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,179,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.overview-content   { animation: fadeInLeft 0.8s ease 0.1s both; }
.overview-highlights { animation: fadeInRight 0.8s ease 0.2s both; }
/* Single-column override when no grid wrapper */
.company-overview-section > .container > .overview-content {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  animation: fadeInUp 0.8s ease 0.1s both;
}
.company-overview-section .overview-services {
  justify-content: center;
}
.overview-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin: 16px 0 20px;
}
.overview-lead {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 14px;
  font-weight: 500;
}
.overview-body {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 28px;
}
.overview-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.overview-service-pill {
  background: rgba(255,179,0,0.08);
  border: 1px solid rgba(255,179,0,0.25);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 7px 15px;
  border-radius: var(--radius-full);
  letter-spacing: 0.3px;
  transition: var(--transition-fast);
}
.overview-service-pill:hover {
  background: rgba(255,179,0,0.18);
  border-color: var(--gold-primary);
  color: var(--white);
}
.overview-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.overview-highlight-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,179,0,0.1);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  transition: var(--transition-smooth);
}
.overview-highlight-card:hover {
  background: rgba(255,179,0,0.05);
  border-color: rgba(255,179,0,0.3);
  transform: translateX(6px);
}
.highlight-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.highlight-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.highlight-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
}
.highlight-text span {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ============================================
   SECTION UTILITY OVERRIDES
   ============================================ */
.section    { padding: 80px 0; }
.section-sm { padding: 50px 0; }

/* ============================================================
   INNER PAGE — SHARED STYLES (hero, sections, cards)
   ============================================================ */

/* ── HERO ── */
.inner-hero {
  position: relative;
  background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 55%, #1a3868 100%) !important;
  background-color: #0A0A0A !important;
  padding: 100px 0 52px;
  text-align: center;
  overflow: hidden;
}
.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 40%, rgba(255,179,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.inner-hero-bg {
  position: absolute;
  inset: 0;
  background: url('/assets/images/hero-pattern.svg') repeat center/300px;
  opacity: 0.03;
}
.inner-page-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  line-height: 1.2;
}
.inner-page-desc {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 640px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.inner-hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
/* Breadcrumb */
.breadcrumb ol {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  font-size: 13px;
}
.breadcrumb li { display: flex; align-items: center; gap: 4px; color: rgba(255,255,255,0.45); }
.breadcrumb li::before { content: '/'; margin-right: 4px; opacity: 0.4; }
.breadcrumb li:first-child::before { display: none; }
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color 0.15s; }
.breadcrumb a:hover { color: #FFB300; }
.breadcrumb li[aria-current="page"] { color: #FFB300; }

/* ── COMMON INNER PAGE ELEMENTS ── */
.ip-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
}
.ip-heading {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #0a0a0a;
  line-height: 1.25;
  margin: 0 0 18px;
}
.ip-lead {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.75;
  margin: 0 0 22px;
}
.ip-link { color: var(--gold-dark); font-weight: 600; border-bottom: 1px solid var(--gold-primary); }
.ip-link:hover { color: #1a3868; }

/* ── INTRO SECTION ── */
.ip-intro-section { padding: 72px 0; background: #fff; }
.ip-intro-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}
.ip-checkpoints {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ip-checkpoints li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}
.ip-check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--gold-primary);
  color: #0a0a0a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  margin-top: 1px;
}
.ip-intro-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Visual card (right column) */
.ip-intro-visual {}
.ip-visual-card {
  background: linear-gradient(145deg, #0f2a52, #1a3868);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 60px rgba(26,56,104,0.25);
}
.ip-visual-icon { margin-bottom: 24px; display: flex; justify-content: center; }
.ip-visual-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
.ip-vs-item strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
}
.ip-vs-item span {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.3px;
}
.ip-visual-cta-text {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 16px;
}

/* ── FEATURES SECTION (Why Choose) ── */
.ip-features-section { padding: 72px 0; background: #f7f8fc; }
.ip-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ip-features-grid--3col { grid-template-columns: repeat(3, 1fr); }
.ip-feature-card {
  background: #fff;
  border: 1.5px solid #e8eaf0;
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.ip-feature-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.ip-feature-emoji { font-size: 2.2rem; display: block; margin-bottom: 14px; }
.ip-feature-title { font-size: 1rem; font-weight: 700; color: #1a1a1a; margin: 0 0 10px; }
.ip-feature-desc { font-size: 0.88rem; color: #666; line-height: 1.6; margin: 0; }

/* ── PROCESS SECTION ── */
.ip-process-section { padding: 72px 0; background: #fff; }
.ip-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.ip-process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 2px;
  background: linear-gradient(90deg, var(--gold-primary), #FFD700, var(--gold-primary));
  opacity: 0.3;
}
.ip-process-step { padding: 0 20px; text-align: center; position: relative; }
.ip-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: #0a0a0a;
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 18px;
  box-shadow: 0 6px 20px rgba(255,179,0,0.3);
  position: relative;
  z-index: 1;
}
.ip-step-title { font-size: 1rem; font-weight: 700; color: #1a1a1a; margin: 0 0 10px; }
.ip-step-desc { font-size: 0.87rem; color: #666; line-height: 1.6; margin: 0; }

/* ── STATS BAND ── */
.ip-stats-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #1a3868 100%);
  padding: 52px 0;
}
.ip-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.ip-stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.ip-stat-item:last-child { border-right: none; }
.ip-stat-number {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: 8px;
}
.ip-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
}

/* ── FAQ SECTION ── */
.ip-faq-section { padding: 72px 0; background: #f7f8fc; }
.ip-faq-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
}
.ip-faq-header { position: sticky; top: 100px; }
.ip-faq-header p { color: #666; line-height: 1.6; margin: 0 0 8px; font-size: 0.95rem; }
.ip-faq-list { display: flex; flex-direction: column; gap: 0; }
.ip-faq-item {
  border-bottom: 1px solid #e5e7eb;
}
.ip-faq-item:first-child { border-top: 1px solid #e5e7eb; }
.ip-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.97rem;
  font-weight: 600;
  color: #1a1a1a;
  text-align: left;
  gap: 12px;
  transition: color 0.15s;
}
.ip-faq-q:hover { color: #1a3868; }
.ip-faq-icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--gold-primary);
  transition: transform 0.2s;
}
.ip-faq-item.open .ip-faq-icon { transform: rotate(45deg); }
.ip-faq-a { padding: 0 0 18px; display: none; }
.ip-faq-item.open .ip-faq-a { display: block; }
.ip-faq-a p { font-size: 0.92rem; color: #555; line-height: 1.7; margin: 0; }

/* ── CTA SECTION ── */
.ip-cta-section {
  background: linear-gradient(135deg, #1a3868 0%, #0f2a52 100%);
  padding: 72px 0;
}
.ip-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.ip-cta-text h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.2;
}
.ip-cta-text p { color: rgba(255,255,255,0.7); margin: 0; font-size: 1rem; }
.ip-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── INDUSTRY: CHALLENGES ── */
.ip-challenges-section { padding: 72px 0; background: #fff; }
.ip-challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ip-challenge-card {
  background: #f7f8fc;
  border: 1.5px solid #e8eaf0;
  border-radius: 12px;
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ip-challenge-card:hover { border-color: #1a3868; box-shadow: 0 6px 24px rgba(26,56,104,0.08); }
.ip-challenge-emoji { font-size: 2rem; margin-bottom: 12px; display: block; }
.ip-challenge-card h3 { font-size: 1rem; font-weight: 700; color: #1a1a1a; margin: 0 0 10px; }
.ip-challenge-card p { font-size: 0.88rem; color: #666; line-height: 1.6; margin: 0; }

/* ── INDUSTRY: SOLUTIONS ── */
.ip-solutions-section { padding: 72px 0; background: #f7f8fc; }
.ip-solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.ip-solution-card {
  background: #fff;
  border: 1.5px solid #e8eaf0;
  border-radius: 12px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.ip-solution-card:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.ip-solution-icon { font-size: 2rem; }
.ip-solution-card h3 { font-size: 1rem; font-weight: 700; color: #1a1a1a; margin: 0; }
.ip-solution-card p { font-size: 0.87rem; color: #666; line-height: 1.6; margin: 0; flex: 1; }
.ip-card-link { font-size: 0.82rem; font-weight: 700; color: var(--gold-dark); letter-spacing: 0.3px; align-self: flex-start; }
.ip-card-link:hover { color: #1a3868; }

/* ── INDUSTRY: MORE INDUSTRIES ── */
.ip-more-section { padding: 56px 0; background: #fff; }
.ip-more-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}
.ip-more-tag {
  padding: 8px 20px;
  border: 1.5px solid #e0e2ea;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: #444;
  background: #fff;
  transition: all 0.18s;
}
.ip-more-tag:hover {
  border-color: var(--gold-primary);
  color: #1a3868;
  background: rgba(255,179,0,0.06);
}

/* ── GENERIC BLOCK ── */
.ip-generic-block { max-width: 700px; margin: 0 auto; text-align: center; padding: 40px 0; }

/* ============================================================
   ABOUT PAGE SECTIONS  (.ab-*)
   ============================================================ */

/* Testimonials */
.ab-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 40px;
}
.ab-testimonial-card {
  background: #fff;
  border: 1.5px solid #e8eaf0;
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ab-testimonial-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-2px); }
.ab-stars { color: #FFB300; font-size: 1.1rem; letter-spacing: 2px; }
.ab-testimonial-text { font-size: 0.95rem; color: #444; line-height: 1.7; flex: 1; font-style: italic; }
.ab-testimonial-author { display: flex; align-items: center; gap: 12px; }
.ab-author-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, #1a3868, #FFB300);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: #fff;
  flex-shrink: 0;
}
.ab-testimonial-author strong { display: block; font-size: 0.9rem; color: #1a1a1a; }
.ab-testimonial-author span { font-size: 0.78rem; color: #888; }

/* Team Grid */
.ab-team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 40px;
}
.ab-team-card {
  background: #fff;
  border: 1.5px solid #e8eaf0;
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.ab-team-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-2px); }
.ab-team-avatar { font-size: 2.8rem; margin-bottom: 14px; }
.ab-team-name { font-size: 1rem; font-weight: 700; color: #1a1a1a; margin: 0 0 6px; }
.ab-team-role { font-size: 0.87rem; color: #555; margin: 0 0 10px; }
.ab-team-dept {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  background: rgba(255,179,0,0.12);
  color: #b07d00;
  border-radius: 100px;
}

/* Jobs List */
.ab-jobs-list { display: flex; flex-direction: column; gap: 16px; padding-top: 40px; }
.ab-job-card {
  background: #fff;
  border: 1.5px solid #e8eaf0;
  border-radius: 12px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ab-job-card:hover { border-color: var(--gold-primary); box-shadow: 0 4px 16px rgba(0,0,0,0.07); }
.ab-job-title { font-size: 1rem; font-weight: 700; color: #1a1a1a; margin: 0 0 8px; }
.ab-job-meta { display: flex; flex-wrap: wrap; gap: 12px; font-size: 0.83rem; color: #666; }
.ab-job-meta span { display: flex; align-items: center; gap: 4px; }
.ab-apply-btn { flex-shrink: 0; white-space: nowrap; }

/* Policy pages */
.ab-policy-wrap { max-width: 800px; margin: 0 auto; }
.ab-policy-body { margin-top: 32px; }
.ab-policy-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 28px 0 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid #f0f0f0;
}
.ab-policy-body p { font-size: 0.93rem; color: #444; line-height: 1.8; margin: 0 0 14px; }
.ab-policy-body ul { padding-left: 20px; margin: 0 0 14px; }
.ab-policy-body li { font-size: 0.93rem; color: #444; line-height: 1.8; margin-bottom: 6px; }

/* ============================================================
   OUR WORK SECTIONS  (.wk-*)
   ============================================================ */

/* Case Studies Grid */
.wk-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 40px;
}
.wk-case-card {
  background: #fff;
  border: 1.5px solid #e8eaf0;
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.wk-case-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.1); transform: translateY(-3px); }
.wk-case-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  align-self: flex-start;
}
.wk-case-metric {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
}
.wk-case-compare { display: flex; align-items: center; gap: 10px; }
.wk-compare-item { display: flex; flex-direction: column; gap: 2px; }
.wk-compare-label { font-size: 0.72rem; color: #999; text-transform: uppercase; letter-spacing: 1px; }
.wk-compare-val { font-size: 0.87rem; color: #444; font-weight: 500; }
.wk-after { color: #0f6e3f; font-weight: 700; }
.wk-compare-arrow { font-size: 1.1rem; color: var(--gold-primary); font-weight: 700; flex-shrink: 0; }
.wk-case-client { font-size: 0.85rem; color: #777; margin: 0; }
.wk-case-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.wk-tag {
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 10px;
  background: #f0f2f8;
  color: #555;
  border-radius: 100px;
}
.wk-time-tag { background: rgba(255,179,0,0.1); color: #b07d00; }

/* Portfolio Grid */
.wk-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 40px;
}
.wk-portfolio-card {
  background: #fff;
  border: 1.5px solid #e8eaf0;
  border-radius: 14px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.wk-portfolio-card:hover { box-shadow: 0 10px 36px rgba(0,0,0,0.1); transform: translateY(-3px); }
.wk-portfolio-preview {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.wk-portfolio-icon { opacity: 0.7; }
.wk-portfolio-info { padding: 20px; }
.wk-portfolio-cat { font-size: 0.75rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.wk-portfolio-name { font-size: 1rem; font-weight: 700; color: #1a1a1a; margin: 6px 0 4px; }
.wk-portfolio-type { font-size: 0.85rem; color: #777; margin: 0 0 12px; }
.wk-portfolio-result { font-size: 0.87rem; color: #0f6e3f; font-weight: 600; margin: 0; }

/* Blog Grid */
.wk-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 40px;
}
.wk-blog-card {
  background: #fff;
  border: 1.5px solid #e8eaf0;
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.wk-blog-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-2px); }
.wk-blog-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.wk-blog-title { font-size: 1rem; font-weight: 700; color: #1a1a1a; line-height: 1.4; flex: 1; margin: 0; }
.wk-blog-meta { font-size: 0.8rem; color: #999; }
.wk-blog-read { font-size: 0.87rem; font-weight: 700; color: #1a3868; align-self: flex-start; }
.wk-blog-read:hover { color: var(--gold-dark); }

/* ============================================================
   CONTACT PAGE  (.ct-*)
   ============================================================ */

.ct-contact-section {
  padding: 72px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #1a3868 100%);
}
.ct-contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
}

/* Info Panel */
.ct-info-panel { padding-top: 8px; }
.ct-contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 28px; }
.ct-contact-item { display: flex; align-items: flex-start; gap: 16px; }
.ct-contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.ct-contact-label { font-size: 0.78rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.ct-contact-val { font-size: 0.97rem; color: rgba(255,255,255,0.85); font-weight: 500; }
a.ct-contact-val:hover { color: var(--gold-primary); }
.ct-response-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  width: fit-content;
}
.ct-response-badge strong { color: #fff; }
.ct-response-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 6px #22c55e;
  flex-shrink: 0;
}

/* Form Panel */
.ct-form-panel {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.ct-form-title { font-size: 1.3rem; font-weight: 800; color: #1a1a1a; margin: 0 0 6px; }
.ct-form-sub { font-size: 0.9rem; color: #666; margin: 0 0 28px; }
.ct-form { display: flex; flex-direction: column; gap: 16px; }
.ct-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ct-field { display: flex; flex-direction: column; gap: 6px; }
.ct-field-full { grid-column: 1 / -1; }
.ct-field label { font-size: 0.83rem; font-weight: 600; color: #333; }
.ct-field input,
.ct-field select,
.ct-field textarea {
  padding: 12px 16px;
  border: 1.5px solid #e0e2ea;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #1a1a1a;
  background: #fff;
  transition: border-color 0.18s, box-shadow 0.18s;
  font-family: inherit;
  width: 100%;
  box-sizing: border-box;
}
.ct-field input:focus,
.ct-field select:focus,
.ct-field textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 3px rgba(255,179,0,0.12);
}
.ct-field textarea { resize: vertical; min-height: 100px; }
.ct-submit-btn {
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  font-size: 1rem;
}
.ct-form-note { font-size: 0.8rem; color: #888; text-align: center; margin: 0; }

/* Contact form response message */
.ct-form-msg { margin-top: 14px; padding: 12px 16px; border-radius: 6px; font-size: 0.95rem; font-weight: 500; display: none; }
.ct-form-msg:not(:empty) { display: block; }
.ct-form-success { background: rgba(34,197,94,0.12); border: 1px solid rgba(34,197,94,0.4); color: #22c55e; }
.ct-form-error   { background: rgba(239,68,68,0.12);  border: 1px solid rgba(239,68,68,0.4);  color: #ef4444; }
