/* Midnight Steel & Forge Gold - Architectural Studio Theme */
:root {
  --primary-steel: #1a237e;
  --secondary-gold: #ffd740;
  --dark-steel: #0d1642;
  --light-steel: #3949ab;
  --gold-glow: #ffea00;
  --text-light: #ffffff;
  --text-muted: #b0bec5;
  --forge-red: #ff5722;
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #0a0e27 !important;
  color: var(--text-light) !important;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Navbar Styles */
.navbar {
  background: linear-gradient(135deg, var(--primary-steel) 0%, var(--dark-steel) 100%) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(255, 215, 64, 0.1);
  border-bottom: 2px solid var(--secondary-gold);
  transition: var(--transition-smooth);
  padding: 1rem 0 !important;
}

.navbar.fixed-top {
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.navbar-brand {
  color: var(--secondary-gold) !important;
  font-size: 1.75rem !important;
  font-weight: 800 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition-smooth);
}

.navbar-brand:hover {
  color: var(--gold-glow) !important;
  transform: scale(1.05);
  text-shadow: 0 0 20px var(--secondary-gold);
}

.navbar-brand .bi {
  margin-right: 8px;
  font-size: 1.5rem;
  animation: hammerSwing 2s ease-in-out infinite;
}

@keyframes hammerSwing {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-15deg); }
  75% { transform: rotate(15deg); }
}

.navbar-toggler {
  border-color: var(--secondary-gold) !important;
  background-color: rgba(255, 215, 64, 0.1) !important;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 215, 64, 0.3) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffd740' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.nav-link {
  color: var(--text-light) !important;
  font-weight: 600 !important;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: var(--transition-smooth);
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--secondary-gold);
  transition: var(--transition-smooth);
  transform: translateX(-50%);
  box-shadow: 0 0 10px var(--secondary-gold);
}

.nav-link:hover::before,
.nav-link.active::before {
  width: 80%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--secondary-gold) !important;
  text-shadow: 0 0 10px rgba(255, 215, 64, 0.5);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a0e27 0%, var(--primary-steel) 50%, var(--dark-steel) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 50px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 215, 64, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(26, 35, 126, 0.3) 0%, transparent 50%);
  animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

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

.hero-section .display-3 {
  font-weight: 900 !important;
  color: var(--text-light) !important;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
  animation: fadeInUp 1s ease-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section .h3 {
  color: var(--secondary-gold) !important;
  font-weight: 700 !important;
  margin-bottom: 1.5rem !important;
  animation: fadeInUp 1s ease-out 0.2s both;
  text-shadow: 0 0 20px rgba(255, 215, 64, 0.4);
}

.hero-section .lead {
  color: var(--text-muted) !important;
  font-size: 1.25rem !important;
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.4s both;
}

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

/* Forge Hammer Animation */
.forge-hammer-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
}

.forge-hammer-icon {
  font-size: 150px;
  color: var(--secondary-gold) !important;
  filter: drop-shadow(0 0 30px var(--secondary-gold));
  position: relative;
  z-index: 2;
}

.hammer-animate {
  animation: hammerForge 2s ease-in-out infinite;
}

@keyframes hammerForge {
  0%, 100% {
    transform: rotate(-20deg) translateY(0);
  }
  50% {
    transform: rotate(10deg) translateY(-20px);
  }
}

.sparks-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.spark {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--secondary-gold);
  border-radius: 50%;
  animation: sparkFly 1.5s ease-out infinite;
  box-shadow: 0 0 10px var(--secondary-gold);
}

.spark:nth-child(1) {
  left: 30%;
  top: 60%;
  animation-delay: 0s;
}

.spark:nth-child(2) {
  left: 50%;
  top: 65%;
  animation-delay: 0.3s;
}

.spark:nth-child(3) {
  left: 70%;
  top: 60%;
  animation-delay: 0.6s;
}

.spark:nth-child(4) {
  left: 40%;
  top: 70%;
  animation-delay: 0.9s;
}

.spark:nth-child(5) {
  left: 60%;
  top: 70%;
  animation-delay: 1.2s;
}

@keyframes sparkFly {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(var(--spark-x, 50px), var(--spark-y, 100px)) scale(0);
    opacity: 0;
  }
}

/* Buttons */
.btn {
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none !important;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  padding: 0.75rem 2rem !important;
}

.btn-lg {
  padding: 1rem 2.5rem !important;
  font-size: 1.1rem !important;
}

.btn-sm {
  padding: 0.5rem 1.5rem !important;
  font-size: 0.875rem !important;
}

