/* Add loading indicator styles at the beginning of the file */
.loading-indicator {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 1s ease-in-out infinite;
  z-index: 9999;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Base styles */
:root {
  --orbit-size: 100vw;
  --logo-size: 120px;
  --element-size: 110px;
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background-color: #2b3035;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Orbital styles */
.orbital-container {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-logo {
  position: fixed;
  left: 2rem;
  top: 2rem;
  width: var(--logo-size);
  height: var(--logo-size);
  z-index: 2;
  border-radius: 8px;
}

.orbital-item {
  position: absolute;
  width: var(--element-size);
  height: var(--element-size);
  background: rgba(43, 48, 53, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  z-index: 3;
}

/* Add focus styles for keyboard navigation */
.orbital-item:focus,
.footer-icon-wrapper:focus {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}

/* Add focus-visible for better visual hierarchy */
.orbital-item:focus:not(:focus-visible),
.footer-icon-wrapper:focus:not(:focus-visible) {
  outline: none;
  box-shadow: none;
}

.orbital-item:focus-visible,
.footer-icon-wrapper:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
}


.orbital-item p {
  font-size: 0.875rem;
  text-align: center;
  font-weight: 500;
  color: white;
  margin: 0;
}

.orbital-item:hover {
  background: rgba(43, 48, 53, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}

/* Orbit Modal */
.orbit-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: rgba(43, 48, 53, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  padding: 2rem;
  z-index: 1000;
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.orbit-modal .modal-inner {
  overflow-y: auto;
  max-height: calc(80vh - 4rem);
  padding-right: 1rem;
}

.orbit-modal h2 {
  color: white;
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
  font-weight: 600;
}

.orbit-modal h3 {
  color: white;
  font-size: 1rem;
  margin: 1.5rem 0 0.5rem 0;
}

.orbit-modal .modal-content {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
  font-size: 0.9rem;
}

.orbit-modal .modal-content p {
  margin: 0.5rem 0;
}

.orbit-modal .modal-content ul {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.orbit-modal .modal-content li {
  margin: 0.25rem 0;
}

.orbit-modal-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  z-index: 1001;
}

.orbit-modal-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.2);
}

.main-container::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0px);
  pointer-events: none;
  transition: all 0.5s ease;
  z-index: 900;
}

.main-container.modal-open::after {
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  pointer-events: auto;
}

.orbit-modal.active {
  display: block;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.connection-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.orbital-tooltip {
  position: fixed;
  background: rgba(43, 48, 53, 0.95);
  color: white;
  padding: 1.5rem;
  border-radius: 1rem;
  font-size: 1rem;
  width: 300px;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 1000;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  text-align: left;
  line-height: 1.6;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.orbital-tooltip.visible {
  opacity: 1;
  visibility: visible;
}

/* Screen Reader Only Class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Contact Page Styles */
.contact-header {
  display: flex;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.contact-title {
  color: white;
  margin: 0 0 0 20px;
  font-size: 1.5rem;
}

.contact-container {
  padding: 120px 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-intro {
  text-align: center;
  margin-bottom: 40px;
}

.contact-intro h2 {
  color: #333;
  margin-bottom: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.contact-form-section,
.contact-info-section {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-item {
  margin-bottom: 25px;
}

.contact-item h4 {
  color: #333;
  margin-bottom: 10px;
}

.contact-item ul {
  list-style: none;
  padding: 0;
}

.contact-item li {
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}

.services-overview {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.service-item {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-item h4 {
  color: #333;
  margin-bottom: 10px;
}

/* Impressum & Datenschutz Styles */
.impressum-header,
.datenschutz-header {
  display: flex;
  align-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.impressum-title,
.datenschutz-title {
  color: white;
  margin: 0 0 0 20px;
  font-size: 1.5rem;
}

.impressum-container,
.datenschutz-container {
  padding: 120px 20px 40px;
  max-width: 800px;
  margin: 0 auto;
}

.impressum-section,
.datenschutz-section {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.impressum-section h2,
.datenschutz-section h2 {
  color: #333;
  margin-bottom: 20px;
  border-bottom: 2px solid #667eea;
  padding-bottom: 10px;
}

.impressum-section h3,
.datenschutz-section h3 {
  color: #555;
  margin: 20px 0 10px;
}

.impressum-section p,
.datenschutz-section p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.impressum-section ul,
.datenschutz-section ul {
  margin: 15px 0;
  padding-left: 20px;
}

.impressum-section li,
.datenschutz-section li {
  margin-bottom: 8px;
}

/* Responsive Design for new pages */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-container,
  .impressum-container,
  .datenschutz-container {
    padding: 100px 15px 30px;
  }
}

/* Footer styles */
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  z-index: 50;
}

.footer-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}

.footer-icon-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-icon-wrapper:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-icon {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.footer-icon-wrapper:hover .footer-icon {
  color: white;
}

/* Footer URL styles */
.footer-url {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.footer-url:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* Modal Styles mit Bootstrap Integration */
.modal-dialog {
  margin: 1.75rem auto;
  max-width: 600px;
}

.modal-content {
  background: rgba(43, 48, 53, 0.95) !important;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #ffffff;
}

.modal-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1rem;
}

.modal-body {
  padding: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  line-height: 1.4;
}

.modal-title {
  color: white;
  font-size: 1.1rem;
  font-weight: 400;
}

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-body ul {
  padding-left: 1.25rem;
  margin: 0.4rem 0;
}

.modal-body li {
  margin: 0.2rem 0;
  color: rgba(255, 255, 255, 0.9);
}

.modal-body h3 {
  font-size: 0.95rem;
  font-weight: 500;
  margin: 1rem 0 0.5rem 0;
}

.modal-body p {
  margin-bottom: 0.5rem;
}

/* Modal Action Buttons */
.modal-actions {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.modal-actions .btn {
  flex: 1;
  min-width: 140px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  border-radius: 6px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s ease;
}

.modal-actions .btn-primary {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.modal-actions .btn-primary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  transform: translateY(-1px);
}

.modal-actions .btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.8);
}

.modal-actions .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.4);
  color: white;
  transform: translateY(-1px);
}

/* Mobile optimizations */
@media (max-width: 575.98px) {
  .modal-dialog {
    margin: 0.5rem;
  }

  .modal-content {
    border-radius: 4px;
  }

  .modal-header {
    padding: 0.75rem;
  }

  .modal-body {
    padding: 0.75rem;
    font-size: 0.8rem;
  }

  .modal-title {
    font-size: 1rem;
  }

  .modal-actions {
    flex-direction: column;
    gap: 0.5rem;
  }

  .modal-actions .btn {
    flex: none;
    width: 100%;
  }
}

/* Responsive styles */
@media (max-width: 768px) {
  :root {
    --logo-size: 80px;
    --element-size: 80px;
  }

  .orbital-container {
    width: 100vw;
    height: 100vh;
    padding: 1rem;
    overflow: hidden;
    margin: 0;
  }

  .orbital-item {
    font-size: 0.75rem;
  }

  .orbital-item p {
    font-size: 0.75rem;
    line-height: 1.2;
  }

  .orbital-tooltip {
    position: fixed;
    bottom: 2rem;
    top: auto;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 300px;
    text-align: center;
  }
  .footer {
    background: rgba(43, 48, 53, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-icons {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 0 1rem;
    gap: 2rem;
  }

  .footer-icon-wrapper {
    width: 36px;
    height: 36px;
  }

  .footer-icon {
    width: 18px;
    height: 18px;
  }

  .footer-url {
    margin-top: 0.5rem;
    font-size: 0.7rem;
  }
}

/* Tablet styles */
@media (min-width: 768px) and (max-width: 1024px) {
  .orbit-modal {
    width: 80%;
    max-width: 700px;
  }

  .footer-icons {
    gap: 2.5rem;
  }

  .footer-icon-wrapper {
    width: 38px;
    height: 38px;
  }

  .footer-icon {
    width: 19px;
    height: 19px;
  }

  .contact-form {
    margin: 1.5rem 0;
  }

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

/* Mobile styles */
@media (max-width: 767px) {
  .orbit-modal {
    position: fixed;
    left: 8px;
    right: 8px;
    bottom: 0;
    top: auto;
    width: auto;
    max-width: calc(100% - 16px);
    height: 85vh;
    margin: 0;
    padding: 0;
    transform: translateY(100%);
    border-radius: 20px 20px 0 0;
    background: rgba(43, 48, 53, 0.98);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  }

  .orbit-modal.active {
    transform: translateY(0);
  }

  .orbit-modal .modal-inner {
    padding: 1.5rem;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .orbit-modal h2 {
    font-size: 1.25rem;
    margin: 0.5rem 0 1.5rem 0;
    padding-right: 2rem;
  }

  .orbit-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 30px;
    height: 30px;
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: none;
    font-size: 1.5rem;
    z-index: 1001;
  }

  .orbit-modal .modal-content {
    width: 100%;
    box-sizing: border-box;
    padding-right: 0.5rem;
  }

  .orbit-modal .modal-content ul {
    padding-left: 1.2rem;
    margin: 0.5rem 0;
    width: 100%;
    box-sizing: border-box;
  }

  .orbit-modal .modal-content li {
    margin: 0.25rem 0;
    width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
  }

  /* Verbesserte Form-Styles für mobile Geräte */
  .contact-form {
    margin: 1rem 0;
    width: 100%;
    box-sizing: border-box;
  }

  .form-group {
    margin-bottom: 1.25rem;
    width: 100%;
    box-sizing: border-box;
  }

  .form-group input[type="text"],
  .form-group input[type="email"],
  .form-group input[type="tel"],
  .form-group select,
  .form-group textarea {
    width: 100%;
    box-sizing: border-box;
    padding: 0.8rem;
    font-size: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
  }

  .submit-button {
    width: 100%;
    box-sizing: border-box;
    padding: 0.8rem;
    border-radius: 8px;
    font-weight: 500;
    margin-top: 1rem;
  }

  /* Company Info im Modal */
  .company-info {
    width: 100%;
    box-sizing: border-box;
    margin-top: 2rem;
    padding-top: 1.5rem;
  }
}

/* Large desktop styles */
@media (min-width: 1440px) {
  .orbit-modal {
    max-width: 800px;
  }

  .orbit-modal h2 {
    font-size: 1.4rem;
  }

  .orbit-modal .modal-content {
    font-size: 1rem;
  }

  .footer-icons {
    gap: 3.5rem;
  }

  .footer-icon-wrapper {
    width: 44px;
    height: 44px;
  }

  .footer-icon {
    width: 22px;
    height: 22px;
  }

  .footer-url {
    font-size: 0.8rem;
  }
}

/* Extra large screens */
@media (min-width: 1920px) {
  .orbit-modal {
    max-width: 1000px;
  }

  .orbit-modal h2 {
    font-size: 1.5rem;
  }

  .orbit-modal .modal-content {
    font-size: 1.1rem;
  }

  .footer-icons {
    gap: 4rem;
  }

  .footer-icon-wrapper {
    width: 48px;
    height: 48px;
  }

  .footer-icon {
    width: 24px;
    height: 24px;
  }

  .footer-url {
    font-size: 0.85rem;
  }
}

/* Contact Form Styles */
.contact-form {
  margin: 2rem 0;
  max-width: 100%;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  color: white;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
}

.checkbox-group label {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
}

.submit-button {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.75rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

.form-hint {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.company-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.company-info p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Cookie Banner Styling */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  color: white;
  padding: 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner.hide {
  transform: translateY(100%);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1.1rem;
  color: #fff;
}

.cookie-text p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #ccc;
}

.privacy-link {
  color: #007bff;
  text-decoration: underline;
}

.privacy-link:hover {
  color: #0056b3;
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.accept-btn {
  background: #007bff;
  color: white;
}

.accept-btn:hover {
  background: #0056b3;
  transform: translateY(-1px);
}

.decline-btn {
  background: #6c757d;
  color: white;
}

.decline-btn:hover {
  background: #545b62;
  transform: translateY(-1px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-form {
    margin: 1rem 0;
  }

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

  .submit-button {
    padding: 0.6rem 1.5rem;
  }
}

/* Language dropdown styles */
.language-dropdown {
  position: relative;
}

.language-menu {
  position: absolute;
  right: calc(100% + 0.5rem); 
  top: 50%; 
  transform: translateY(-50%); 
  background: rgba(43, 48, 53, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  padding: 0.5rem;
  width: 48px;
  visibility: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.language-menu::after {
  content: '';
  position: absolute;
  right: -15px; 
  top: 0; 
  height: 100%; 
  width: 15px; 
}

.language-dropdown:hover .language-menu {
  visibility: visible;
  opacity: 1;
}

.flag-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 0.25rem;
  opacity: 0.7;
}

.flag-icon:hover,
.flag-icon.active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

.flag-icon img {
  width: 32px;
  height: 20px;
  border-radius: 2px;
  object-fit: cover;
}

/* Mobile-specific overrides for language dropdown */
@media (max-width: 1023px) {
  .language-menu {
    bottom: calc(100% + 0.5rem);
    right: auto;
    left: 50%;
    top: auto;
    transform: translateX(-50%);
  }

  .language-menu::after {
    bottom: -15px;
    right: auto;
    left: 0;
    width: 100%;
    height: 15px;
  }
}

/* Vertical Icons Container */
.vertical-icons {
  display: none; /* Hidden by default for mobile */
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  flex-direction: column;
  gap: 1.5rem;
  z-index: 50;
}

.vertical-icons .footer-icon-wrapper {
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.vertical-icons .footer-icon-wrapper:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* Show vertical icons only on desktop */
@media (min-width: 1024px) {
  .vertical-icons {
    display: flex;
  }
  .mobile-only {
    display: none;
  }
}

/* Additional mobile styles */
@media (max-width: 1023px) {
  .vertical-icons {
    display: none;
  }
  .mobile-only {
    display: flex;
  }
}