/* ============================================
   DEFCAL — ELITE & BRIGHT DEFENSE THEME
   Next-Gen Aerospace Calibration Platform
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
  --gold: #6B7C3C;
  --gold-light: #8A9B56;
  --gold-glow: rgba(107, 124, 60, 0.15);
  --gold-border: rgba(107, 124, 60, 0.3);
  --white: #ffffff;
  --bg-primary: #ffffff;
  --bg-secondary: #f6f8f3;
  --bg-tertiary: #eef2e8;
  --bg-card: rgba(255, 255, 255, 0.8);
  --text-primary: #1A2410;
  --text-secondary: #2D3B22;
  --text-muted: #5B6B48;
  --text-light: #8B9B78;
  --border: #d2dcc5;
  --border-light: #eef2e8;
  --navy: #1A2410;
  --navy-light: #28331C;
  --glass: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.5);
  --shadow-sm: 0 1px 3px rgba(26, 36, 16, 0.04);
  --shadow: 0 4px 20px rgba(26, 36, 16, 0.06);
  --shadow-lg: 0 12px 40px rgba(26, 36, 16, 0.08);
  --shadow-xl: 0 20px 60px rgba(26, 36, 16, 0.1);
  --shadow-gold: 0 8px 30px rgba(107, 124, 60, 0.2);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}

/* ---------- Global Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg-primary);
  color: var(--text-secondary);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
}

/* ---------- Blueprint Grid Background ---------- */
.blueprint-bg {
  position: relative;
}

.blueprint-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(var(--gold) 1px, transparent 1px),
    linear-gradient(90deg, var(--gold) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.blueprint-bg-dense::before {
  background-size: 40px 40px;
  opacity: 0.025;
}

/* ---------- Topographic Overlay ---------- */
.topo-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 200 Q100 150 200 200 T400 200' fill='none' stroke='%236B7C3C' stroke-width='0.5'/%3E%3Cpath d='M0 180 Q100 130 200 180 T400 180' fill='none' stroke='%236B7C3C' stroke-width='0.5'/%3E%3Cpath d='M0 220 Q100 170 200 220 T400 220' fill='none' stroke='%236B7C3C' stroke-width='0.5'/%3E%3Cpath d='M0 160 Q100 110 200 160 T400 160' fill='none' stroke='%236B7C3C' stroke-width='0.5'/%3E%3Cpath d='M0 240 Q100 190 200 240 T400 240' fill='none' stroke='%236B7C3C' stroke-width='0.5'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ---------- Section Layout ---------- */
.section-padding {
  padding: 95px 0;
  position: relative;
}

.section-padding>.container {
  position: relative;
  z-index: 1;
}

/* ---------- Section Divider — Technical Line ---------- */
.tech-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.tech-divider .line {
  height: 1px;
  width: 40px;
  background: var(--gold);
}

.tech-divider .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- Section Header ---------- */
.section-header {
  margin-bottom: 80px;
}

.section-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-header .section-label .bracket {
  color: var(--gold-light);
  font-weight: 300;
  font-size: 1rem;
}

.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-header h2 .gold {
  color: var(--gold);
}

.section-header p {
  color: var(--text-muted);
  max-width: 560px;
  font-size: 1.05rem;
  margin-top: 18px;
  line-height: 1.8;
}

.section-header.text-center p {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- HUD Corner Brackets ---------- */
.hud-card {
  position: relative;
}

.hud-card::before,
.hud-card::after,
.hud-card .hud-bl,
.hud-card .hud-br {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: var(--gold-border);
  border-style: solid;
  border-width: 0;
  transition: var(--transition);
  pointer-events: none;
  z-index: 2;
}

.hud-card::before {
  top: -1px;
  left: -1px;
  border-top-width: 2px;
  border-left-width: 2px;
}

.hud-card::after {
  top: -1px;
  right: -1px;
  border-top-width: 2px;
  border-right-width: 2px;
}

.hud-card .hud-bl {
  bottom: -1px;
  left: -1px;
  border-bottom-width: 2px;
  border-left-width: 2px;
}

.hud-card .hud-br {
  bottom: -1px;
  right: -1px;
  border-bottom-width: 2px;
  border-right-width: 2px;
}

.hud-card:hover::before,
.hud-card:hover::after,
.hud-card:hover .hud-bl,
.hud-card:hover .hud-br {
  border-color: var(--gold);
  width: 28px;
  height: 28px;
}

/* ---------- Buttons ---------- */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  overflow: hidden;
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  opacity: 0;
  transition: var(--transition);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  color: var(--white);
}

.btn-gold:hover::before {
  opacity: 1;
}

.btn-gold span,
.btn-gold i {
  position: relative;
  z-index: 1;
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.88rem;
  border: 2px solid var(--gold-border);
  border-radius: 3px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--navy);
  padding: 5px 0;
  font-size: 0.82rem;
  position: relative;
  z-index: 1001;
}

