/* ==========================================================================
   JAGUAR SECURITY & MANAGEMENT - WORDPRESS-STYLE COMPONENT MODULES
   UI/UX Pro Max Architecture: Elementor-style Widgets & Responsive Layouts
   ========================================================================== */

/* ==========================================================================
   1. WordPress Full-Width Hero Banner & Floating Feature Badges
   ========================================================================== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 80px 0 100px 0;
  background: radial-gradient(circle at 50% 25%, rgba(212, 175, 55, 0.08) 0%, rgba(6, 9, 14, 0.98) 75%);
  overflow: hidden;
}

.hero-bg-visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  opacity: 0.24;
  object-fit: cover;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  margin-bottom: 20px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--wp-text-body);
  margin-bottom: 32px;
  max-width: 620px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Floating Trust Cards Bar (WordPress Elementor Style) */
.hero-floating-cards {
  position: relative;
  z-index: 2;
  margin-top: -50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trust-feature-card {
  background: rgba(15, 23, 38, 0.95);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: var(--wp-radius-lg);
  padding: 24px;
  box-shadow: var(--wp-shadow-lg);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: var(--wp-transition);
}

.trust-feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--wp-gold);
  box-shadow: var(--wp-shadow-gold), var(--wp-shadow-lg);
}

.trust-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--wp-radius-md);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--wp-gold);
  flex-shrink: 0;
}

.trust-feature-card h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.trust-feature-card p {
  font-size: 0.85rem;
  color: var(--wp-text-muted);
  line-height: 1.45;
  margin: 0;
}

/* ==========================================================================
   2. Client Logos / Trust Ribbon
   ========================================================================== */
.client-ribbon-section {
  background: #030508;
  border-top: 1px solid var(--wp-dark-border);
  border-bottom: 1px solid var(--wp-dark-border);
  padding: 30px 0;
}

.client-logos-grid {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 30px;
}

.client-logo-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--wp-text-muted);
  font-family: var(--wp-font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  opacity: 0.7;
  transition: var(--wp-transition);
}

.client-logo-item:hover {
  opacity: 1;
  color: var(--wp-gold);
  transform: scale(1.05);
}

.client-logo-item i {
  color: var(--wp-gold);
  font-size: 1.2rem;
}

/* ==========================================================================
   3. "About Us" Split Block with Experience Counter & MD Signature
   ========================================================================== */
.about-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 50px;
  align-items: center;
}

.about-image-collage {
  position: relative;
}

.about-main-img {
  width: 100%;
  border-radius: var(--wp-radius-xl);
  border: 1px solid var(--wp-dark-border);
  box-shadow: var(--wp-shadow-lg);
  display: block;
}

.about-exp-badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: linear-gradient(135deg, var(--wp-gold), var(--wp-gold-dark));
  color: #06090e;
  padding: 20px 26px;
  border-radius: var(--wp-radius-lg);
  box-shadow: var(--wp-shadow-lg);
  text-align: center;
}

.about-exp-badge .years {
  font-family: var(--wp-font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.about-exp-badge .label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-checklist {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 24px 0 32px 0;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--wp-text-main);
}

.about-checklist li i {
  color: var(--wp-gold);
}

.about-md-quote {
  border-left: 3px solid var(--wp-gold);
  padding: 12px 0 12px 20px;
  background: rgba(212, 175, 55, 0.04);
  border-radius: 0 var(--wp-radius-md) var(--wp-radius-md) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

/* ==========================================================================
   4. Icon Boxes Grid (WordPress 4-Column Feature Widgets)
   ========================================================================== */
.feature-boxes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.feature-box-card {
  background: var(--wp-dark-card);
  border: 1px solid var(--wp-dark-border);
  border-radius: var(--wp-radius-lg);
  padding: 30px 24px;
  transition: var(--wp-transition);
  position: relative;
  overflow: hidden;
}

.feature-box-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--wp-gold), transparent);
  opacity: 0;
  transition: var(--wp-transition);
}

