/* Complete redesign to match BUNKR luxury aesthetic */

/* Font Families */
body {
  font-family: "Inter", sans-serif;
}

.font-serif-a9ad3 {
  font-family: "Playfair Display", serif;
}

/* Glass Panel Effect */
.glass-panel-a9ad3 {
  background: rgba(41, 37, 36, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(217, 119, 6, 0.1);
}

/* Hover Lift Effect */
.hover-lift-a9ad3 {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-lift-a9ad3:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Service Card Flip Animation */
.service-card-a9ad3 {
  perspective: 1000px;
  height: 500px;
}

.service-card-inner-a9ad3 {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.service-card-a9ad3.flipped-a9ad3 .service-card-inner-a9ad3 {
  transform: rotateY(180deg);
}

.service-card-front-a9ad3,
.service-card-back-a9ad3 {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.service-card-back-a9ad3 {
  transform: rotateY(180deg);
}

/* Team Card Rotation */
.team-card-a9ad3 {
  perspective: 1000px;
}

.team-card-inner-a9ad3 {
  position: relative;
  width: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.team-card-a9ad3.rotated-a9ad3 .team-card-inner-a9ad3 {
  transform: rotateY(180deg);
}

.team-card-front-a9ad3,
.team-card-back-a9ad3 {
  backface-visibility: hidden;
}

.team-card-back-a9ad3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: rotateY(180deg);
}

/* Cookie Popup */
.cookie-popup-a9ad3 {
  position: fixed;
  bottom: -300px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(28, 25, 23, 0.95);
  backdrop-filter: blur(20px);
  color: #fff;
  padding: 24px 32px;
  border-radius: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
  z-index: 9999;
  max-width: 600px;
  width: 90%;
  transition: bottom 0.6s ease;
  border: 1px solid rgba(217, 119, 6, 0.3);
}

.cookie-popup-a9ad3.show-a9ad3 {
  bottom: 32px;
}

.cookie-content-a9ad3 {
  text-align: center;
}

/* Mobile Menu */
.mobile-menu-a9ad3 {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-menu-a9ad3.active-a9ad3 {
  max-height: 500px;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #1c1917;
}

::-webkit-scrollbar-thumb {
  background: #d97706;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #f59e0b;
}

/* Form Focus States */
input:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(217, 119, 6, 0.3);
}

/* Transitions */
* {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

/* Animation on Scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in-up-a9ad3 {
  animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
}

/* Selection */
::selection {
  background: #d97706;
  color: #1c1917;
}

/* Print Styles */
@media print {
  .cookie-popup-a9ad3,
  header,
  footer {
    display: none;
  }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .service-card-a9ad3 {
    height: auto;
    min-height: 400px;
  }

  .font-serif-a9ad3 {
    letter-spacing: -0.02em;
  }
}