.top-bar .topbar-lang-container {
  gap: 5px;
  display: flex;
}

.top-bar .topbar-lang-btn img {
  width: 28px;
  height: 28px;
  border-radius: 100%;
  display: block;
}

.top-bar a,
.top-bar span {
  color: rgba(255, 255, 255, 0.7);
}

.top-bar a:hover {
  color: var(--gold-light);
}

.top-bar i {
  color: white;
  margin-right: 6px;
}

.top-bar a {
  color: white;
}

.top-bar-label {
  font-size: 0.78rem;
  letter-spacing: 1px;
}

.top-bar .social-links a {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-left: 6px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}

.top-bar .social-links a:hover {
  background: var(--gold);
}

.top-bar .social-links a i {
  margin-right: 0px;
}

.top-bar .social-links a:hover i {
  color: white;
}

/* ---------- NAVBAR ---------- */
.navbar-nav {
  align-items: center;
}

.navbar-brand .header-logo {
  max-width: 170px;
}

.navbar-nav .btn-gold::before {
  z-index: -1;
}

.navbar-main {
  background: var(--glass);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  z-index: 1000;
}

.navbar-main.scrolled {
  padding: 0px 0;
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.95);
}

.navbar-main.scrolled .navbar-brand .header-logo {
  max-width: 130px;
}

.navbar-main.scrolled .btn-gold {
  padding: 11px 36px;
}

.navbar-brand-custom {
  display: flex;
  align-items: center;
  gap: 14px;
}

.navbar-brand-custom .brand-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 1px;
  position: relative;
}

.navbar-brand-custom .brand-icon::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1px solid var(--gold-border);
  border-radius: calc(var(--radius-sm) + 3px);
}

.navbar-brand-custom .brand-text h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
  letter-spacing: 2px;
}

.navbar-brand-custom .brand-text span {
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
}

.navbar-main .nav-link {
  color: var(--text-secondary) !important;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 15px !important;
  position: relative;
  transition: var(--transition);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.navbar-main .nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: var(--transition);
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
  color: var(--gold) !important;
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
  transform: scaleX(1);
}

/* ---------- MOBILE MENU TOGGLE (HAMBURGER) ---------- */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: transparent;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  border-color: var(--gold-border);
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- MOBILE MENU OVERLAY ---------- */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 36, 16, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ---------- MOBILE MENU PANEL ---------- */
.mobile-menu-panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  height: 100%;
  background: var(--white);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.mobile-menu-panel.is-open {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.mobile-menu-logo img {
  max-height: 40px;
  width: auto;
}

.mobile-menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: transparent;
  color: var(--text-secondary);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-menu-close:hover {
  border-color: var(--gold-border);
  color: var(--gold);
}

/* ---------- MOBILE NAV LIST ---------- */
.mobile-menu-nav {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 16px 0;
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li {
  border-bottom: 1px solid var(--border-light);
}

.mobile-nav-list li a {
  display: flex;
  align-items: center;
  padding: 14px 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.mobile-nav-list li a:hover,
.mobile-nav-list li.current-menu-item>a,
.mobile-nav-list li.current_page_item>a {
  color: var(--gold);
  background: var(--gold-glow);
  padding-left: 28px;
}

.mobile-nav-list li.current-menu-item>a::before,
.mobile-nav-list li.current_page_item>a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
}

.mobile-nav-list li {
  position: relative;
}

.mobile-nav-list .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background: var(--bg-secondary);
}

.mobile-nav-list .sub-menu li a {
  padding-left: 40px;
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: none;
}

/* ---------- MOBILE MENU FOOTER ---------- */
.mobile-menu-footer {
  flex-shrink: 0;
  padding: 20px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.mobile-menu-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.mobile-menu-contact a i {
  color: var(--gold);
  font-size: 0.95rem;
  width: 18px;
  text-align: center;
}

.mobile-menu-contact a:hover {
  color: var(--gold);
}

.mobile-menu-social {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}

.mobile-menu-social a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.mobile-menu-social a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.mobile-menu-lang {
  display: flex;
  gap: 10px;
}

.mobile-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition-fast);
}

