/* Responsive navbar logo size */
.navbar-logo {
  height: 40px;
  min-width: 80px;
  min-height: 40px;
}
@media (max-width: 576px) {
  .navbar-logo {
    height: 36px;
    min-width: 36px;
    min-height: 24px;
  }
}
.typing-effect {
  font-size: 1.35rem;
  font-weight: 500;
  text-align: center;
  color: #11c94b;
  min-height: 2em;
  letter-spacing: 0.02em;
  font-family: 'IBM Plex Sans', 'Inter', sans-serif;
}

.typed-cursor {
  display: inline-block;
  font-weight: 600;
  color: #11c94b;
  font-size: 1.35rem;
  margin-left: 2px;
  transition: opacity 0.2s;
}


.modern-contact-box {
    background: #101010;
    border-radius: 32px;
    padding: 42px 36px;
    color: #fff;
    text-align: left;
    box-shadow: 0 8px 32px rgba(0,0,0,0.16);
    max-width: 540px;
    margin: auto;
  }

  .modern-headline {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
  }

  .modern-desc {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #d0d0d0;
  }

  .modern-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 18px;
  }

  .modern-tags span {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 18px;
    background: #222;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: 1.5px solid #333;
    /* transition: background 0.25s, border-color 0.25s; */
    transition: transform 0.2s cubic-bezier(.4,1.6,.4,1), box-shadow 0.2s;
    /* cursor: pointer; */
  }
  
  .modern-tags span:hover {
    transform: scale(1.12);
    /* No color, background, or border changes here */
    z-index: 1;
  }
