/* Modern Custom Styles for WISSIONGARD Security Company */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Oswald:wght@400;500;700&display=swap');

:root {
  --bg-primary: #0a0a0c;
  --bg-secondary: #13141b;
  --bg-glass: rgba(19, 20, 27, 0.75);
  --bg-glass-hover: rgba(26, 28, 38, 0.85);
  
  --accent-gold: #c5a059;
  --accent-gold-bright: #ebd08d;
  --accent-gold-light: rgba(197, 160, 89, 0.12);
  --accent-gold-border: rgba(197, 160, 89, 0.35);
  
  --text-primary: #ffffff;
  --text-secondary: #a0aec0;
  --text-muted: #64748b;
  
  --border-glass: rgba(255, 255, 255, 0.05);
  --border-glass-active: rgba(197, 160, 89, 0.45);
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.7);
  --shadow-gold: 0 5px 25px rgba(197, 160, 89, 0.12);
  
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Outfit', sans-serif;
  
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: #232530;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-gold);
}

/* Base resets & theme overrides */
body {
  background-color: var(--bg-primary) !important;
  color: var(--text-secondary) !important;
  font-family: var(--font-body) !important;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading) !important;
  color: var(--text-primary) !important;
  letter-spacing: 1px;
  text-transform: uppercase;
}

a {
  color: var(--accent-gold);
  transition: var(--transition-fast);
}

a:hover, a:focus {
  color: var(--accent-gold-bright);
  text-decoration: none;
}

/* Animation triggers via Intersection Observer */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Glassmorphism panel styles */
.glass-panel {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
}

.glass-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  transform: scaleX(0);
  transition: var(--transition-smooth);
}

.glass-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold-border);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.glass-card:hover::before {
  transform: scaleX(1);
}

/* Header & Navigation Bar */
.site-navbar {
  background: rgba(10, 10, 12, 0.8) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-smooth);
  padding: 1rem 0 !important;
  z-index: 999;
}

.site-navbar.scrolled {
  background: var(--bg-primary) !important;
  box-shadow: var(--shadow-md);
  padding: 0.75rem 0 !important;
}

.site-logo a {
  font-family: var(--font-heading) !important;
  color: var(--text-primary) !important;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 1.6rem;
}

.site-logo a span {
  color: var(--accent-gold);
}

.site-navigation .site-menu > li > a {
  color: var(--text-secondary) !important;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  padding: 10px 20px !important;
  position: relative;
  transition: var(--transition-fast);
}

.site-navigation .site-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  right: 20px;
  height: 2px;
  background-color: var(--accent-gold);
  transform: scaleX(0);
  transition: var(--transition-fast);
}

.site-navigation .site-menu > li > a:hover {
  color: var(--text-primary) !important;
}

.site-navigation .site-menu > li > a:hover::after,
.site-navigation .site-menu > li.active > a::after {
  transform: scaleX(1);
}

.site-navigation .site-menu > li.active > a {
  color: var(--accent-gold) !important;
}

/* Mobile Menu Button */
.burger-menu-btn {
  color: var(--text-primary);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition-fast);
  background: none;
  border: none;
}

.burger-menu-btn:hover {
  color: var(--accent-gold);
}

/* Custom Mobile Menu slide-out drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100vh;
  background-color: var(--bg-secondary);
  border-left: 1px solid var(--border-glass);
  z-index: 10000;
  padding: 3rem 2rem;
  transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  right: 0;
}

.mobile-drawer-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-secondary);
  cursor: pointer;
  margin-bottom: 2rem;
  transition: var(--transition-fast);
}

.mobile-drawer-close:hover {
  color: var(--accent-gold);
}

.mobile-drawer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-drawer-links a {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-primary);
  display: block;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-glass);
  transition: var(--transition-fast);
}

.mobile-drawer-links a:hover,
.mobile-drawer-links li.active a {
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  padding-left: 10px;
}

.mobile-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: none;
}

.mobile-drawer-overlay.active {
  display: block;
}

/* Sections styling */
.site-section {
  padding: 7rem 0 !important;
  background-color: var(--bg-primary);
}

.site-section.bg-light, .bg-light {
  background-color: var(--bg-secondary) !important;
}

.section-title {
  font-size: 2.5rem !important;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent-gold);
}

.text-left .section-title::after {
  left: 0;
  transform: none;
}

.subtitle {
  color: var(--accent-gold);
  font-family: var(--font-heading);
  letter-spacing: 2px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
}