.mobile-lang-btn img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.mobile-lang-btn:hover {
  border-color: var(--gold-border);
  color: var(--gold);
}

/* Body scroll lock */
body.mobile-menu-open {
  overflow: hidden;
}

/* ---------- HERO SECTION ---------- */
.hero-section {
  position: relative;
  min-height: calc(100vh - 138px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 40px;
}

.hero-section .slider-img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  filter: brightness(0.4);
  transition: 0.3s;
  object-fit: cover;
  position: absolute;
  display: block;
}

.hero-grid-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(107, 124, 60, 0.4);
  top: 0;
  left: 0;
  display: block;
  position: absolute;
}

.hero-grid-overlay::before {
  content: '';
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(107, 124, 60, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 124, 60, 0.4) 1px, transparent 1px);
  background-size: 100px 100px;
  pointer-events: none;
  position: absolute;
}

.hero-topo-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-topo-lines svg {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.08;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.hero-meta .status-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: status-blink 2s ease-in-out infinite;
}

@keyframes status-blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 4.2rem;
  font-weight: 800;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}

.hero-content h2 .gold-text {
  background: linear-gradient(135deg, var(--gold-light), #a8bc6e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .hero-desc {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.9;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-section .btn-outline-gold {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-section .btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* Hero Stats Bar */
.hero-stats-bar {
  display: flex;
  gap: 50px;
  margin-top: 70px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stat-item {
  position: relative;
  padding-left: 20px;
}

.hero-stat-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  border-radius: 3px;
}

.hero-stat-item h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 2px;
  line-height: 1;
}

.hero-stat-item p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}

/* Hero Visual — Shield */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-shield {
  width: 420px;
  height: 420px;
  position: relative;
}

.shield-ring {
  position: absolute;
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  animation: rotate-ring 25s linear infinite;
}

.shield-ring:nth-child(1) {
  inset: 0;
  border-width: 2px;
}

.shield-ring:nth-child(2) {
  inset: 35px;
  animation-direction: reverse;
  animation-duration: 18s;
  border-color: rgba(107, 124, 60, 0.3);
}

.shield-ring:nth-child(3) {
  inset: 70px;
  animation-duration: 30s;
}

.shield-ring::before {
  content: '';
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  top: -6px;
  left: 50%;
  box-shadow: 0 0 20px rgba(107, 124, 60, 0.4);
}

@keyframes rotate-ring {
  to {
    transform: rotate(360deg);
  }
}

.shield-center {
  position: absolute;
  inset: 105px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(20px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 2px solid rgba(107, 124, 60, 0.4);
  box-shadow: 0 0 60px rgba(107, 124, 60, 0.15);
}

.shield-center i {
  font-size: 3.2rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.shield-center span {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 700;
}

/* Hero Technical Metadata Sidebar */
.hero-tech-meta {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 3;
}

.tech-meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xs);
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.tech-meta-item i {
  color: var(--gold);
  font-size: 0.85rem;
}

/* ---------- SERVICES ---------- */
.services-section {
  background: var(--bg-secondary);
  position: relative;
}

.services-section .background-img {
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.1;
  object-fit: cover;
  display: block;
  position: absolute;
}

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 48px 36px;
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: visible;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-border);
}

.service-card .service-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 28px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border-color: var(--gold);
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
}

.service-card:hover .service-icon img{
  filter: brightness(0) invert(1);
}

.service-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card .card-index {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 2px;
}

/* ---------- ABOUT ---------- */
.about-section {
  background: var(--bg-primary);
}

.about-image-wrapper {
  position: relative;
  overflow: visible;
}

