/*
Theme Name:  Vader-Rey Recruiting
Theme URI:   https://vaderrey.com
Author:      Vader-Rey Recruiting and Consulting
Author URI:  https://vaderrey.com
Description: Official WordPress theme for Vader-Rey Recruiting and Consulting — Houston's Premier Recruiting Agency. Executive search services across Oil & Gas, Renewables, Construction, Finance, Medical, and Technology sectors.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vaderrey-recruit
Tags:        business, one-page, custom-colors, custom-menu, featured-images, full-width-template
*/

/* =====================================================
   VADER-REY RECRUITING — WordPress Theme Styles
   ===================================================== */

/* ── DESIGN TOKENS ─────────────────────────────────── */
:root {
  --vr-gold:        #E4B433;
  --vr-gold-hover:  #c9980e;
  --vr-dark:        #1a1a1a;
  --vr-dark-2:      #111111;
  --vr-dark-3:      #222222;
  --vr-mid:         #2d2d2d;
  --vr-light-gray:  #f5f5f5;
  --vr-text:        #444444;
  --vr-text-light:  #777777;
  --vr-white:       #ffffff;
  --vr-font-head:   'Montserrat', sans-serif;
  --vr-font-body:   'Open Sans', sans-serif;
  --vr-transition:  0.3s ease;
  --vr-radius:      12px;
  --vr-radius-lg:   20px;
  --vr-shadow:      0 8px 30px rgba(0,0,0,0.12);
  --vr-shadow-lg:   0 20px 60px rgba(0,0,0,0.18);
}

/* ── RESET & BASE ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--vr-font-body);
  color: var(--vr-text);
  background: var(--vr-white);
  overflow-x: hidden;
}

img { max-width: 100%; }

a { transition: color var(--vr-transition); }

/* ── UTILITY CLASSES ────────────────────────────────── */
.text-vr-gold  { color: var(--vr-gold) !important; }
.bg-vr-gold    { background-color: var(--vr-gold) !important; }
.z-1           { z-index: 1; }

/* ── TYPOGRAPHY ─────────────────────────────────────── */
.vr-section-label {
  font-family: var(--vr-font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--vr-gold);
  display: inline-block;
  position: relative;
}
.vr-section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--vr-gold);
  margin-top: 6px;
}
.vr-section-label.mx-auto::after { margin-left: auto; margin-right: auto; }

.vr-section-label-light {
  font-family: var(--vr-font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(228, 180, 51, 0.9);
  display: inline-block;
  position: relative;
}
.vr-section-label-light::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--vr-gold);
  margin-top: 6px;
  margin-left: auto;
  margin-right: auto;
}

.vr-section-title {
  font-family: var(--vr-font-head);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--vr-dark);
  line-height: 1.2;
}

.vr-section-title-lg {
  font-family: var(--vr-font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.1;
}

.vr-subheading {
  font-family: var(--vr-font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--vr-dark);
}

.vr-subheading-sm {
  font-family: var(--vr-font-head);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--vr-dark);
}

.vr-body-text {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--vr-text);
}

.vr-eyebrow {
  font-family: var(--vr-font-head);
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--vr-gold);
  font-weight: 600;
}

/* ── BUTTONS ────────────────────────────────────────── */
.btn-vr-gold {
  background: var(--vr-gold);
  color: var(--vr-dark);
  font-family: var(--vr-font-head);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border: 2px solid var(--vr-gold);
  border-radius: 6px;
  padding: 0.6rem 1.4rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--vr-transition), color var(--vr-transition), box-shadow var(--vr-transition), transform var(--vr-transition);
}
.btn-vr-gold:hover, .btn-vr-gold:focus {
  background: var(--vr-gold-hover);
  border-color: var(--vr-gold-hover);
  color: var(--vr-dark);
  box-shadow: 0 8px 25px rgba(228,180,51,0.4);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-vr-outline-dark {
  background: transparent;
  color: var(--vr-dark);
  font-family: var(--vr-font-head);
  font-weight: 700;
  font-size: 0.88rem;
  border: 2px solid var(--vr-dark);
  border-radius: 6px;
  padding: 0.5rem 1.2rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--vr-transition);
}
.btn-vr-outline-dark:hover {
  background: var(--vr-dark);
  color: var(--vr-gold);
  transform: translateY(-2px);
  text-decoration: none;
}