/* Hero section banner */
.site-hero {
  height: 100vh;
  min-height: 600px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.site-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(10, 10, 12, 0.4), rgba(10, 10, 12, 0.95));
  z-index: 1;
}

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

.text-shadow {
  text-shadow: 0 4px 20px rgba(0,0,0,0.85) !important;
}

.site-hero h1 {
  font-size: 4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.site-hero p {
  color: var(--text-secondary);
  font-size: 1.3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .site-hero h1 {
    font-size: 2.8rem;
  }
  .site-hero p {
    font-size: 1.1rem;
  }
}

/* Buttons */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border-radius: 4px;
  transition: var(--transition-fast);
}

.btn-primary {
  background-color: var(--accent-gold) !important;
  border-color: var(--accent-gold) !important;
  color: var(--bg-primary) !important;
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: var(--accent-gold-bright) !important;
  border-color: var(--accent-gold-bright) !important;
  box-shadow: 0 5px 15px rgba(197, 160, 89, 0.4) !important;
}

.btn-outline-primary {
  border-color: var(--accent-gold) !important;
  color: var(--accent-gold) !important;
  background-color: transparent !important;
}

.btn-outline-primary:hover {
  background-color: var(--accent-gold) !important;
  color: var(--bg-primary) !important;
  box-shadow: 0 5px 15px rgba(197, 160, 89, 0.2) !important;
}

/* Advantages Grid checklists */
.ul-check.success {
  padding-left: 0;
  margin-top: 2rem;
}

.ul-check.success li {
  position: relative;
  padding-left: 35px;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-primary);
  list-style: none;
  text-align: left;
}

.ul-check.success li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-gold);
  font-size: 1.4rem;
  font-weight: bold;
}

/* Counter box styles */
.counter-box {
  text-align: center;
  padding: 2.5rem;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  transition: var(--transition-smooth);
}

.counter-box:hover {
  border-color: var(--accent-gold-border);
  box-shadow: var(--shadow-gold);
}

.counter-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  display: block;
}

.counter-label {
  font-family: var(--font-heading);
  letter-spacing: 1px;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* Service category list grids */
.service-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
  height: 100%;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.service-card-img-wrap {
  position: relative;
  overflow: hidden;
  padding-top: 65%;
}

.service-card-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-gold-border);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.service-card:hover .service-card-img-wrap img {
  transform: scale(1.1);
}

.service-card-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  transition: var(--transition-fast);
}

.service-card:hover .service-card-title {
  color: var(--accent-gold);
}

.service-card-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0;
}

/* Testimonial slider visual design */
.testimonial-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  max-width: 850px;
  margin: 0 auto;
  padding: 3rem 2rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}

.testimonial-wrapper {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 1rem;
  text-align: center;
}

.testimonial-text {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 2rem;
  line-height: 1.8;
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: rgba(197, 160, 89, 0.15);
  position: absolute;
}

.testimonial-text::before {
  top: -1.5rem;
  left: -1rem;
}

.testimonial-text::after {
  bottom: -3.5rem;
  right: -0.5rem;
}

.testimonial-author {
  font-family: var(--font-heading);
  color: var(--accent-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.testimonial-company {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
}

.slider-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2.5rem;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  padding: 0;
}

.slider-dot.active {
  background: var(--accent-gold);
  transform: scale(1.3);
}

/* Document download cards grid */
.download-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 2rem;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.download-card:hover {
  border-color: var(--accent-gold-border);
  background: var(--bg-glass-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm), var(--shadow-gold);
}

.download-info {
  display: flex;
  align-items: center;
}

.download-icon {
  font-size: 2.5rem;
  color: var(--accent-gold);
  margin-right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-title {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
  font-family: var(--font-heading);
}

.download-size {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Contact information cards and interactive maps */
.contact-info-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 3rem 2.5rem;
  height: 100%;
}

.contact-info-item {
  display: flex;
  margin-bottom: 2.5rem;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  font-size: 1.75rem;
  color: var(--accent-gold);
  margin-right: 1.5rem;
  margin-top: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent-gold-light);
  border-radius: 50%;
}

.contact-info-text h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.contact-info-text p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

.contact-form-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 3.5rem;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-control {
  background-color: var(--bg-primary) !important;
  border: 1px solid var(--border-glass) !important;
  color: var(--text-primary) !important;
  border-radius: 6px !important;
  padding: 0.85rem 1.1rem !important;
  height: auto !important;
  transition: var(--transition-fast) !important;
}

.form-control:focus {
  border-color: var(--accent-gold) !important;
  box-shadow: 0 0 10px rgba(197, 160, 89, 0.25) !important;
  outline: none !important;
}

label {
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

/* Client list grid search & filtering */
.search-filter-container {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  padding: 2.2rem;
  margin-bottom: 3.5rem;
}

.search-input-wrap {
  position: relative;
}

.search-input-wrap input {
  padding-left: 3rem !important;
  font-size: 1.05rem !important;
}

.search-icon-inside {
  position: absolute;
  left: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.2rem;
}

.alphabet-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-start;
}

.filter-btn {
  background: var(--bg-primary);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  padding: 0.45rem 0.85rem;
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition-fast);
  min-width: 32px;
  text-align: center;
}