.about-image-placeholder {
  width: 100%;
  padding: 1px;
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.about-image-placeholder i {
  font-size: 4.5rem;
  color: var(--gold);
  opacity: 0.3;
}

.about-image-placeholder span {
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about-image-placeholder img {
  width: 100%;
  display: block;
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  padding: 24px 36px;
  border-radius: 3px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about-badge h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

.about-badge p {
  margin: 0;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.about-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.about-content>p {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
  padding: 12px 16px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.about-features li:hover {
  border-color: var(--gold-border);
  background: var(--gold-glow);
}

.about-features li i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: -2px;
  flex-shrink: 0;
}

/* ---------- ADVANTAGES ---------- */
.advantages-section {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.advantages-section .background-img {
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.05;
  object-fit: cover;
  display: block;
  position: absolute;
}

.advantages-section .section-header h2 {
  color: var(--white);
}

.advantages-section .section-header p {
  color: rgba(255, 255, 255, 0.5);
}

.advantages-section .section-header .section-label {
  color: var(--gold-light);
}

.advantages-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(107, 124, 60, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 124, 60, 0.5) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 44px 32px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  backdrop-filter: blur(10px);
}

.advantage-card:hover {
  border-color: var(--gold-border);
  background: rgba(107, 124, 60, 0.06);
  transform: translateY(-4px);
}

.advantage-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(180deg, rgba(107, 124, 60, 0.25) 0%, rgba(107, 124, 60, 0.05) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
}

.advantage-card h5 {
  font-family: 'Outfit', sans-serif;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.advantage-card p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.7;
}

/* ---------- CERTIFICATIONS ---------- */
.certifications-section {
  background: var(--bg-primary);
}

.cert-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  transition: var(--transition);
  height: 100%;
}

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

.cert-icon {
  width: 64px;
  height: 64px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  flex-shrink: 0;
}

.cert-card h5 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.cert-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
  line-height: 1.6;
}

/* ---------- REFERENCES MARQUEE ---------- */
.references-section {
  background: var(--bg-secondary);
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 40px;
  animation: marquee 35s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.ref-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: var(--transition);
}

.ref-item:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow);
}

.ref-item i {
  font-size: 1.4rem;
  color: var(--gold);
}

.ref-item span {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta-section .background-img {
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.1;
  object-fit: cover;
  display: block;
  position: absolute;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(107, 124, 60, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(107, 124, 60, 0.5) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.cta-section .btn-outline-gold {
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.2);
}

.cta-section .btn-outline-gold:hover {
  color: white !important;
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* ---------- CONTACT ---------- */
.contact-section {
  background: var(--bg-secondary);
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
  height: 100%;
}

.contact-info-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow);
}

.contact-info-card .icon {
  width: 56px;
  height: 56px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-info-card h5 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1rem;
}

.contact-info-card p,
.contact-info-card a {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.7;
}

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

/* Contact Form */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 48px;
}

.contact-form-title {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.3rem;
}

.contact-form .form-control,
.contact-form .form-select {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 14px 20px;
  border-radius: var(--radius-xs);
  font-size: 0.92rem;
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-glow);
  background: var(--white);
  color: var(--text-primary);
}

.contact-form .form-control::placeholder {
  color: var(--text-light);
}

.contact-form .form-select option {
  background: var(--white);
  color: var(--text-primary);
}

.contact-form label {
  color: var(--text-secondary);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Contact Secure Panel */
.contact-secure-panel {
  text-align: center;
}

.contact-secure-panel .secure-icon {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
  margin-bottom: 20px;
}

.contact-secure-panel h5 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-secure-panel p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.contact-secure-panel hr {
  border-color: var(--border);
  margin: 24px 0;
}

.contact-secure-panel .emergency-text {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

.contact-secure-panel .emergency-text i {
  color: var(--gold);
}

.contact-secure-panel .emergency-text a {
  color: var(--gold);
  font-weight: 700;
}

/* ---------- BLOG ---------- */
.blog-section {
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.blog-section .background-img {
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0.1;
  object-fit: cover;
  display: block;
  position: absolute;
}

.blog-section .section-header h2 {
  color: var(--text-primary);
}

.blog-section .section-header p {
  color: var(--text-muted);
}

.blog-section .section-header .section-label {
  color: var(--gold);
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.blog-card:hover {
  border-color: var(--gold-border);
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
  filter: brightness(0.85);
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.05);
  filter: brightness(0.95);
}

.blog-card-category {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
}

.blog-card-body {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
}

.blog-card-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.blog-card-meta span i {
  color: var(--gold);
  font-size: 0.8rem;
}

.blog-card-body .blog-title {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 14px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  transition: var(--transition);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card:hover .blog-card-body .blog-title {
  color: var(--gold);
}

.blog-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0 0 20px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  margin-top: auto;
}

.blog-card-link i {
  transition: var(--transition);
}

.blog-card-link:hover {
  color: var(--gold-light);
}

.blog-card-link:hover i {
  transform: translateX(4px);
}

/* ---------- PAGE BANNER ---------- */
.page-banner {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}

.page-banner .background-img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  filter: brightness(0.35);
  object-fit: cover;
  position: absolute;
  display: block;
}

.page-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(107, 124, 60, 0.4);
  pointer-events: none;
}

.page-banner .container {
  position: relative;
  z-index: 2;
}

.page-banner h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.page-banner h1 .gold-text {
  background: linear-gradient(135deg, var(--gold-light), #a8bc6e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-custom li {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.breadcrumb-custom li a {
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-custom li a:hover {
  color: var(--gold-light);
}

.breadcrumb-custom .separator {
  margin: 0 10px;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

/* ---------- SIDEBAR ---------- */
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 32px;
  margin-bottom: 24px;
  position: relative;
}

.sidebar-widget-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
}

.sidebar-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-services-list li {
  margin-bottom: 4px;
}

.sidebar-services-list li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
  border-left: 3px solid transparent;
}

.sidebar-services-list li a i {
  color: var(--gold);
  font-size: 0.85rem;
}

.sidebar-services-list li a:hover,
.sidebar-services-list li.active a {
  background: var(--gold-glow);
  border-left-color: var(--gold);
  color: var(--gold);
}

.sidebar-posts-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-post-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.sidebar-post-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-post-item:first-child {
  padding-top: 0;
}

.sidebar-post-item img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: var(--radius-xs);
  flex-shrink: 0;
}