.cta-glow {
  background: linear-gradient(135deg, var(--secondary-gold) 0%, var(--gold-glow) 100%) !important;
  color: var(--dark-steel) !important;
  box-shadow: 0 4px 20px rgba(255, 215, 64, 0.4);
}

.cta-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.cta-glow:hover::before {
  left: 100%;
}

.cta-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 215, 64, 0.6) !important;
  color: var(--dark-steel) !important;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-steel) 0%, var(--light-steel) 100%) !important;
  color: var(--text-light) !important;
  border: 2px solid var(--secondary-gold) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--light-steel) 0%, var(--primary-steel) 100%) !important;
  color: var(--secondary-gold) !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(26, 35, 126, 0.5) !important;
}

.btn-outline-primary {
  border: 2px solid var(--secondary-gold) !important;
  color: var(--secondary-gold) !important;
  background: transparent !important;
}

.btn-outline-primary:hover {
  background: var(--secondary-gold) !important;
  color: var(--dark-steel) !important;
  box-shadow: 0 0 20px rgba(255, 215, 64, 0.5);
}

.filter-btn {
  background: rgba(26, 35, 126, 0.3) !important;
  color: var(--text-light) !important;
  border: 1px solid var(--secondary-gold) !important;
  margin: 0.25rem;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--secondary-gold) !important;
  color: var(--dark-steel) !important;
  box-shadow: 0 0 15px rgba(255, 215, 64, 0.5);
}

/* Service Cards */
.service-card {
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.4) 0%, rgba(13, 22, 66, 0.6) 100%) !important;
  border: 2px solid rgba(255, 215, 64, 0.2) !important;
  border-radius: 15px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  height: 100%;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 215, 64, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover::before {
  opacity: 1;
  animation: rotateGlow 3s linear infinite;
}

@keyframes rotateGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-gold) !important;
  box-shadow: 0 15px 40px rgba(255, 215, 64, 0.3);
}

.service-card .bi {
  font-size: 3rem;
  color: var(--secondary-gold) !important;
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 0 10px rgba(255, 215, 64, 0.5));
}

.service-card:hover .bi {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 0 20px var(--secondary-gold));
}

.service-card .h4 {
  color: var(--text-light) !important;
  font-weight: 700 !important;
  margin-bottom: 1rem !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card p {
  color: var(--text-muted) !important;
  line-height: 1.7;
}

/* Service Fortress */
.service-fortress {
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.5) 0%, rgba(13, 22, 66, 0.7) 100%) !important;
  border: 3px solid var(--secondary-gold) !important;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.service-fortress::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    var(--secondary-gold) 0px,
    var(--secondary-gold) 20px,
    transparent 20px,
    transparent 40px
  );
}

.battlements-row {
  position: relative;
}

.battlement-card {
  background: rgba(26, 35, 126, 0.6) !important;
  border: 2px solid rgba(255, 215, 64, 0.3) !important;
  border-radius: 10px;
  transition: var(--transition-smooth);
  height: 100%;
}

.battlement-card:hover {
  border-color: var(--secondary-gold) !important;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 215, 64, 0.3);
}

.service-details {
  background: rgba(13, 22, 66, 0.8) !important;
  border-radius: 15px;
  padding: 2rem !important;
}

/* Team Shield */
.team-shield {
  position: relative;
  width: 150px;
  height: 180px;
  margin: 0 auto 1rem;
}

.shield-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-steel) 0%, var(--dark-steel) 100%);
  clip-path: polygon(50% 0%, 100% 15%, 100% 70%, 50% 100%, 0% 70%, 0% 15%);
  border: 3px solid var(--secondary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.team-shield:hover .shield-inner {
  transform: scale(1.1);
  box-shadow: 0 0 30px var(--secondary-gold);
}

.shield-inner img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  clip-path: polygon(50% 5%, 95% 17%, 95% 68%, 50% 95%, 5% 68%, 5% 17%);
}

/* Cards */
.card {
  background: linear-gradient(135deg, rgba(26, 35, 126, 0.4) 0%, rgba(13, 22, 66, 0.6) 100%) !important;
  border: 2px solid rgba(255, 215, 64, 0.2) !important;
  border-radius: 15px;
  color: var(--text-light) !important;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.card:hover {
  border-color: var(--secondary-gold) !important;
  box-shadow: 0 10px 40px rgba(255, 215, 64, 0.2);
  transform: translateY(-5px);
}

.card-title {
  color: var(--secondary-gold) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card-text {
  color: var(--text-muted) !important;
}

.card-img-top {
  border-bottom: 2px solid var(--secondary-gold);
  transition: var(--transition-smooth);
}

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

/* Case Study Items */
.case-study-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: rgba(26, 35, 126, 0.3);
  border: 2px solid rgba(255, 215, 64, 0.2);
}

.case-study-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 35, 126, 0.9) 100%);
  opacity: 0.8;
  transition: var(--transition-smooth);
  z-index: 1;
}