.btn-vr-dark {
  background: var(--vr-dark);
  color: var(--vr-gold);
  font-family: var(--vr-font-head);
  font-weight: 700;
  font-size: 0.88rem;
  border: 2px solid var(--vr-dark);
  border-radius: 6px;
  padding: 0.5rem 1.2rem;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--vr-transition);
}
.btn-vr-dark:hover {
  background: var(--vr-gold);
  color: var(--vr-dark);
  border-color: var(--vr-gold);
  transform: translateY(-2px);
  text-decoration: none;
}

/* ── NAVBAR ─────────────────────────────────────────── */
.vr-navbar {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(228,180,51,0.15);
  transition: background var(--vr-transition), padding var(--vr-transition), box-shadow var(--vr-transition);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
}
.vr-navbar.scrolled {
  background: rgba(17, 17, 17, 0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
  padding: 0.4rem 0;
}
.vr-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
}
.vr-navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.vr-navbar-brand img {
  height: 60px;
  width: auto;
}

/* Logo text fallback */
.vr-logo-text { line-height: 1; }
.logo-vr {
  font-family: var(--vr-font-head);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--vr-gold);
}
.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  display: block;
}

/* Nav menu styles — targets wp_nav_menu output */
.vr-nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
}
.vr-nav-menu li { position: relative; }
.vr-nav-menu li a {
  color: rgba(255,255,255,0.85);
  font-family: var(--vr-font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  padding: 0.5rem 0.8rem;
  text-decoration: none;
  display: block;
  transition: color var(--vr-transition);
}
.vr-nav-menu li a:hover,
.vr-nav-menu li.current-menu-item > a,
.vr-nav-menu li.current_page_item > a { color: var(--vr-gold); }

/* CTA button in nav */
.vr-nav-cta {
  margin-left: 12px;
}
.vr-nav-cta a {
  background: var(--vr-gold) !important;
  color: var(--vr-dark) !important;
  padding: 0.45rem 1rem !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
  transition: background var(--vr-transition), box-shadow var(--vr-transition), transform var(--vr-transition) !important;
}
.vr-nav-cta a:hover {
  background: var(--vr-gold-hover) !important;
  box-shadow: 0 4px 20px rgba(228,180,51,0.35) !important;
  transform: translateY(-2px);
}

/* Mobile hamburger */
.vr-navbar-toggler {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  cursor: pointer;
  display: none;
  flex-direction: column;
  gap: 5px;
}
.vr-navbar-toggler span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.85);
  transition: all 0.3s ease;
}

@media (max-width: 991px) {
  .vr-navbar-toggler { display: flex; }
  .vr-nav-collapse {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(17,17,17,0.98);
    border-top: 1px solid rgba(228,180,51,0.15);
    padding: 1rem 0;
    display: none;
  }
  .vr-nav-collapse.open { display: block; }
  .vr-nav-menu {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 1.5rem;
    gap: 0;
  }
  .vr-nav-menu li { width: 100%; }
  .vr-nav-menu li a { padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .vr-nav-cta { margin-left: 0; margin-top: 0.5rem; }
  .vr-nav-cta a { display: inline-block !important; }
}

/* ── HERO ────────────────────────────────────────────── */
.vr-hero {
  min-height: 100vh;
  background-image:
    linear-gradient(to bottom, rgba(17,17,17,0.7) 0%, rgba(17,17,17,0.55) 50%, rgba(17,17,17,0.8) 100%),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1800&q=80');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.vr-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(228,180,51,0.08) 0%, transparent 70%);
}
.vr-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.6) 0%, rgba(17,17,17,0.3) 100%);
}
.vr-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  width: 100%;
  padding: 7rem 1rem 5rem;
}
.vr-hero-title {
  font-family: var(--vr-font-head);
  font-weight: 900;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -1px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
.vr-hero-tagline {
  font-family: var(--vr-font-head);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  letter-spacing: 2px;
}
.vr-hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--vr-gold);
  font-size: 1.4rem;
  animation: vr-bounce 2s infinite;
}
@keyframes vr-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── INTRO / ABOUT ────────────────────────────────────── */
.vr-intro { background: var(--vr-white); }