.filter-btn:hover {
  border-color: var(--accent-gold-border);
  color: var(--accent-gold);
  background: var(--bg-glass-hover);
}

.filter-btn.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--bg-primary);
}

.client-item-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 1.75rem;
  height: 100%;
  transition: var(--transition-smooth);
}

.client-item-card:hover {
  border-color: var(--accent-gold-border);
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm), var(--shadow-gold);
}

.client-icon {
  font-size: 1.5rem;
  color: var(--accent-gold);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.client-title {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.client-location {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* Footer Section */
.site-footer {
  background-color: var(--bg-secondary) !important;
  border-top: 1px solid var(--border-glass);
  padding: 6rem 0 3rem 0 !important;
}

.footer-heading {
  font-size: 1.25rem !important;
  margin-bottom: 1.5rem !important;
  color: var(--text-primary) !important;
  font-family: var(--font-heading) !important;
}

.site-footer p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.site-footer a {
  color: var(--text-secondary);
}

.site-footer a:hover {
  color: var(--accent-gold);
}

.site-footer ul li {
  margin-bottom: 12px;
  list-style: none;
}

.footer-subscribe input {
  background-color: var(--bg-primary) !important;
  border: 1px solid var(--border-glass) !important;
  border-radius: 4px 0 0 4px !important;
  color: var(--text-primary);
}

.footer-subscribe .btn {
  border-radius: 0 4px 4px 0;
  padding-top: 0;
  padding-bottom: 0;
}

.copyright {
  border-top: 1px solid var(--border-glass);
  padding-top: 2rem;
  margin-top: 4rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Back to Top button custom styling */
.gototop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--accent-gold) !important;
  color: var(--bg-primary) !important;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  z-index: 999;
}

.gototop:hover {
  background-color: var(--accent-gold-bright) !important;
  transform: translateY(-3px);
  color: var(--bg-primary) !important;
}

/* Quick Contact floating widget badge */
.quick-chat-widget {
  position: fixed;
  bottom: 95px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.quick-chat-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-fast);
  font-size: 1.5rem;
  color: white !important;
  cursor: pointer;
}

.quick-chat-btn.whatsapp {
  background-color: #25d366;
}

.quick-chat-btn.phone {
  background-color: var(--accent-gold);
  color: var(--bg-primary) !important;
}

.quick-chat-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

@media (max-width: 992px) {
  .search-filter-container .col-lg-7 {
    margin-top: 1.5rem;
  }
  .alphabet-filter {
    justify-content: center;
  }
}

/* Client Logos Section */
.client-logos-section {
  padding: 5rem 0 !important;
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-glass);
}

.logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.logo-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 1.25rem;
  width: 150px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(100%) brightness(0.85);
  opacity: 0.55;
  transition: var(--transition-smooth);
}

.logo-item:hover {
  background: var(--bg-secondary);
  border-color: var(--accent-gold-border);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.logo-item:hover img {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
  transform: scale(1.05);
}

/* Team Section for About Page */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition-smooth);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.team-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-glass);
  position: relative;
}

.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: var(--transition-smooth);
}

.team-info {
  padding: 1.5rem;
}

.team-role {
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.team-name {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0;
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-gold-border);
  box-shadow: var(--shadow-gold), var(--shadow-md);
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.05);
}

/* Badge Styles */
.badge-outline-gold {
  border: 1px solid var(--accent-gold-border) !important;
  color: var(--accent-gold) !important;
  background: rgba(197, 160, 89, 0.05) !important;
  font-family: var(--font-heading) !important;
  font-size: 0.95rem !important;
  letter-spacing: 0.5px !important;
  border-radius: 4px !important;
  font-weight: 500 !important;
  transition: var(--transition-fast) !important;
  text-transform: uppercase !important;
  display: inline-block;
}

.badge-outline-gold:hover {
  background: var(--accent-gold) !important;
  color: var(--bg-primary) !important;
  border-color: var(--accent-gold) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-gold) !important;
}