.sidebar-post-item h6 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 6px;
  line-height: 1.4;
  transition: var(--transition);
}

.sidebar-post-item a:hover h6 {
  color: var(--gold);
}

.sidebar-post-item span {
  font-size: 0.75rem;
  color: var(--text-light);
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 32px;
  text-align: center;
  margin-bottom: 24px;
}

.sidebar-cta h5 {
  font-family: 'Outfit', sans-serif;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}

.sidebar-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.88rem;
  margin-bottom: 20px;
  line-height: 1.6;
}

.sidebar-cta .btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--white);
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  border-radius: 3px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sidebar-cta .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ---------- WP CONTENT ---------- */
.wp-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text-secondary);
}

.wp-content h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 40px 0 20px;
  letter-spacing: -0.02em;
}

.wp-content h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 36px 0 18px;
  letter-spacing: -0.01em;
}

.wp-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 32px 0 16px;
}

.wp-content h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 28px 0 14px;
}

.wp-content h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 24px 0 12px;
}

.wp-content h6 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 20px 0 10px;
}

.wp-content p {
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.wp-content>*:first-child {
  margin-top: 0;
}

.wp-content ul,
.wp-content ol {
  padding-left: 24px;
  margin-bottom: 24px;
}

.wp-content li {
  margin-bottom: 8px;
  padding-left: 6px;
}

.wp-content ul li::marker {
  color: var(--gold);
}

.wp-content ol li::marker {
  color: var(--gold);
  font-weight: 700;
}

.wp-content blockquote {
  border-left: 4px solid var(--gold);
  background: var(--bg-secondary);
  padding: 24px 28px;
  margin: 28px 0;
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.8;
}

.wp-content blockquote p:last-child {
  margin-bottom: 0;
}

.wp-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.95rem;
}

.wp-content table th {
  background: var(--navy);
  color: var(--white);
  padding: 14px 18px;
  text-align: left;
  font-weight: 600;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wp-content table td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
}

.wp-content table tr:hover td {
  background: var(--bg-secondary);
}

.wp-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-xs);
  margin: 20px 0;
}

.wp-content figure {
  margin: 28px 0;
}

.wp-content figcaption {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 10px;
  font-style: italic;
}

.wp-content a {
  color: var(--gold);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.wp-content a:hover {
  color: var(--gold-light);
}

.wp-content pre {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 24px;
  border-radius: var(--radius-xs);
  overflow-x: auto;
  margin: 24px 0;
  font-size: 0.88rem;
  line-height: 1.6;
}

.wp-content code {
  background: var(--bg-secondary);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.88em;
  color: var(--gold);
}

.wp-content pre code {
  background: none;
  padding: 0;
  color: inherit;
}

/* ---------- Yoast FAQ Accordion ---------- */
.yoast-faq-accordion {
  width: 100%;
}

.yoast-faq-accordion strong.schema-faq-question {
  display: none;
  /* Görsel/erişilebilir soru alanını buton üzerinden yönetiyoruz. */
}

.yoast-faq-accordion .schema-faq-section {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-sm);
  margin: 0 0 12px 0;
  overflow: hidden;
}