.vr-intro-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.vr-intro-img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  display: block;
  box-shadow: var(--vr-shadow-lg);
  border-radius: 12px;
}
.vr-intro-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--vr-gold);
  color: var(--vr-dark);
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 8px 30px rgba(228,180,51,0.4);
}
.vr-intro-badge-number {
  font-family: var(--vr-font-head);
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
}
.vr-intro-badge-text {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

/* ── WHY CHOOSE US ───────────────────────────────────── */
.vr-why { background: var(--vr-light-gray); }

.vr-why-heading {
  font-family: var(--vr-font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--vr-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.vr-checklist { list-style: none; padding: 0; margin: 0; }
.vr-checklist li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.9rem;
  line-height: 1.6;
}
.vr-checklist li .check-icon {
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
  color: var(--vr-gold);
}
.vr-checklist li:last-child { border-bottom: none; }

/* Process list */
.vr-process-list { display: flex; flex-direction: column; gap: 1rem; }
.vr-process-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  font-size: 0.88rem;
  line-height: 1.65;
}
.vr-process-num {
  width: 32px;
  height: 32px;
  background: var(--vr-gold);
  color: var(--vr-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vr-font-head);
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* Companies card */
.vr-companies-card {
  background: var(--vr-dark);
  border-radius: var(--vr-radius);
  box-shadow: var(--vr-shadow);
}
.vr-companies-label {
  font-family: var(--vr-font-head);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--vr-gold);
}
.vr-company-logo-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(228,180,51,0.3);
  border-radius: 10px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  transition: all var(--vr-transition);
}
.vr-company-logo-box:hover {
  background: rgba(228,180,51,0.1);
  border-color: var(--vr-gold);
  transform: translateY(-3px);
}
.vr-logo-abbr {
  font-family: var(--vr-font-head);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--vr-gold);
  line-height: 1;
}
.vr-company-logo-box small {
  font-size: 0.62rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* Services list */
.vr-services-list { list-style: none; padding: 0; margin: 0; }
.vr-services-list li {
  font-size: 0.82rem;
  line-height: 1.6;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: flex-start;
  gap: 6px;
  color: var(--vr-text);
}
.vr-services-list li:last-child { border-bottom: none; }
.vr-services-list li .svc-icon { font-size: 0.7rem; margin-top: 5px; flex-shrink: 0; color: var(--vr-gold); }

/* ── INDUSTRIES ──────────────────────────────────────── */
.vr-industries { background: var(--vr-dark); }
.vr-industries .vr-section-title-lg { color: var(--vr-white); }

.vr-industry-card {
  border-radius: var(--vr-radius);
  overflow: hidden;
  background: var(--vr-mid);
  box-shadow: var(--vr-shadow);
  transition: transform var(--vr-transition), box-shadow var(--vr-transition);
  cursor: pointer;
}
.vr-industry-card:hover { transform: translateY(-8px); box-shadow: var(--vr-shadow-lg); }

.vr-industry-img-wrap {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.vr-industry-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.vr-industry-card:hover .vr-industry-img { transform: scale(1.08); }

.vr-industry-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17,17,17,0.7) 0%, transparent 60%);
}

.vr-industry-body {
  padding: 1.2rem 1.4rem;
  position: relative;
}
.vr-industry-icon {
  width: 42px;
  height: 42px;
  background: var(--vr-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--vr-dark);
  font-size: 1.1rem;
  margin-bottom: 10px;
  margin-top: -30px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(228,180,51,0.4);
}
.vr-industry-title {
  font-family: var(--vr-font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--vr-white);
  margin-bottom: 4px;
}
.vr-industry-roles {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin: 0;
  letter-spacing: 0.5px;
}

/* ── VIDEO SECTIONS ──────────────────────────────────── */
.vr-dark-bg  { background: var(--vr-dark-2); }
.vr-light-bg { background: var(--vr-light-gray); }

.vr-dark-bg .vr-section-title-lg { color: var(--vr-white); }

.vr-video-card { border-radius: var(--vr-radius-lg); overflow: hidden; }
.vr-video-thumb {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}
.vr-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
}
.vr-video-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

.vr-play-btn {
  width: 72px;
  height: 72px;
  background: rgba(228,180,51,0.92);
  color: var(--vr-dark);
  border: 4px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all var(--vr-transition);
  flex-shrink: 0;
}
.vr-play-btn:hover {
  background: var(--vr-gold);
  transform: scale(1.12);
  box-shadow: 0 0 0 12px rgba(228,180,51,0.2);
}