.case-study-item:hover::before {
  opacity: 0.95;
}

.hover-lift {
  transition: var(--transition-smooth);
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 50px rgba(255, 215, 64, 0.3);
  border-color: var(--secondary-gold) !important;
}

/* Badge */
.badge {
  background: var(--secondary-gold) !important;
  color: var(--dark-steel) !important;
  font-weight: 700 !important;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  letter-spacing: 1px;
  border-radius: 5px;
}

.badge-metric {
  background: linear-gradient(135deg, var(--primary-steel) 0%, var(--light-steel) 100%) !important;
  color: var(--secondary-gold) !important;
  border: 1px solid var(--secondary-gold);
  padding: 1rem;
  text-align: center;
  border-radius: 10px;
}

/* Alert */
.alert {
  background: rgba(26, 35, 126, 0.5) !important;
  border: 2px solid var(--secondary-gold) !important;
  border-radius: 10px;
  color: var(--text-light) !important;
  backdrop-filter: blur(10px);
}

.alert .bi {
  color: var(--secondary-gold) !important;
  font-size: 1.5rem;
}

/* Forms */
.form-control,
.form-select {
  background: rgba(26, 35, 126, 0.3) !important;
  border: 2px solid rgba(255, 215, 64, 0.3) !important;
  color: var(--text-light) !important;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: var(--transition-smooth);
}

.form-control:focus,
.form-select:focus {
  background: rgba(26, 35, 126, 0.5) !important;
  border-color: var(--secondary-gold) !important;
  color: var(--text-light) !important;
  box-shadow: 0 0 0 0.25rem rgba(255, 215, 64, 0.25) !important;
}

.form-control::placeholder {
  color: var(--text-muted) !important;
  opacity: 0.8;
}

.form-label {
  color: var(--text-light) !important;
  font-weight: 600 !important;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.form-select option {
  background: var(--dark-steel);
  color: var(--text-light);
}

/* Modal */
.modal-content {
  background: linear-gradient(135deg, var(--dark-steel) 0%, var(--primary-steel) 100%) !important;
  border: 2px solid var(--secondary-gold) !important;
  border-radius: 15px;
  color: var(--text-light) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
  border-bottom: 2px solid rgba(255, 215, 64, 0.3) !important;
  padding: 1.5rem;
}

.modal-title {
  color: var(--secondary-gold) !important;
  font-weight: 700 !important;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.modal-body {
  padding: 2rem;
}

.modal-footer {
  border-top: 2px solid rgba(255, 215, 64, 0.3) !important;
  padding: 1.5rem;
}

.btn-close,
.btn-close-white {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.btn-close:hover,
.btn-close-white:hover {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 5px var(--secondary-gold));
}

/* Sections */
section {
  padding: 80px 0;
  position: relative;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary-gold), transparent);
  opacity: 0.3;
}

.py-4 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-5 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.pt-5 {
  padding-top: 4rem !important;
}

.pb-4 {
  padding-bottom: 3rem !important;
}

