/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1.5rem;
    border-radius: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    z-index: 9999;
    transition: bottom 0.5s ease;
    border: 2px solid black;
  }
  
  .cookie-popup.active {
    bottom: 2rem;
  }
  
  .cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  /* Mobile Menu Styles */
  .mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .mobile-menu.active {
    max-height: 400px;
  }
  
  /* Header Scroll Styles */
  header {
    transition: transform 0.3s ease;
  }
  
  header.scroll-down {
    transform: translateY(-100%);
  }
  
  header.scroll-up {
    transform: translateY(0);
  }
  
  /* Smooth Animations */
  * {
    scroll-behavior: smooth;
  }
  
  /* Custom Focus Styles */
  input:focus,
  textarea:focus,
  button:focus {
    outline: none;
  }
  
  /* Responsive images */
  img {
    max-width: 100%;
    height: auto;
  }
  
  /* Marquee Animation */
  .marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
  }
  
  .marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
  }
  
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  
  /* Flip Card Styles */
  .flip-card {
    perspective: 1000px;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  
  .flip-card:hover {
    transform: translateY(-5px);
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s;
    transform-style: preserve-3d;
  }
  
  .flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  .flip-card-front,
  .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  
  .flip-card-front {
    z-index: 2;
    transform: rotateY(0deg);
  }
  
  .flip-card-back {
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Expand Card Styles */
  .expand-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  
  .expand-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  
  .expand-card.expanded {
    grid-column: span 2;
    transform: scale(1);
  }
  
  @media (max-width: 768px) {
    .expand-card.expanded {
      grid-column: span 1;
    }
  }
  
  /* Smooth transitions for all interactive elements */
  a,
  button,
  .expand-card,
  .flip-card {
    transition: all 0.3s ease;
  }
  
  /* Add subtle hover effect to buttons */
  button:hover,
  a[class*="bg-black"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  }
  
  /* Image hover effects */
  img {
    transition: transform 0.5s ease;
  }
  
  /* Add border animation on focus for inputs */
  input:focus,
  textarea:focus {
    animation: borderPulse 1s ease-in-out infinite;
  }
  
  @keyframes borderPulse {
    0%,
    100% {
      border-color: black;
    }
    50% {
      border-color: #ffb6c1;
    }
  }
  
  /* Print styles */
  @media print {
    .cookie-popup,
    header,
    footer {
      display: none;
    }
  }
  
  /* Additional responsive adjustments */
  @media (max-width: 640px) {
    .marquee-content {
      animation-duration: 20s;
    }
  }
  
  /* Add loading state animations */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  section {
    animation: fadeIn 0.6s ease-out;
  }
  