.feature-box-card:hover {
  background: var(--wp-dark-card-hover);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-5px);
  box-shadow: var(--wp-shadow-gold), var(--wp-shadow-lg);
}

.feature-box-card:hover::before { opacity: 1; }

.feature-box-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--wp-radius-md);
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid rgba(212, 175, 55, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--wp-gold);
  margin-bottom: 20px;
}

.feature-box-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.feature-box-card p {
  font-size: 0.9rem;
  color: var(--wp-text-muted);
  line-height: 1.55;
  margin-bottom: 18px;
}

.feature-box-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--wp-gold);
}
.feature-box-link:hover { gap: 10px; }

/* ==========================================================================
   5. Interactive Service Tabs (WordPress Tabbed Content Widget)
   ========================================================================== */
.service-tabs-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.service-tab-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--wp-dark-border);
  color: var(--wp-text-body);
  padding: 12px 24px;
  border-radius: var(--wp-radius-full);
  font-family: var(--wp-font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--wp-transition);
}

.service-tab-btn:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  color: var(--wp-gold);
}

.service-tab-btn.active {
  background: linear-gradient(135deg, var(--wp-gold), var(--wp-gold-dark));
  color: #06090e;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.35);
}

.service-tab-pane {
  display: none;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.service-tab-pane.active {
  display: grid;
  animation: wpFadeIn 0.4s ease forwards;
}

@keyframes wpFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.service-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0 30px 0;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--wp-text-main);
}

.service-features-list li i { color: var(--wp-gold); }

.service-visual-box {
  position: relative;
  border-radius: var(--wp-radius-xl);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: var(--wp-shadow-lg);
  aspect-ratio: 4/3;
}

.service-visual-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-visual-box:hover img { transform: scale(1.05); }

/* ==========================================================================
   6. Interactive Manpower Calculator Module (Elementor Cost Estimator)
   ========================================================================== */
.calc-card {
  background: rgba(15, 23, 38, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--wp-radius-xl);
  padding: 38px;
  box-shadow: var(--wp-shadow-lg);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
}

.calc-input-group { margin-bottom: 24px; }

.calc-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--wp-text-main);
  margin-bottom: 10px;
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
  -webkit-appearance: none;
  accent-color: var(--wp-gold);
}

.calc-summary-panel {
  background: #070c14;
  border: 1px solid var(--wp-dark-border);
  border-radius: var(--wp-radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.calc-total-amount {
  font-family: var(--wp-font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--wp-gold);
  margin: 8px 0;
}

.calc-breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.86rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--wp-text-muted);
}

/* ==========================================================================
   7. Statutory Risk & Compliance Matrix
   ========================================================================== */
.compliance-matrix-wrapper {
  margin-top: 36px;
  overflow-x: auto;
  border-radius: var(--wp-radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(15, 23, 38, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: var(--wp-shadow-lg);
}

.compliance-comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  text-align: left;
}

.compliance-comparison-table thead th {
  padding: 22px 20px;
  vertical-align: top;
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.col-param { width: 25%; font-size: 1rem; font-weight: 700; color: #ffffff; }
.col-unorganized { width: 37%; }
.col-jaguar { width: 38%; position: relative; }

.col-header-inner.highlighted {
  background: rgba(212, 175, 55, 0.08);
  padding: 16px;
  border-radius: var(--wp-radius-md);
  border: 1px solid var(--wp-gold);
  position: relative;
}

.featured-tag {
  position: absolute;
  top: -10px;
  right: 16px;
  background: var(--wp-gold);
  color: #06090e;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 10px;
  border-radius: 20px;
}

.compliance-comparison-table tbody tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s ease;
}
.compliance-comparison-table tbody tr:hover { background: rgba(255, 255, 255, 0.02); }

.compliance-comparison-table tbody th.param-cell,
.compliance-comparison-table tbody td {
  padding: 18px 20px;
  vertical-align: top;
}

.param-title { font-size: 0.95rem; font-weight: 600; color: #f1f5f9; margin-bottom: 4px; }
.param-badge { font-size: 0.72rem; padding: 2px 8px; border-radius: 6px; background: rgba(255,255,255,0.05); color: var(--wp-text-muted); }

.cell-status { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; line-height: 1.5; }
.cell-status.danger { color: #fca5a5; }
.cell-status.success { color: #ffffff; }

.status-icon { flex-shrink: 0; margin-top: 3px; font-size: 1rem; }
.cell-status.danger .status-icon { color: #ef4444; }
.cell-status.success .status-icon { color: #22c55e; }

/* ==========================================================================
   8. C4i Telemetry Hub Widget (Hero Right)
   ========================================================================== */
.c4i-hero-card {
  background: rgba(11, 17, 26, 0.9);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--wp-radius-xl);
  padding: 28px;
  box-shadow: var(--wp-shadow-gold), var(--wp-shadow-lg);
  backdrop-filter: blur(16px);
}

.c4i-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--wp-dark-border);
}

.c4i-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--wp-emerald);
  background: var(--wp-emerald-bg);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wp-emerald);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.c4i-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.c4i-metric-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--wp-dark-border);
  border-radius: var(--wp-radius-md);
  padding: 12px 16px;
}