.yoast-faq-accordion .schema-faq-answer {
  display: none;
  /* Açık olana kadar kapalı. */
  margin: 0;
  padding: 0 18px 16px 18px;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.7;
}

.yoast-faq-item.is-open .schema-faq-answer {
  display: block;
}

.yoast-faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--text-primary);
  text-align: left;
}

.yoast-faq-toggle:focus-visible {
  outline: 2px solid var(--gold-border);
  outline-offset: 3px;
}

.yoast-faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-border);
  background: var(--gold-glow);
  color: var(--gold);
  transition: var(--transition-fast);
  flex: 0 0 auto;
}

.yoast-faq-item.is-open .yoast-faq-icon {
  transform: rotate(90deg);
}

.wp-content hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 36px 0;
}

/* ---------- ABOUT PAGE ---------- */
.vm-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 48px 36px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}

.vm-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold-border);
}

.vm-card .vm-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold);
  transition: var(--transition);
}

.vm-card:hover .vm-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.vm-card h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.vm-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ---------- CERTIFICATES PAGE ---------- */
.form-download-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
  height: 100%;
}

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

.form-download-card .form-icon {
  width: 56px;
  height: 56px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
}

.form-download-card .form-info {
  flex: 1;
}

.form-download-card .form-info h5 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 0.95rem;
}

.form-download-card .form-info p {
  color: var(--text-muted);
  font-size: 0.82rem;
  margin: 0;
}