/* Typography */
.display-1 {
  font-size: 5rem !important;
  font-weight: 900 !important;
  color: var(--text-light) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.display-3 {
  font-size: 3.5rem !important;
  font-weight: 800 !important;
}

.display-4 {
  font-size: 3rem !important;
  font-weight: 700 !important;
}

.display-5 {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: var(--text-light) !important;
}

.h1, h1 {
  font-size: 2.5rem !important;
  font-weight: 700 !important;
  color: var(--text-light) !important;
}

.h2, h2 {
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: var(--text-light) !important;
}

.h3, h3 {
  font-size: 1.75rem !important;
  font-weight: 600 !important;
  color: var(--secondary-gold) !important;
}

.h4, h4 {
  font-size: 1.5rem !important;
  font-weight: 600 !important;
  color: var(--text-light) !important;
}

.h5, h5 {
  font-size: 1.25rem !important;
  font-weight: 600 !important;
  color: var(--text-light) !important;
}

.h6, h6 {
  font-size: 1rem !important;
  font-weight: 600 !important;
  color: var(--secondary-gold) !important;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.lead {
  font-size: 1.25rem !important;
  font-weight: 400;
  color: var(--text-muted) !important;
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-white {
  color: var(--text-light) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

/* Images */
.img-fluid {
  border-radius: 15px;
  transition: var(--transition-smooth);
}

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(255, 215, 64, 0.175) !important;
}

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(255, 215, 64, 0.075) !important;
}

.rounded {
  border-radius: 15px !important;
}

.rounded-circle {
  border: 3px solid var(--secondary-gold);
  padding: 3px;
  background: var(--dark-steel);
}

/* Lists */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-unstyled li {
  padding: 0.5rem 0;
  color: var(--text-muted) !important;
  transition: var(--transition-smooth);
}

.list-unstyled li:hover {
  color: var(--secondary-gold) !important;
  padding-left: 10px;
}

.list-unstyled li .bi {
  color: var(--secondary-gold) !important;
  margin-right: 0.5rem;
}

/* Links */
a {
  color: var(--secondary-gold) !important;
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--gold-glow) !important;
  text-decoration: none;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-decoration-none:hover {
  text-decoration: underline !important;
}

/* Privacy Navigation */
.privacy-nav-link {
  color: var(--text-light) !important;
  padding: 1rem 1.5rem;
  display: block;
  border-left: 3px solid transparent;
  transition: var(--transition-smooth);
  background: rgba(26, 35, 126, 0.2);
  margin-bottom: 0.5rem;
  border-radius: 5px;
}

.privacy-nav-link:hover,
.privacy-nav-link.active {
  background: rgba(26, 35, 126, 0.5) !important;
  border-left-color: var(--secondary-gold);
  color: var(--secondary-gold) !important;
  padding-left: 2rem;
}

.privacy-nav-link .bi {
  margin-right: 0.75rem;
  color: var(--secondary-gold) !important;
}

/* Privacy Section */
.privacy-section {
  background: rgba(26, 35, 126, 0.2);
  border: 1px solid rgba(255, 215, 64, 0.2);
  border-radius: 10px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.privacy-section:hover {
  background: rgba(26, 35, 126, 0.3);
  border-color: var(--secondary-gold);
}

.privacy-section h3 {
  cursor: pointer;
  user-select: none;
  position: relative;
  padding-right: 2rem;
}

.collapse-indicator {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition-smooth);
  color: var(--secondary-gold) !important;
}

.privacy-section[aria-expanded="true"] .collapse-indicator {
  transform: translateY(-50%) rotate(180deg);
}

/* Footer */
footer {
  background: linear-gradient(135deg, var(--dark-steel) 0%, #000000 100%);
  border-top: 3px solid var(--secondary-gold);
  color: var(--text-muted) !important;
  padding: 3rem 0 1rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--secondary-gold), transparent);
  box-shadow: 0 0 20px var(--secondary-gold);
}

footer h6 {
  color: var(--secondary-gold) !important;
  margin-bottom: 1.5rem;
}

footer a {
  color: var(--text-muted) !important;
  display: inline-block;
  padding: 0.25rem 0;
}

footer a:hover {
  color: var(--secondary-gold) !important;
  padding-left: 5px;
}

footer .bi {
  color: var(--secondary-gold) !important;
  margin-right: 0.5rem;
}

footer .social-links a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 215, 64, 0.1);
  border: 2px solid var(--secondary-gold);
  border-radius: 50%;
  margin: 0 0.25rem;
  transition: var(--transition-smooth);
}

footer .social-links a:hover {
  background: var(--secondary-gold);
  color: var(--dark-steel) !important;
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(255, 215, 64, 0.4);
}