.vr-blockquote {
  font-family: var(--vr-font-head);
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  color: #fff;
}
.vr-blockquote strong { color: var(--vr-gold); font-style: normal; }

.vr-ceo-name { font-size: 1rem; color: var(--vr-gold); font-weight: bold; }
.vr-ceo-info { text-align: center; }

.vr-video-bottom-text { width: 100%; }
.vr-video-big-text {
  font-family: var(--vr-font-head);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.05;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
  color: #fff;
}

.vr-vr-logo-sm {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 1rem;
}
.logo-vr-sm {
  font-family: var(--vr-font-head);
  font-weight: 900;
  font-size: 2rem;
  color: var(--vr-gold);
  line-height: 1;
}
.logo-sub-sm {
  font-family: var(--vr-font-head);
  font-size: 0.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

/* video section text alignment overrides */
.vr-video-content.text-start {
  align-items: flex-start;
  justify-content: flex-end;
}

/* ── CONTACT ─────────────────────────────────────────── */
.vr-contact { background: var(--vr-white); }
.vr-contact .vr-section-title-lg { color: var(--vr-dark); }

.vr-contact-form-card {
  background: var(--vr-light-gray);
  border-radius: var(--vr-radius);
  box-shadow: var(--vr-shadow);
  padding: 2rem 2.5rem;
}

.vr-form-label {
  font-family: var(--vr-font-head);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  color: var(--vr-dark);
  display: block;
  margin-bottom: 0.4rem;
}

.vr-form-control {
  width: 100%;
  background: var(--vr-white);
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: var(--vr-dark);
  font-family: var(--vr-font-body);
  transition: border-color var(--vr-transition), box-shadow var(--vr-transition);
  outline: none;
  margin-bottom: 1rem;
}
.vr-form-control:focus {
  border-color: var(--vr-gold);
  box-shadow: 0 0 0 3px rgba(228,180,51,0.15);
  background: var(--vr-white);
}

.vr-contact-info-card {
  background: var(--vr-dark);
  border-radius: var(--vr-radius);
  color: var(--vr-white);
  padding: 1.5rem;
}

.vr-contact-details { list-style: none; padding: 0; margin: 0; }
.vr-contact-details li {
  display: flex;
  align-items: center;
  padding: 8px 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  gap: 10px;
}
.vr-contact-details li:last-child { border-bottom: none; }
.vr-contact-details li .ci-icon { color: var(--vr-gold); flex-shrink: 0; }
.vr-contact-details a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color var(--vr-transition);
}
.vr-contact-details a:hover { color: var(--vr-gold); }

/* Stats */
.vr-stat-box {
  background: var(--vr-light-gray);
  border-radius: var(--vr-radius);
  border: 1.5px solid rgba(0,0,0,0.06);
  transition: all var(--vr-transition);
  padding: 1rem;
  text-align: center;
}
.vr-stat-box:hover { border-color: var(--vr-gold); box-shadow: 0 4px 20px rgba(228,180,51,0.15); }
.vr-stat-num {
  font-family: var(--vr-font-head);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--vr-gold);
  line-height: 1;
}
.vr-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--vr-text-light);
  margin-top: 4px;
}

/* ── FOOTER ──────────────────────────────────────────── */
.vr-footer {
  background: var(--vr-dark-2);
  color: var(--vr-white);
  padding: 4rem 0 2rem;
}

.vr-footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1rem;
}
.logo-vr-footer {
  font-family: var(--vr-font-head);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--vr-gold);
  line-height: 1;
}
.logo-brand-footer {
  font-family: var(--vr-font-head);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--vr-white);
  letter-spacing: 1px;
}
.logo-sub-footer {
  font-size: 0.55rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.vr-footer-heading {
  font-family: var(--vr-font-head);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vr-gold);
  margin-bottom: 1.2rem;
}

/* Footer WP nav menu */
.vr-footer-nav { list-style: none; padding: 0; margin: 0; }
.vr-footer-nav li { padding: 5px 0; font-size: 0.85rem; }
.vr-footer-nav li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--vr-transition);
}
.vr-footer-nav li a:hover { color: var(--vr-gold); }

.vr-footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 2rem 0 1.5rem;
}