.form-download-card .download-btn {
  width: 44px;
  height: 44px;
  background: var(--gold-glow);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.form-download-card:hover .download-btn {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ---------- REFERENCES PAGE ---------- */
.reference-grid-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 24px 24px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.reference-grid-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.reference-grid-card .ref-logo {
  width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.reference-grid-card .ref-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.reference-grid-card h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.reference-grid-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---------- BLOG DETAIL ---------- */
.blog-detail-featured {
  width: 100%;
  overflow: hidden;
  margin-bottom: 32px;
}

.blog-detail-featured img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.blog-detail-meta span i {
  color: var(--gold);
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 24px 0;
  margin-top: 32px;
  border-top: 1px solid var(--border);
}

.blog-share span {
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.9rem;
  margin-right: 4px;
}

.blog-share a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: var(--transition);
}

.blog-share a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ---------- CONTACT PAGE ---------- */
.map-wrapper {
  width: 100%;
  height: 400px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.info-table {
  width: 100%;
}

.info-table tr td {
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.92rem;
  color: var(--text-secondary);
  vertical-align: top;
}

.info-table tr:last-child td {
  border-bottom: none;
}

.info-table tr td:first-child {
  font-weight: 700;
  color: var(--text-primary);
  width: 35%;
  padding-right: 16px;
}

/* ---------- PAGINATION ---------- */
.pagination-custom {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 60px;
}

.pagination-custom a,
.pagination-custom span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.pagination-custom a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pagination-custom .active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border-color: var(--gold);
}

.pagination-custom .prev,
.pagination-custom .next {
  width: auto;
  padding: 0 20px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---------- FOOTER ---------- */
.footer-logo {
  max-width: 150px;
  margin-bottom: 10px;
}

.footer-main {
  background: var(--navy);
  border-top: none;
  padding: 80px 0 0;
}

.footer-brand .brand-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.footer-main h5 {
  font-family: 'Outfit', sans-serif;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 24px;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 1);
  font-size: 0.88rem;
  max-width: 300px;
  line-height: 1.7;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 1);
  transition: var(--transition);
  margin-right: 8px;
}

.footer-social-links a:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.footer-social-links a:hover i {
  color: white;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 1);
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a i {
  color: var(--gold-light);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  margin-top: 50px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  margin: 0;
}

/* ---------- BACK TO TOP ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* ---------- ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1199.98px) {
  .hero-tech-meta {
    display: none;
  }
}

@media (max-width: 991.98px) {
  /* Mobilde header her zaman fixed kalsın */
  body {
    padding-top: 78px;
  }

  .navbar-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1065;
  }

  .hero-content h2 {
    font-size: 3rem;
  }

  .hero-stats-bar {
    gap: 30px;
  }

  .hero-visual {
    margin-top: 50px;
  }

  .hero-shield {
    width: 300px;
    height: 300px;
  }

  .shield-center {
    inset: 80px;
  }

  .section-header h2 {
    font-size: 2.4rem;
  }

  .section-padding {
    padding: 80px 0;
  }

  /* mobile menu handled by .mobile-menu-panel */
  .about-badge {
    right: 10px;
    bottom: 15px;
  }

  .page-banner {
    padding: 140px 0 60px;
  }

  .page-banner h1 {
    font-size: 2.4rem;
  }

  .blog-detail-featured img {
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .top-bar .d-flex {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .hero-section {
    min-height: auto;
    padding: 100px 0 70px;
  }

  .hero-content h2 {
    font-size: 2.4rem;
  }

  .hero-stat-item h3 {
    font-size: 2rem;
  }

  .hero-stats-bar {
    gap: 20px;
    flex-wrap: wrap;
  }

  .hero-shield {
    width: 250px;
    height: 250px;
  }

  .shield-center {
    inset: 65px;
  }

  .shield-center i {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .section-padding {
    padding: 60px 0;
  }

  .section-header {
    margin-bottom: 50px;
  }

  .about-image-placeholder {
    height: 320px;
  }

  .about-badge {
    position: relative;
    right: 0;
    bottom: 0;
    display: inline-block;
    margin-top: 16px;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .contact-form {
    padding: 28px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-content .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-stats-bar {
    justify-content: center;
  }

  .hero-meta {
    margin-left: auto;
    margin-right: auto;
  }

  .page-banner {
    padding: 120px 0 50px;
  }

  .page-banner h1 {
    font-size: 2rem;
  }

  .blog-detail-featured img {
    height: 240px;
  }

  .sidebar-widget {
    padding: 24px;
  }

  .vm-card {
    padding: 36px 24px;
  }

  .map-wrapper {
    height: 300px;
  }

  .blog-detail-meta {
    gap: 12px;
  }

  .info-table tr td:first-child {
    width: 40%;
  }
}

@media (max-width: 575.98px) {
  .hero-content h2 {
    font-size: 1.9rem;
  }

  .btn-gold,
  .btn-outline-gold {
    padding: 14px 28px;
    font-size: 0.82rem;
  }

  .service-card {
    padding: 36px 24px;
  }

  .footer-main {
    padding: 50px 0 0;
  }

  .blog-card-img {
    height: 180px;
  }

  .blog-card-body {
    padding: 22px 20px 26px;
  }

  .blog-card-meta {
    flex-wrap: wrap;
    gap: 12px;
  }

  .page-banner h1 {
    font-size: 1.7rem;
  }

  .blog-detail-featured img {
    height: 200px;
  }

  .info-table tr td {
    font-size: 0.85rem;
  }

  .form-download-card {
    flex-wrap: wrap;
  }

  .form-download-card .download-btn {
    width: 100%;
    border-radius: 3px;
  }
}

.mobil-bottom-cta-group {
  display: none;
}

.whatsapp-btn {
  position: fixed;
  bottom: 90px;
  right: 30px;
  width: 50px;
  height: 50px;
  color: var(--white);
  background-color: rgb(34 197 94/1);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  z-index: 999;
}

@media (max-width: 767.98px) {
  body {
    padding-bottom: 35px;
  }

  .whatsapp-btn{
    display: none;
  }

  .mobil-bottom-cta-group {
    width: 100%;
    bottom: 0;
    margin: 0px;
    padding: 0px;
    z-index: 999;
    display: flex;
    position: fixed;
  }

  .mobil-bottom-cta-group li {
    width: 100%;
    display: block;
  }

  .mobil-bottom-cta-group li:first-child a {
    width: 100%;
    gap: 5px;
    font-size: 15px;
    font-weight: 700;
    color: white;
    padding: 5px;
    background-color: var(--gold);
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .mobil-bottom-cta-group li:first-child a .icon {
    font-size: 14px;
  }

  .mobil-bottom-cta-group li:last-child a {
    width: 100%;
    gap: 5px;
    font-size: 15px;
    font-weight: 700;
    color: white;
    padding: 5px;
    background-color: rgb(34 197 94/1);
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .navbar-brand .header-logo{
    max-width: 130px;
  }

  .navbar-main.scrolled .navbar-brand .header-logo{
    max-width: 100px;
  }
}