/* Download Page Specific Styles */
:root {
    --primary-color: #6c63ff;
    --primary-dark: #5a52d9;
    --secondary-color: #f0f0ff;
    --text-color: #2d3748;
    --text-light: #718096;
    --background-light: #f7fafc;
    --background-dark: #1a202c;
    --success-color: #38a169;
    --error-color: #e53e3e;
    --border-color: #e2e8f0;
    --border-radius: 0.75rem;
    --box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s ease;
  }
  
  /* Download Hero Section */
  .download-hero {
    background: linear-gradient(135deg, #6c63ff 0%, #a78bfa 100%);
    color: white;
    padding: 6rem 0;
  }
  
  .download-hero-content {
    display: flex;
    align-items: center;
    gap: 3rem;
  }
  
  .download-hero-text {
    flex: 1;
  }
  
  .download-hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
  }
  
  .download-hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
  }
  
  .download-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
  }
  
  .phone-mockup {
    max-height: 600px;
    border-radius: 2rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
  }
  
  /* Download Options Section */
  .download-options-section {
    background-color: white;
    padding: 6rem 0;
  }
  
  .platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }
  
  .platform-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  }
  
  .platform-card i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }
  
  .platform-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .platform-card p {
    color: var(--text-light);
    margin-bottom: 2rem;
  }
  
  .platform-card .btn-primary,
  .platform-card .btn-secondary {
    margin-top: auto;
  }
  
  /* QR Code Section */
  .qr-section {
    background-color: var(--secondary-color);
    padding: 6rem 0;
  }
  
  .qr-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
  }
  
  .qr-text {
    flex: 1;
  }
  
  .qr-text h2 {
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 1.5rem;
  }
  
  .qr-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: left;
  }
  
  .qr-benefits {
    margin-bottom: 2rem;
  }
  
  .qr-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    font-weight: 500;
  }
  
  .qr-benefits li i {
    color: var(--success-color);
    margin-right: 1rem;
  }
  
  .qr-image {
    flex: 0 0 250px;
    display: flex;
    justify-content: center;
  }
  
  .qr-code-img {
    border-radius: 1rem;
    box-shadow: var(--box-shadow);
  }
  
  /* System Requirements Section */
  .system-requirements {
    background-color: white;
    padding: 6rem 0;
  }
  
  .requirements-tabs {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
  }
  
  .tabs-header {
    display: flex;
    background-color: var(--secondary-color);
  }
  
  .tab-btn {
    flex: 1;
    padding: 1.25rem;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    transition: var(--transition);
  }
  
  .tab-btn.active {
    background-color: white;
    color: var(--primary-color);
  }
  
  .tab-btn:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.5);
  }
  
  .tabs-content {
    padding: 2rem;
  }
  
  .tab-content {
    display: none;
  }
  
  .tab-content.active {
    display: block;
  }
  
  .requirements-list {
    list-style: none;
  }
  
  .requirements-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .requirements-list li:last-child {
    border-bottom: none;
  }
  
  .coming-soon-message {
    text-align: center;
    padding: 2rem;
  }
  
  .coming-soon-message i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
  }
  
  .coming-soon-message h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }
  
  .coming-soon-message p {
    color: var(--text-light);
    margin-bottom: 2rem;
  }
  
  /* FAQ Section */
  .faq-section {
    background-color: var(--secondary-color);
    padding: 6rem 0;
  }
  
  .faq-accordion {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .faq-item {
    background-color: white;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow);
    overflow: hidden;
  }
  
  .faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  
  .faq-question h3 {
    margin-bottom: 0;
    font-size: 1.25rem;
  }
  
  .faq-answer {
    padding: 0 1.5rem;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }
  
  .faq-answer p {
    padding-bottom: 1.5rem;
    color: var(--text-light);
  }
  
  /* CTA Section */
  .download-cta {
    background: linear-gradient(135deg, #6c63ff 0%, #a78bfa 100%);
    color: white;
    padding: 6rem 0;
    text-align: center;
  }
  
  .download-cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .download-cta p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
  }
  
  .cta-buttons-large {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  /* Store Buttons */
  .store-button {
    display: flex;
    align-items: center;
    background-color: var(--background-dark);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    transition: var(--transition);
  }
  
  .store-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }
  
  .store-button i {
    font-size: 2rem;
    margin-right: 0.75rem;
  }
  
  .store-text {
    display: flex;
    flex-direction: column;
  }
  
  .small-text {
    font-size: 0.7rem;
    font-weight: normal;
  }
  
  .big-text {
    font-size: 1.1rem;
    font-weight: bold;
  }
  
  .store-button.large {
    padding: 1.25rem 2rem;
  }
  
  .store-button.large i {
    font-size: 2.5rem;
  }
  
  .store-button.large .big-text {
    font-size: 1.25rem;
  }
  
  /* Animation classes */
  .animate-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  
  .animate-in {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Media Queries for Download Page */
  @media (max-width: 992px) {
    .download-hero-content {
      flex-direction: column;
      text-align: center;
    }
  
    .qr-content {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
    }
  
    .qr-text h2,
    .qr-text p {
      text-align: center;
    }
  
    .qr-benefits li {
      justify-content: center;
    }
  }
  
  @media (max-width: 768px) {
    .download-hero-text h1 {
      font-size: 2.5rem;
    }
  
    .tabs-header {
      flex-direction: column;
    }
  
    .tab-btn {
      padding: 1rem;
    }
  
    .tab-btn.active {
      border-left: 4px solid var(--primary-color);
    }
  
    .store-buttons {
      flex-direction: column;
      align-items: center;
    }
  }
  
  @media (max-width: 576px) {
    .download-hero {
      padding: 4rem 0;
    }
  
    .download-hero-text h1 {
      font-size: 2rem;
    }
  
    .download-cta h2 {
      font-size: 2rem;
    }
  
    .platform-card {
      padding: 2rem 1.5rem;
    }
  
    .platform-card i {
      font-size: 3rem;
    }
  
    .platform-card h3 {
      font-size: 1.5rem;
    }
  
    .qr-text h2 {
      font-size: 2rem;
    }
  
    .faq-question h3 {
      font-size: 1.1rem;
    }
  }
  
  