/* 
  .modern-tags span:hover {
    background: #007bff;
    border-color: #007bff;
    color: #fff;
  } */

  .modern-tags .highlighted {
    background: none;
    border: 1.5px solid #11c94b;
    color: #11c94b;
  }

    .steps-header {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2rem, 4vw, 2.6rem);
      font-weight: 700;
      color: var(--bs-emphasis-color);
      margin-bottom: 2.5rem;
      letter-spacing: -1px;
      opacity: 0;
      animation: slideInFromLeft 0.8s cubic-bezier(0.23, 1, 0.32, 1) 1s forwards;
    }

    .intro-text {
      font-family: 'IBM Plex Sans', sans-serif;
      font-size: clamp(1.25rem, 2.7vw, 2rem);
      font-weight: 500;
      color: var(--bs-body-color);
      margin-top: 2rem;
      margin-bottom: 2.5rem;
      line-height: 1.6;
      letter-spacing: -0.01em;
      text-align: center;
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0;
      animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.8s forwards;
    }

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

    @keyframes scaleIn {
      from {
        opacity: 0;
        transform: scale(0.9);
      }
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    @keyframes slideInFromLeft {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bs-body-bg) !important;
      color: var(--bs-body-color) !important;
      margin: 0;
      transition: background 0.2s, color 0.2s;
      overflow-x: hidden;
    }
    .theme-toggle-switch {
      position: fixed;
      top: 2rem;
      right: 2rem;
      z-index: 100;
      display: flex;
      align-items: center;
      gap: 0.9rem;
      font-size: 1.13rem;
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      background: var(--bs-card-bg);
      padding: 0.5rem 1.1rem;
      border-radius: 2rem;
      box-shadow: 0 1px 6px rgba(0,0,0,0.04);
      opacity: 0.97;
      transition: background 0.2s, color 0.2s;
      user-select: none;
    }
    @media (max-width: 600px) {
      .theme-toggle-switch {
        top: 1rem;
        right: 1rem;
        padding: 0.4rem 0.8rem;
        font-size: 1rem;
      }
    }
    .main-hero {
      min-height: 100vh;
      height: 100svh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(120deg, var(--bs-card-bg) 75%, transparent 100%);
      width: 100%;
    }
    @keyframes fadeInSlowly {
      0% {
        opacity: 0;
        transform: scale(0.97);
        filter: blur(8px);
      }
      40% {
        opacity: 0.6;
        filter: blur(4px);
      }
      100% {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
      }
    }

    @keyframes dotAppear {
      0% {
        opacity: 0;
        transform: scale(0.5) translateY(10px);
      }
      50% {
        opacity: 1;
        transform: scale(1.2) translateY(0);
      }
      100% {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }

    .main-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(3rem, 10vw, 6.5rem);
      font-weight: 700;
      letter-spacing: -2px;
      line-height: 1.08;
      text-align: center;
      background: linear-gradient(135deg, var(--bs-emphasis-color) 60%, #F04444 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      text-shadow: 0 0 60px rgba(0,0,0,0.1);
      margin-bottom: 0;
      opacity: 0;
      filter: blur(8px);
      animation: fadeInSlowly 2.5s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
    }
    
    [data-bs-theme="dark"] .main-headline {
      background: linear-gradient(135deg, #fff 60%, #FF5C5C 100%);
      -webkit-background-clip: text;
      background-clip: text;
      text-shadow: 0 0 60px rgba(255,255,255,0.1);
    }

    html[data-bs-theme="light"] .headline-dot {
      color: #F04444;
      font-size: 1.1em;
      vertical-align: super;
      transition: color 0.3s ease;
      display: inline-block;
      animation: dotAppear 2.5s cubic-bezier(0.23, 1, 0.32, 1) 0.8s forwards;
      opacity: 0;
    }
    html[data-bs-theme="dark"] .headline-dot {
      color: #0D6EFD;
      transition: color 0.3s ease;
    }
    /* Fallback for when theme attribute is not set */
    .headline-dot {
      color: #F04444;
      font-size: 1.1em;
      vertical-align: super;
      transition: color 0.3s ease;
      display: inline-block;
      animation: dotAppear 2.5s cubic-bezier(0.23, 1, 0.32, 1) 0.8s forwards;
      opacity: 0;
    }
    .steps-section {
      padding-top: 3rem;
      padding-bottom: 3rem;
      min-height: 60vh;
    }
    @keyframes slideUpFade {
      0% {
        opacity: 0;
        transform: translateY(40px);
      }
      30% {
        opacity: 0.3;
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .step-card {
      opacity: 0;
      transform: translateY(40px);
      transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                  box-shadow 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                  border-color 0.4s ease;
      background: var(--bs-card-bg);
      border-radius: 1.2rem;
      padding: 2.5rem;
      margin-bottom: 2.2rem;
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      max-width: 640px;
      margin-left: auto;
      margin-right: auto;
      border: 1px solid rgba(var(--bs-primary-rgb), 0.07);
      position: relative;
      overflow: hidden;
    }
    
    .step-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background: #F04444;
      opacity: 0;
      transition: opacity 0.6s ease;
    }
    
    [data-bs-theme="dark"] .step-card {
      background: rgba(255, 255, 255, 0.03);
      border-color: rgba(255, 255, 255, 0.08);
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }
    
    .step-card.visible {
      animation: slideUpFade 1.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
      transform: translateY(-5px) scale(1.02);
      box-shadow: 0 12px 28px rgba(0,0,0,0.15);
      border-color: rgba(var(--bs-primary-rgb), 0.2);
    }
    
    .step-card.visible::before {
      opacity: 1;
    }
    
    [data-bs-theme="dark"] .step-card.visible {
      background: rgba(255, 255, 255, 0.05);
      box-shadow: 0 12px 28px rgba(0,0,0,0.3);
    }
    
    .step-number {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 2rem;
      color: #F04444;
      margin-right: 1.2rem;
      vertical-align: top;
      opacity: 0.9;
    }
    
    [data-bs-theme="dark"] .step-number {
      color: #FF5C5C;
    }
    
    .step-title {
      font-family: 'Playfair Display', serif;
      font-size: 1.4rem;
      font-weight: 700;
      margin-bottom: 0.5rem;
      display: inline-block;
      color: var(--bs-emphasis-color);
    }
    
    .step-desc {
      font-size: 1.1rem;
      color: var(--bs-secondary-color);
      font-style: italic;
      margin-left: 3.2rem;
      opacity: 0.9;
      transition: opacity 0.3s ease;
    }
    
    .step-card:hover .step-desc {
      opacity: 1;
    }
    @media (max-width: 600px) {
      .main-hero {
        min-height: 100svh;
        height: 100svh;
      }
      .step-card {
        padding: 1.2rem 0.7rem;
      }
    }
    .main-subtext {
      font-size: 1.25rem;
      color: var(--bs-secondary-color);
      margin-top: 1.3rem;
      margin-bottom: 0;
      text-align: center;
      font-weight: 400;
      font-style: italic;
      max-width: 540px;
      margin-left: auto;
      margin-right: auto;
      opacity: 0;
      animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.6s forwards;
    }
    .contact-invite {
      margin-top: 8rem;
      margin-bottom: 6rem;
      text-align: center;
      padding: 6rem 2rem;
      position: relative;
      opacity: 0;
      transform: translateY(20px);
      background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(var(--bs-primary-rgb), 0.03) 50%,
        transparent 100%
      );
    }

    .contact-invite.visible {
      animation: contactFadeIn 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    }

    @keyframes contactFadeIn {
      0% {
        opacity: 0;
        transform: translateY(20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .contact-headline {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 5vw, 3.2rem);
      font-weight: 700;
      color: var(--bs-emphasis-color);
      margin-bottom: 1.5rem;
      letter-spacing: -1px;
      line-height: 1.2;
    }

    .contact-desc {
      font-size: 1.4rem;
      font-weight: 400;
      color: var(--bs-secondary-color);
      margin-bottom: 2rem;
      max-width: 540px;
      margin-left: auto;
      margin-right: auto;
    }

    .contact-button {
      display: inline-flex;
      align-items: center;
      gap: 0.8rem;
      color: var(--bs-emphasis-color);
      font-weight: 500;
      font-size: 1.2rem;
      text-decoration: none;
      padding: 1rem 2rem;
      border-radius: 1rem;
      background: var(--bs-card-bg);
      border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
      transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .contact-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
      border-color: rgba(var(--bs-primary-rgb), 0.2);
      color: var(--bs-emphasis-color);
    }

    [data-bs-theme="dark"] .contact-button {
      background: rgba(255, 255, 255, 0.03);
      border-color: rgba(255, 255, 255, 0.08);
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

    [data-bs-theme="dark"] .contact-button:hover {
      background: rgba(255, 255, 255, 0.05);
      box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }

    .contact-button svg {
      width: 1.2em;
      height: 1.2em;
      transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .contact-button:hover svg {
      transform: translateX(4px);
    }

    @media (max-width: 600px) {
      .contact-invite {
        margin-top: 4rem;
        margin-bottom: 3rem;
        padding: 3rem 1.5rem;
      }
      .contact-button {
        width: 100%;
        justify-content: center;
      }
    }

    .navbar {
      padding: 1.5rem 0;
      background: transparent;
      /* position: fixed; */
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
    }

    /* .brand-text {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.4rem;
      color: var(--bs-emphasis-color);
    }

    .brand-dot {
      color: #F04444;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
      font-size: 1.6rem;
    }

    [data-bs-theme="dark"] .brand-dot {
      color: #FF5C5C;
    } */

.brand-text {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--bs-emphasis-color);
  margin: 0;
  line-height: 1;
}

.brand-automate {
  color: #11c94b;
  font-weight: 700;
  letter-spacing: 0.1px;
}

.brand-it {
  color: #0d6efd;
  font-weight: 700;
  letter-spacing: 0px;
  font-size: 1.2rem;
}

.brand-dot {
  color: #F04444;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.13rem;
  line-height: 1;
  vertical-align: middle;
  margin: 0;
  padding: 0 1px;
  transition: color 0.2s;
}

[data-bs-theme="dark"] .brand-dot {
  color: #FF5C5C;
}


    .theme-dropdown .btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.6rem 1rem;
      background: var(--bs-card-bg);
      border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
      border-radius: 1rem;
      color: var(--bs-emphasis-color);
      font-size: 0.95rem;
      font-weight: 500;
      transition: all 0.2s ease;
    }

    .theme-dropdown .btn:hover,
    .theme-dropdown .btn:focus {
      border-color: rgba(var(--bs-primary-rgb), 0.2);
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }

    [data-bs-theme="dark"] .theme-dropdown .btn {
      background: rgba(255, 255, 255, 0.03);
      border-color: rgba(255, 255, 255, 0.08);
    }

    [data-bs-theme="dark"] .theme-dropdown .btn:hover,
    [data-bs-theme="dark"] .theme-dropdown .btn:focus {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.15);
    }

    .theme-icon {
      opacity: 0.8;
    }

    [data-bs-theme="light"] .moon-icon {
      display: none;
    }

    [data-bs-theme="dark"] .sun-icon {
      display: none;
    }

    .dropdown-menu {
      min-width: 8rem;
      padding: 0.4rem;
      border-radius: 0.8rem;
      border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    [data-bs-theme="dark"] .dropdown-menu {
      background: rgba(255, 255, 255, 0.03);
      border-color: rgba(255, 255, 255, 0.08);
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

    .dropdown-item {
      padding: 0.5rem 0.8rem;
      border-radius: 0.5rem;
      font-size: 0.95rem;
      font-weight: 500;
    }

    .dropdown-item:hover {
      background: rgba(var(--bs-primary-rgb), 0.08);
    }

    [data-bs-theme="dark"] .dropdown-item:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    @media (max-width: 600px) {
      .navbar {
        padding: 1rem 0;
      }
      .theme-text {
        display: none;
      }
      .theme-dropdown .btn {
        padding: 0.5rem;
      }
    }

    .contact-form {
      max-width: 640px;
      margin: 3rem auto;
    }

    .form-floating > label {
      color: var(--bs-secondary-color);
    }

    .form-control {
      border-radius: 1rem;
      border: 1px solid rgba(var(--bs-primary-rgb), 0.1);
      padding: 1rem;
      font-size: 1rem;
      background: var(--bs-card-bg);
      color: var(--bs-emphasis-color);
      transition: all 0.3s ease;
    }

    .form-control:focus {
      border-color: rgba(var(--bs-primary-rgb), 0.3);
      box-shadow: 0 0 0 0.25rem rgba(var(--bs-primary-rgb), 0.1);
    }

    [data-bs-theme="dark"] .form-control {
      background: rgba(255, 255, 255, 0.03);
      border-color: rgba(255, 255, 255, 0.08);
    }

    [data-bs-theme="dark"] .form-control:focus {
      background: rgba(255, 255, 255, 0.05);
      border-color: rgba(255, 255, 255, 0.2);
    }

    .form-floating > .form-control {
      padding: 1.5rem 1rem;
    }

    .form-floating > textarea.form-control {
      padding-top: 1.5rem;
    }

    .submit-btn {
      margin-top: 1rem;
    }

    .alert {
      border-radius: 1rem;
      padding: 1rem 1.5rem;
      text-align: center;
      border: none;
      opacity: 0;
      transform: translateY(20px);
      transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    }

    .alert.show {
      opacity: 1;
      transform: translateY(0);
    }

    .alert-success {
      background: rgba(25, 135, 84, 0.1);
      color: #198754;
    }

    [data-bs-theme="dark"] .alert-success {
      background: rgba(25, 135, 84, 0.2);
      color: #20c997;
    }

    .alert-danger {
      background: rgba(220, 53, 69, 0.1);
      color: #dc3545;
    }

    [data-bs-theme="dark"] .alert-danger {
      background: rgba(220, 53, 69, 0.2);
      color: #ff6b6b;
    }

    .info-box {
      background: var(--bs-card-bg);
      border-radius: 1.2rem;
      padding: 2.5rem;
      box-shadow: 0 4px 20px rgba(168, 69, 69, 0.08);
      transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    }

    [data-bs-theme="dark"] .info-box {
      background: rgba(255, 255, 255, 0.03);
      border-radius: 1.2rem;
      padding: 2.5rem;
      border-color: rgba(255, 255, 255, 0.08);
      box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    }

    .info-box:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    .info-headline {
      font-family: 'Playfair Display', serif;
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--bs-emphasis-color);
    }

    .info-desc {
      font-size: 1.2rem;
      color: var(--bs-secondary-color);
      margin-bottom: 1.5rem;
    }

    .info-text {
      font-size: 1rem;
      color: var(--bs-body-color);
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    .info-list {
      list-style: none;
      padding: 0;
      margin: 0;
      color: var(--bs-body-color);
      font-size: 1rem;
    }

    .info-list li {
      position: relative;
      padding-left: 1.5rem;
      margin-bottom: 0.5rem;
    }

    .info-list li::before {
      content: '✔';
      position: absolute;
      left: 0;
      top: 0;
      color: #F04444;
      font-size: 1.2rem;
      line-height: 1;
    }

    @media (max-width: 600px) {
      .contact-section {
        flex-direction: column;
      }
      .contact-invite {
        width: 100%;
        margin-bottom: 2rem;
      }
      .info-box {
        width: 100%;
      }
    }

    .contact-list {
      list-style: none;
      padding: 20px;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      justify-content: center;
      width: 100%;
    }

    .contact-list li {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px 20px;
      border-radius: 20px;
      background-color: #007bff;
      color: #fff;
      font-size: 0.9rem;
      font-weight: bold;
      text-align: center;
      cursor: pointer;
      transition: all 0.3s ease;
      width: 100%;
    }

    .contact-list li:hover {
      background-color: #0056b3;
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    @media (max-width: 768px) {
      .contact-list {
        padding: 15px;
        gap: 15px;
      }
      .contact-list li {
        padding: 10px 15px;
      }
    }

.faq-section {
  padding: 4rem 0;
  max-width: 800px;
  margin: 0 auto;
}

.faq-header {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--bs-emphasis-color);
  margin-bottom: 2.5rem;
  letter-spacing: -1px;
  text-align: center;
}

/* Accordion Card Styling */
.accordion-item {
  background: #fff;
  border: 1px solid #e2e6ea;
  border-radius: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* Accordion Header Button */
.accordion-button {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1.5rem;
  background: #f8fafc;
  color: #23272b;
  box-shadow: none;
  border: none;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
  color: #007bff;
  background: #e9f3fd;
  box-shadow: none;
}

.accordion-button::after {
  background-size: 1.2rem;
  transition: all 0.3s ease;
}

.accordion-button:hover,
.accordion-button:focus {
  background: #eef6fd;
  color: #0056b3;
}

/* Accordion Body */
.accordion-body {
  font-size: 1rem;
  line-height: 1.6;
  color: #23272b;
  background: #f9f9fb;
  padding: 1rem 1.5rem 1.5rem;
  border-bottom-left-radius: 1rem;
  border-bottom-right-radius: 1rem;
}

/* Dark Mode Tweaks */
[data-bs-theme="dark"] .accordion-item {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}

[data-bs-theme="dark"] .accordion-button {
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
}

[data-bs-theme="dark"] .accordion-button:not(.collapsed) {
  background: rgba(255, 255, 255, 0.08);
  color: #11c94b;
}

[data-bs-theme="dark"] .accordion-button:hover,
[data-bs-theme="dark"] .accordion-button:focus {
  background: rgba(255, 255, 255, 0.11);
}

[data-bs-theme="dark"] .accordion-body {
  background: rgba(255, 255, 255, 0.03);
  color: #e2e2e2;
}

/* Focus/Active state border (optional for accessibility) */
.accordion-button:focus {
  border-color: #b6d4fe;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.10);
}

.info-box {
    position: relative;
    background: var(--bs-card-bg);
    border-radius: 1.2rem;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
  }

  [data-bs-theme="dark"] .info-box {
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }

  .info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #0D6EFD;
    transition: width 1s ease;
  }

  .info-box:hover::before {
    width: 100%;
  }

  [data-bs-theme="dark"] .info-box::before {
    background: #0D6EFD;
  }

  .info-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  }

  [data-bs-theme="dark"] .info-box:hover {
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
  }

  .info-headline {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bs-emphasis-color);
    margin-bottom: 1rem;
  }

  .info-desc {
    font-size: 1.1rem;
    color: var(--bs-secondary-color);
    line-height: 1.6;
  }
  .thank-you-message {
    padding: 3rem 1.5rem;
    color: var(--bs-emphasis-color);
  }

  .thank-you-message .checkmark {
    color: #28a745;
    animation: checkmark 0.5s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  }

  @keyframes checkmark {
    0% {
      transform: scale(0.3);
      opacity: 0;
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  .thank-you-message h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.5s forwards;
  }

  .thank-you-message p {
    opacity: 0;
    animation: fadeIn 0.5s ease-out 0.7s forwards;
  }

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