.vr-social-links { display: flex; gap: 10px; margin-top: 1rem; }
.vr-social-btn {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.7);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--vr-transition);
}
.vr-social-btn:hover {
  background: var(--vr-gold);
  color: var(--vr-dark);
  transform: translateY(-3px);
}

/* ── BACK TO TOP ─────────────────────────────────────── */
.vr-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--vr-gold);
  color: var(--vr-dark);
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity var(--vr-transition), transform var(--vr-transition), box-shadow var(--vr-transition);
  z-index: 9000;
  box-shadow: 0 4px 20px rgba(228,180,51,0.4);
}
.vr-back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.vr-back-to-top:hover {
  background: var(--vr-gold-hover);
  box-shadow: 0 8px 30px rgba(228,180,51,0.5);
  transform: translateY(-3px);
}

/* ── ANIMATIONS ──────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
}

/* ── CONTENT PAGES ───────────────────────────────────── */
.vr-page-header {
  background: var(--vr-dark);
  padding: 8rem 0 3rem;
  color: var(--vr-white);
  text-align: center;
}
.vr-page-header h1 {
  font-family: var(--vr-font-head);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--vr-white);
  margin-bottom: 0.5rem;
}
.vr-page-breadcrumb {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}
.vr-page-breadcrumb a { color: var(--vr-gold); text-decoration: none; }

.vr-content-section { padding: 5rem 0; }

.vr-entry-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.85;
  color: var(--vr-text);
}
.vr-entry-content h1,
.vr-entry-content h2,
.vr-entry-content h3,
.vr-entry-content h4 {
  font-family: var(--vr-font-head);
  font-weight: 700;
  color: var(--vr-dark);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}
.vr-entry-content img { border-radius: 10px; margin: 1.5rem 0; }
.vr-entry-content a { color: var(--vr-gold); }
.vr-entry-content a:hover { color: var(--vr-gold-hover); }

/* Post meta */
.vr-post-meta {
  font-size: 0.82rem;
  color: var(--vr-text-light);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.vr-post-meta a { color: var(--vr-text-light); text-decoration: none; }
.vr-post-meta a:hover { color: var(--vr-gold); }

/* Post cards for archive */
.vr-post-card {
  background: var(--vr-white);
  border-radius: var(--vr-radius);
  box-shadow: var(--vr-shadow);
  overflow: hidden;
  transition: transform var(--vr-transition), box-shadow var(--vr-transition);
  height: 100%;
}
.vr-post-card:hover { transform: translateY(-6px); box-shadow: var(--vr-shadow-lg); }
.vr-post-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.vr-post-card-body { padding: 1.5rem; }
.vr-post-card-cat {
  font-family: var(--vr-font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vr-gold);
  margin-bottom: 0.5rem;
}
.vr-post-card-title {
  font-family: var(--vr-font-head);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--vr-dark);
  margin-bottom: 0.7rem;
  line-height: 1.3;
}
.vr-post-card-title a { color: var(--vr-dark); text-decoration: none; }
.vr-post-card-title a:hover { color: var(--vr-gold); }
.vr-post-card-excerpt { font-size: 0.88rem; color: var(--vr-text-light); line-height: 1.65; }
.vr-post-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vr-read-more {
  font-family: var(--vr-font-head);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--vr-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--vr-transition), color var(--vr-transition);
}
.vr-read-more:hover { color: var(--vr-gold-hover); gap: 8px; }

/* Pagination */
.vr-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 3rem;
}
.vr-pagination .page-numbers {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-family: var(--vr-font-head);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 1.5px solid rgba(0,0,0,0.08);
  color: var(--vr-text);
  transition: all var(--vr-transition);
}
.vr-pagination .page-numbers:hover,
.vr-pagination .page-numbers.current {
  background: var(--vr-gold);
  border-color: var(--vr-gold);
  color: var(--vr-dark);
}

/* ── SEARCH ──────────────────────────────────────────── */
.vr-search-form {
  display: flex;
  gap: 8px;
  margin-bottom: 3rem;
}
.vr-search-input {
  flex: 1;
  background: var(--vr-white);
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.75rem 1.2rem;
  font-size: 0.95rem;
  color: var(--vr-dark);
  font-family: var(--vr-font-body);
  outline: none;
}
.vr-search-input:focus { border-color: var(--vr-gold); box-shadow: 0 0 0 3px rgba(228,180,51,0.15); }