.c4i-metric-val {
  font-family: var(--wp-font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--wp-text-main);
}

.c4i-metric-lbl { font-size: 0.75rem; color: var(--wp-text-dim); }

.c4i-feed-box {
  background: #04070a;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--wp-radius-md);
  padding: 12px 14px;
  font-family: var(--wp-font-mono);
  font-size: 0.76rem;
  color: var(--wp-gold-hover);
  line-height: 1.5;
  height: 90px;
  overflow: hidden;
}

/* ==========================================================================
   9. Regional Office Network Grid
   ========================================================================== */
.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.network-card {
  background: var(--wp-dark-card);
  border: 1px solid var(--wp-dark-border);
  border-radius: var(--wp-radius-md);
  padding: 24px;
  transition: var(--wp-transition);
}

.network-card:hover {
  border-color: var(--wp-gold);
  transform: translateY(-3px);
  box-shadow: var(--wp-shadow-gold);
}

.state-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.state-header i { color: var(--wp-gold); font-size: 1.1rem; }
.state-header h4 { font-size: 1.1rem; color: var(--wp-text-main); }
.network-card .address { font-size: 0.88rem; color: var(--wp-text-muted); margin-bottom: 16px; line-height: 1.5; }
.network-card .spoc { font-size: 0.85rem; color: var(--wp-text-body); border-top: 1px solid rgba(255,255,255,0.05); padding-top: 12px; }

/* ==========================================================================
   10. Searchable FAQ Accordion (UI/UX Pro Max Architecture)
   ========================================================================== */
.faq-section {
  position: relative;
  background: radial-gradient(circle at 50% 10%, rgba(212, 175, 55, 0.05) 0%, transparent 60%),
              linear-gradient(180deg, var(--wp-dark-bg) 0%, #070c18 100%);
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.faq-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 20px;
}

.faq-search-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 40px;
}

.faq-search-box {
  width: 100%;
  max-width: 640px;
  position: relative;
}

.faq-search-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--wp-gold);
  font-size: 1rem;
  pointer-events: none;
  opacity: 0.85;
}

.faq-search-input {
  width: 100%;
  padding: 16px 48px 16px 52px;
  background: rgba(18, 26, 43, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--wp-radius-full);
  color: var(--wp-text-main);
  font-family: var(--wp-font-body);
  font-size: 0.96rem;
  outline: none;
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-search-input::placeholder {
  color: var(--wp-text-dim);
  font-size: 0.9rem;
}

.faq-search-input:focus {
  border-color: var(--wp-gold);
  background: rgba(18, 26, 43, 0.95);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2), 0 8px 32px rgba(0, 0, 0, 0.45);
}