/* Utility Classes */
.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.cursor-pointer {
  cursor: pointer;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-sticky {
  position: sticky !important;
  top: 100px;
  z-index: 10;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.end-0 {
  right: 0 !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

/* Spacing */
.m-3 {
  margin: 1rem !important;
}

.mt-3 {
  margin-top: 1rem !important;
}

.mt-4 {
  margin-top: 1.5rem !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

.mb-4 {
  margin-bottom: 1.5rem !important;
}

.mb-5 {
  margin-bottom: 3rem !important;
}

.mb-lg-0 {
  margin-bottom: 0 !important;
}

.mb-md-0 {
  margin-bottom: 0 !important;
}

.ms-2 {
  margin-left: 0.5rem !important;
}

.ms-3 {
  margin-left: 1rem !important;
}

.ms-4 {
  margin-left: 1.5rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

.me-2 {
  margin-right: 0.5rem !important;
}

.me-3 {
  margin-right: 1rem !important;
}

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.px-5 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.ps-5 {
  padding-left: 3rem !important;
}

.ps-lg-5 {
  padding-left: 3rem !important;
}

.pe-5 {
  padding-right: 3rem !important;
}

/* Flexbox */
.d-flex {
  display: flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.justify-content-center {
  justify-content: center !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 1rem !important;
}

/* Grid */
.g-0 {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}

.g-2 {
  --bs-gutter-x: 0.5rem;
  --bs-gutter-y: 0.5rem;
}

.g-3 {
  --bs-gutter-x: 1rem;
  --bs-gutter-y: 1rem;
}

.g-4 {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.5rem;
}

/* Text Alignment */
.text-center {
  text-align: center !important;
}

.text-end {
  text-align: right !important;
}

.text-md-start {
  text-align: left !important;
}

.text-md-end {
  text-align: right !important;
}

/* Font Sizes */
.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.small {
  font-size: 0.875rem !important;
  color: var(--text-muted) !important;
}

/* Font Weight */
.fw-bold {
  font-weight: 700 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

/* Width */
.w-100 {
  width: 100% !important;
}

/* Height */
.h-100 {
  height: 100% !important;
}

/* Responsive */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(13, 22, 66, 0.95);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    border: 1px solid rgba(255, 215, 64, 0.3);
  }

  .nav-link {
    margin: 0.5rem 0;
    text-align: center;
  }

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

  .hero-section .display-3 {
    font-size: 2.5rem !important;
  }

  .display-1 {
    font-size: 3rem !important;
  }

  .display-4 {
    font-size: 2rem !important;
  }

  .display-5 {
    font-size: 1.75rem !important;
  }

  .forge-hammer-container {
    width: 200px;
    height: 200px;
  }

  .forge-hammer-icon {
    font-size: 100px;
  }

  section {
    padding: 50px 0;
  }

  .py-4 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .px-5 {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .ps-5,
  .pe-5,
  .ps-lg-5 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .mb-lg-0 {
    margin-bottom: 1.5rem !important;
  }

  .order-lg-1 {
    order: 1;
  }

  .order-lg-2 {
    order: 2;
  }

  .flex-sm-row {
    flex-direction: row !important;
  }

  .position-sticky {
    position: relative !important;
  }

  .team-shield {
    width: 120px;
    height: 150px;
  }
}

@media (max-width: 767.98px) {
  .navbar-brand {
    font-size: 1.25rem !important;
  }

  .hero-section .display-3 {
    font-size: 2rem !important;
  }

  .lead {
    font-size: 1rem !important;
  }

  .btn-lg {
    padding: 0.75rem 1.5rem !important;
    font-size: 1rem !important;
  }

  .service-card .bi {
    font-size: 2.5rem;
  }

  .text-md-start,
  .text-md-end {
    text-align: center !important;
  }

  .flex-column {
    flex-direction: column !important;
  }

  .mb-md-0 {
    margin-bottom: 1rem !important;
  }

  .col-md-12 {
    margin-bottom: 1rem;
  }
}

@media (max-width: 575.98px) {
  .display-1 {
    font-size: 2.5rem !important;
  }

  .display-3 {
    font-size: 1.75rem !important;
  }

  .display-4 {
    font-size: 1.5rem !important;
  }

  .display-5 {
    font-size: 1.5rem !important;
  }

  .h3, h3 {
    font-size: 1.5rem !important;
  }

  .forge-hammer-container {
    width: 150px;
    height: 150px;
  }

  .forge-hammer-icon {
    font-size: 75px;
  }

  .btn {
    width: 100%;
    margin-bottom: 0.5rem;
  }

  .gap-3 {
    gap: 0.5rem !important;
  }

  .modal-dialog {
    margin: 0.5rem;
  }
}

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--dark-steel);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-steel), var(--secondary-gold));
  border-radius: 6px;
  border: 2px solid var(--dark-steel);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--secondary-gold), var(--primary-steel));
}

/* Selection */
::selection {
  background: var(--secondary-gold);
  color: var(--dark-steel);
}

::-moz-selection {
  background: var(--secondary-gold);
  color: var(--dark-steel);
}

/* Loading Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading {
  animation: shimmer 2s infinite;
  background: linear-gradient(
    90deg,
    rgba(26, 35, 126, 0.2) 0%,
    rgba(255, 215, 64, 0.2) 50%,
    rgba(26, 35, 126, 0.2) 100%
  );
  background-size: 1000px 100%;
}

/* Print Styles */
@media print {
  .navbar,
  .btn,
  footer,
  .modal {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
  }

  .hero-section {
    background: white !important;
  }
}