/* ── 404 ─────────────────────────────────────────────── */
.vr-404-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5rem 1rem;
}
.vr-404-num {
  font-family: var(--vr-font-head);
  font-weight: 900;
  font-size: clamp(6rem, 15vw, 12rem);
  color: var(--vr-gold);
  line-height: 1;
  opacity: 0.15;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  white-space: nowrap;
}
.vr-404-inner { position: relative; z-index: 1; }

/* ── GRID HELPERS ────────────────────────────────────── */
.vr-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -0.75rem;
}
.vr-col-4, .vr-col-6, .vr-col-7, .vr-col-3, .vr-col-5, .vr-col-lg-4, .vr-col-lg-5, .vr-col-lg-7 {
  padding: 0 0.75rem;
  width: 100%;
}
@media (min-width: 768px) {
  .vr-col-6 { width: 50%; }
}
@media (min-width: 992px) {
  .vr-col-lg-3 { width: 25%; }
  .vr-col-lg-4 { width: 33.3333%; }
  .vr-col-lg-5 { width: 41.6667%; }
  .vr-col-lg-6 { width: 50%; }
  .vr-col-lg-7 { width: 58.3333%; }
  .vr-col-lg-8 { width: 66.6667%; }
  .vr-col-lg-9 { width: 75%; }
}

/* ── SIDEBAR ─────────────────────────────────────────── */
.vr-sidebar .widget {
  background: var(--vr-white);
  border-radius: var(--vr-radius);
  box-shadow: var(--vr-shadow);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.vr-sidebar .widget-title {
  font-family: var(--vr-font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--vr-gold);
  margin-bottom: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid rgba(228,180,51,0.2);
}
.vr-sidebar ul { list-style: none; padding: 0; margin: 0; }
.vr-sidebar ul li { padding: 5px 0; font-size: 0.88rem; border-bottom: 1px solid rgba(0,0,0,0.05); }
.vr-sidebar ul li:last-child { border-bottom: none; }
.vr-sidebar ul li a { color: var(--vr-text); text-decoration: none; transition: color var(--vr-transition); }
.vr-sidebar ul li a:hover { color: var(--vr-gold); }

/* ── COMMENTS ────────────────────────────────────────── */
.vr-comments { margin-top: 3rem; padding-top: 3rem; border-top: 1px solid rgba(0,0,0,0.08); }
.vr-comment-list { list-style: none; padding: 0; margin: 0 0 2rem; }
.vr-comment-item { padding: 1.5rem; background: var(--vr-light-gray); border-radius: var(--vr-radius); margin-bottom: 1rem; }
.vr-comment-author { font-family: var(--vr-font-head); font-weight: 700; font-size: 0.9rem; color: var(--vr-dark); }
.vr-comment-date { font-size: 0.78rem; color: var(--vr-text-light); margin-bottom: 0.5rem; }
.vr-comment-text { font-size: 0.9rem; line-height: 1.65; }
.vr-comment-form textarea,
.vr-comment-form input[type="text"],
.vr-comment-form input[type="email"],
.vr-comment-form input[type="url"] {
  width: 100%;
  background: var(--vr-white);
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  font-family: var(--vr-font-body);
  color: var(--vr-dark);
  margin-bottom: 1rem;
  outline: none;
}
.vr-comment-form textarea:focus,
.vr-comment-form input:focus { border-color: var(--vr-gold); box-shadow: 0 0 0 3px rgba(228,180,51,0.15); }
.vr-comment-form label { font-family: var(--vr-font-head); font-weight: 600; font-size: 0.82rem; display: block; margin-bottom: 0.4rem; color: var(--vr-dark); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 991.98px) {
  .vr-intro-badge { width: 80px; height: 80px; right: -10px; bottom: -10px; }
  .vr-intro-badge-number { font-size: 1.2rem; }
  .vr-video-thumb { height: 300px; }
}

@media (max-width: 767.98px) {
  .vr-hero { background-attachment: scroll; }
  .vr-video-thumb { height: 240px; }
  .vr-video-big-text { font-size: 1.8rem; }
  .vr-back-to-top { bottom: 1rem; right: 1rem; }
  .vr-contact-form-card { padding: 1.5rem; }
}