.faq-search-clear {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: var(--wp-text-dim);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.faq-search-clear:hover {
  background: rgba(212, 175, 55, 0.2);
  color: var(--wp-text-main);
}

.faq-filter-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.faq-pill {
  padding: 8px 18px;
  background: rgba(18, 26, 43, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  color: var(--wp-text-dim);
  font-family: var(--wp-font-heading);
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-pill:hover {
  border-color: rgba(212, 175, 55, 0.4);
  color: var(--wp-text-main);
  background: rgba(212, 175, 55, 0.08);
  transform: translateY(-1px);
}

.faq-pill.active {
  background: linear-gradient(135deg, #d4af37 0%, #f3e5ab 100%);
  border-color: #d4af37;
  color: #070c18;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.35);
  transform: translateY(-1px);
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: linear-gradient(180deg, rgba(18, 26, 43, 0.85) 0%, rgba(11, 17, 32, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.faq-item.active {
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 10px 32px rgba(212, 175, 55, 0.12), 0 4px 20px rgba(0, 0, 0, 0.4);
}

.faq-question-btn {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  user-select: none;
}

.faq-num {
  font-family: var(--wp-font-mono, 'JetBrains Mono', monospace);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--wp-gold);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 6px;
  padding: 4px 9px;
  flex-shrink: 0;
  line-height: 1;
}

.faq-question-text {
  flex-grow: 1;
  font-family: var(--wp-font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--wp-text-main);
  line-height: 1.45;
  transition: color 0.2s ease;
}

.faq-item.active .faq-question-text {
  color: #ffffff;
}

.faq-chevron-wrap {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-chevron {
  color: var(--wp-gold);
  font-size: 0.85rem;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.active .faq-chevron-wrap {
  background: rgba(212, 175, 55, 0.18);
  border-color: rgba(212, 175, 55, 0.4);
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: #f3e5ab;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-answer-inner {
  padding: 0 24px 24px 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 2px;
  padding-top: 18px;
}

.faq-answer-inner p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 14px;
}

.faq-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.07);
}

.faq-tag {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--wp-gold);
  background: rgba(212, 175, 55, 0.08);
  padding: 3px 10px;
  border-radius: 4px;
  border: 1px solid rgba(212, 175, 55, 0.18);
}

.faq-verified-badge {
  font-size: 0.78rem;
  color: #10b981;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
}

.faq-empty-state {
  text-align: center;
  padding: 48px 24px;
  background: var(--wp-dark-card);
  border: 1px dashed rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  margin-top: 16px;
}

.faq-empty-icon {
  font-size: 2.2rem;
  color: var(--wp-gold);
  margin-bottom: 14px;
  opacity: 0.8;
}

.faq-empty-state h4 {
  font-family: var(--wp-font-heading);
  font-size: 1.25rem;
  color: var(--wp-text-main);
  margin-bottom: 8px;
}

.faq-empty-state p {
  color: var(--wp-text-muted);
  font-size: 0.92rem;
  margin-bottom: 18px;
}

.faq-help-card {
  margin-top: 48px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.09) 0%, rgba(18, 26, 43, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
}

.faq-help-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.faq-help-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp-gold);
  font-size: 1.4rem;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.faq-help-info h4 {
  font-family: var(--wp-font-heading);
  font-size: 1.15rem;
  color: var(--wp-text-main);
  margin-bottom: 4px;
  font-weight: 700;
}

.faq-help-info p {
  color: var(--wp-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

.faq-help-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .faq-section { padding: 60px 0; }
  .faq-question-btn { padding: 16px 18px; gap: 12px; }
  .faq-num { font-size: 0.78rem; padding: 3px 6px; }
  .faq-question-text { font-size: 0.95rem; }
  .faq-answer-inner { padding: 0 18px 20px 18px; }
  .faq-help-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 20px;
    gap: 20px;
  }
  .faq-help-left { gap: 14px; }
  .faq-help-actions {
    width: 100%;
    flex-direction: column;
    gap: 10px;
  }
  .faq-help-actions .btn { width: 100%; justify-content: center; }
}

/* ==========================================================================
   11. Contact Form Panels
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--wp-text-main);
  margin-bottom: 8px;
}

.input-custom, .select-custom, .textarea-custom {
  width: 100%;
  padding: 13px 16px;
  background: rgba(6, 9, 14, 0.8);
  border: 1px solid var(--wp-dark-border);
  border-radius: var(--wp-radius-md);
  color: var(--wp-text-main);
  font-family: var(--wp-font-body);
  font-size: 0.95rem;
  transition: var(--wp-transition);
  outline: none;
}

.input-custom:focus, .select-custom:focus, .textarea-custom:focus {
  border-color: var(--wp-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}

.textarea-custom { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-floating-cards { grid-template-columns: 1fr; margin-top: 20px; }
  .about-split-grid { grid-template-columns: 1fr; }
  .service-tab-pane { grid-template-columns: 1fr; }
  .calc-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 767px) {
  .about-checklist { grid-template-columns: 1fr; }
  .service-features-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   12. White Logo Card & Global Grid Alignment Systems (UI/UX Pro Max)
   ========================================================================== */
.site-container,
.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* Clean White Background for Brand Logos in Header & Footer */
.brand-logo-img,
.brand-logo img,
.footer-col .brand-logo img,
.brand-logo-card img {
  background: #ffffff !important;
  padding: 6px 14px !important;
  border-radius: 8px !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
  max-height: 46px !important;
  width: auto !important;
  object-fit: contain !important;
  display: inline-block !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-logo:hover img,
.brand-logo-card:hover img {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.25) !important;
}

/* Hero section grid */
.hero-section {
  padding: clamp(50px, 6vw, 80px) 0;
  position: relative;
  background: radial-gradient(circle at 50% 25%, rgba(212, 175, 55, 0.08) 0%, rgba(6, 9, 14, 0.98) 75%);
}

.hero-grid,
.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.stat-card {
  background: rgba(15, 23, 38, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.stat-num {
  font-family: var(--wp-font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--wp-gold);
  display: block;
  line-height: 1.2;
}

.stat-lbl {
  font-size: 0.76rem;
  color: var(--wp-text-muted);
  line-height: 1.3;
  margin-top: 4px;
  display: block;
}

.hero-visual { position: relative; }

.hero-image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6);
}

.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.floating-trust-badge,
.floating-response-badge {
  position: absolute;
  background: rgba(15, 23, 38, 0.92);
  border: 1px solid var(--wp-gold);
  border-radius: 10px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
}

.floating-trust-badge { top: 20px; left: -15px; }
.floating-response-badge { bottom: 20px; right: -15px; }

.floating-trust-badge .badge-icon,
.floating-response-badge .badge-icon {
  font-size: 1.4rem;
  color: var(--wp-gold);
}

.floating-trust-badge .badge-text strong,
.floating-response-badge .badge-text strong {
  display: block;
  font-size: 0.85rem;
  color: #ffffff;
}

.floating-trust-badge .badge-text span,
.floating-response-badge .badge-text span {
  font-size: 0.72rem;
  color: #8b949e;
}

/* 5 Services Cards Grid */
.services-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px;
  margin-top: 36px;
  align-items: stretch;
}

.service-card {
  background: rgba(15, 23, 38, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 28px 22px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(212, 175, 55, 0.15);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--wp-gold);
  margin-bottom: 18px;
}

.service-title {
  font-family: var(--wp-font-heading);
  font-size: 1.25rem;
  margin: 0 0 6px 0;
  color: #ffffff;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--wp-text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--wp-gold);
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  margin-top: 14px;
  transition: gap 0.2s ease;
}
.service-link:hover { gap: 12px; }

/* Service Detail Box (services.html) */
.service-detail-box {
  background: #161b22;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 16px;
  padding: 36px;
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 36px;
  align-items: center;
}

@media (max-width: 992px) {
  .service-detail-box {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }
}

/* Matrix Grid */
.matrix-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 24px;
  margin-top: 36px;
  align-items: stretch;
}

.matrix-card {
  background: rgba(15, 23, 38, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.matrix-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.matrix-icon {
  font-size: 1.3rem;
  color: var(--wp-gold);
}

.matrix-header h4 {
  margin: 0;
  font-size: 1.1rem;
  color: #ffffff;
}

.matrix-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.matrix-side {
  padding: 12px 14px;
  border-radius: 8px;
  flex: 1;
}

.matrix-side.unorganized {
  background: rgba(248, 81, 73, 0.08);
  border: 1px solid rgba(248, 81, 73, 0.2);
}

.matrix-side.jaguar {
  background: rgba(46, 160, 67, 0.08);
  border: 1px solid rgba(46, 160, 67, 0.25);
}

.matrix-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.tag-danger { color: #f85149; }
.tag-success { color: #3fb950; }

.matrix-side p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: #c9d1d9;
}

/* Team Leadership Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 24px;
  margin-top: 36px;
  align-items: stretch;
}

.team-card {
  background: linear-gradient(180deg, rgba(22, 27, 34, 0.92) 0%, rgba(13, 17, 23, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 32px 24px 28px;
  text-align: center;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.team-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--wp-gold), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6), 0 0 24px rgba(212, 175, 55, 0.12);
}

.team-card:hover::before {
  opacity: 1;
}

.team-icon-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(13, 17, 23, 0.9) 75%);
  border: 2px solid var(--wp-gold);
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.2), 0 0 0 4px rgba(212, 175, 55, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--wp-gold);
  margin: 0 auto 18px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease;
}

.team-card:hover .team-icon-avatar {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4), 0 0 0 6px rgba(212, 175, 55, 0.15);
}

.team-photo-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--wp-gold);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 0 4px rgba(212, 175, 55, 0.12);
  background: #090d13;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: transform;
}

.team-card:hover .team-photo-avatar {
  transform: scale(1.06);
  border-color: #f3e5ab;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7), 0 0 25px rgba(212, 175, 55, 0.45), 0 0 0 6px rgba(212, 175, 55, 0.2);
}

.team-photo-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  display: block;
}

.team-name {
  font-family: var(--wp-font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: #ffffff;
  letter-spacing: -0.2px;
}

.team-role {
  color: var(--wp-gold);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.team-cred {
  font-size: 0.76rem;
  color: #8b949e;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 14px;
  line-height: 1.4;
}

.team-bio {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #c9d1d9;
  margin: 0;
  flex-grow: 1;
}

/* Regional Offices Grid */
.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 20px;
  margin-top: 36px;
  align-items: stretch;
}

.office-card {
  background: rgba(15, 23, 38, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px 18px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.office-card:hover {
  border-color: rgba(212, 175, 55, 0.35);
  transform: translateY(-3px);
}

.office-state-badge {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.state-name {
  font-family: var(--wp-font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: #ffffff;
}

.office-address {
  font-size: 0.85rem;
  color: var(--wp-text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
  flex-grow: 1;
}

.office-spoc {
  font-size: 0.82rem;
  color: #c9d1d9;
  line-height: 1.6;
  background: rgba(0, 0, 0, 0.25);
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  margin-top: auto;
}

.office-spoc a {
  color: var(--wp-gold);
  text-decoration: none;
}

/* Mega Footer Styling */
.main-footer {
  background: #06090e;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  padding: 60px 0 20px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 32px;
  margin-bottom: 40px;
}

.footer-heading {
  font-family: var(--wp-font-heading);
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  background: var(--wp-gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: var(--wp-text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--wp-gold);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.88rem;
  color: var(--wp-text-muted);
}

.footer-contact-item a {
  color: #ffffff;
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: var(--wp-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
  color: #8b949e;
}

.footer-legal-links {
  display: flex;
  gap: 20px;
}

.footer-legal-links a {
  color: #8b949e;
  text-decoration: none;
}
.footer-legal-links a:hover {
  color: var(--wp-gold);
}

/* ==========================================================================
   Responsive Breakpoints: Desktop (>992px), Tablet (768px-992px), Mobile (<768px)
   ========================================================================== */
@media (max-width: 992px) {
  .hero-grid,
  .hero-container,
  .about-split-grid,
  .service-detail-box,
  .calc-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .hero-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}

@media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-floating-cards {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  
  .about-checklist,
  .service-features-list,
  .form-row,
  .about-badges-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-stats-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-cta-group .btn {
    width: 100%;
  }
}

/* ==========================================================================
   12b. Contact Form — Pro Max Obsidian Dark Theme
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.contact-form-card {
  background: linear-gradient(180deg, rgba(22, 27, 34, 0.92) 0%, rgba(13, 17, 23, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.06);
}

.contact-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--wp-gold), transparent);
  opacity: 0.6;
  transition: opacity 0.4s ease;
}

.contact-form-card:hover::before {
  opacity: 1;
}

/* Form fields */
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.cf-field {
  display: flex;
  flex-direction: column;
}

.cf-label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #c9d1d9;
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.cf-req {
  color: var(--wp-gold);
}

.cf-input {
  width: 100%;
  padding: 12px 14px;
  background: rgba(6, 9, 14, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #e6edf3;
  font-size: 0.92rem;
  font-family: var(--wp-font-body, inherit);
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  outline: none;
  box-sizing: border-box;
}

.cf-input::placeholder {
  color: rgba(139, 148, 158, 0.6);
}

.cf-input:focus {
  border-color: var(--wp-gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15), 0 4px 12px rgba(0, 0, 0, 0.3);
  background: rgba(6, 9, 14, 0.9);
}

.cf-input-valid {
  border-color: rgba(46, 160, 67, 0.5);
}

.cf-input-valid:focus {
  border-color: #3fb950;
  box-shadow: 0 0 0 3px rgba(46, 160, 67, 0.15), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cf-input-error {
  border-color: rgba(248, 81, 73, 0.5);
}

.cf-input-error:focus {
  border-color: #f85149;
  box-shadow: 0 0 0 3px rgba(248, 81, 73, 0.15), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.cf-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b949e' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.cf-select option {
  background: #0d1117;
  color: #e6edf3;
}

.cf-textarea {
  resize: vertical;
  min-height: 100px;
  max-height: 240px;
}

.cf-error {
  font-size: 0.76rem;
  color: #f85149;
  margin-top: 4px;
  min-height: 16px;
  line-height: 1.3;
}

/* Contact info cards */
.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(22, 27, 34, 0.85) 0%, rgba(13, 17, 23, 0.95) 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.contact-info-card:hover {
  border-color: rgba(212, 175, 55, 0.25);
  transform: translateX(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(212, 175, 55, 0.08);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(212, 175, 55, 0.03));
  border: 1px solid rgba(212, 175, 55, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp-gold);
  font-size: 1rem;
}

.contact-info-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--wp-text-muted, #8b949e);
  margin-bottom: 3px;
}

.contact-info-value {
  display: block;
  color: #e6edf3;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

a.contact-info-value:hover {
  color: var(--wp-gold);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 600px) {
  .cf-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .contact-form-card {
    padding: 24px 18px;
    border-radius: 14px;
  }
}

/* ==========================================================================
   13. Multi-Image Auto-Swiper Carousel for Service Verticals (UI/UX Pro Max)
   ========================================================================== */
.service-carousel {
  position: relative;
  width: 100%;
  height: 320px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  background: #090d13;
  user-select: none;
}

.service-card .service-carousel {
  height: 220px;
  margin-bottom: 18px;
}

.service-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.65s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.service-carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.service-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.carousel-counter-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(6, 9, 14, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.72rem;
  color: var(--wp-gold);
  font-weight: 700;
  backdrop-filter: blur(8px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4px;
}

.carousel-counter-badge i {
  font-size: 0.68rem;
}

.service-carousel-nav {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  border: none;
  padding: 0;
}

.carousel-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.carousel-dot.active {
  width: 26px;
  background: var(--wp-gold);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(15, 23, 38, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: all 0.25s ease;
  font-size: 0.85rem;
}

.service-carousel:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: var(--wp-gold);
  color: #06090e;
  border-color: var(--wp-gold);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

/* Progress bar indicator */
.carousel-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--wp-gold);
  width: 0%;
  z-index: 11;
  transition: width 0.1s linear;
}
