/* Truhive - Main Stylesheet
   Modern, futuristic design with black background, white text, and orange highlights
*/

:root {
  --primary-bg: #000000;
  --secondary-bg: #111111;
  --card-bg: #1a1a1a;
  --primary-text: #ffffff;
  --secondary-text: #cccccc;
  --highlight-color: #FFB84D;
  --highlight-hover: #FFC266;
  --border-color: #333333;
  --gradient-start: #FFB84D;
  --gradient-end: #FFC266;
  --success-color: #00b894;
  --warning-color: #fdcb6e;
  --danger-color: #d63031;
  --info-color: #0984e3;
  --shadow-color: rgba(0, 0, 0, 0.5);
  --glass-bg: rgba(26, 26, 26, 0.7);
  --glass-border: rgba(255, 255, 255, 0.1);
}

/* Base Styles */
html, body {
  background-color: var(--primary-bg);
  color: var(--primary-text);
  font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.25rem;
  position: relative;
  padding-bottom: 0.5rem;
}

h2:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50px;
  background-color: var(--highlight-color);
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1.5rem;
}

a {
  color: var(--highlight-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--highlight-hover);
  text-decoration: none;
}

/* Utility Classes */
.text-highlight {
  color: var(--highlight-color);
}

.bg-glass {
  background-color: var(--glass-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
}

.shadow-custom {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.blob-shape {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

/* Buttons */
.btn {
  border-radius: 8px;
  padding: 0.6rem 1.5rem;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 8px;
  z-index: -2;
}

.btn::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
  border-radius: 8px;
  z-index: -1;
}

.btn:hover::before {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  color: white;
}

.btn-primary:hover {
  box-shadow: 0 5px 15px rgba(255, 184, 77, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--highlight-color);
  color: var(--highlight-color);
}

.btn-outline:hover {
  color: var(--primary-text);
  background-color: var(--highlight-color);
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
}

.navbar {
  padding: 0.75rem 0;
  background-color: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

.navbar-brand {
  display: flex;
  align-items: center;
  font-weight: 800;
  font-size: 1.75rem;
}

.navbar-brand img {
  height: 40px;
  margin-right: 0.5rem;
}

.nav-link {
  color: var(--primary-text) !important;
  font-weight: 600;
  padding: 0.5rem 1rem !important;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: var(--highlight-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
  width: 70%;
}

.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.canada-tag {
  font-size: 0.7rem;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  margin-left: 0.5rem;
  display: inline-flex;
  align-items: center;
  color: var(--secondary-text);
}

.canada-tag i {
  color: #FF0000;
  margin-right: 0.25rem;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 12rem 0 8rem;
  background: var(--primary-bg) url('../images/grid-pattern.svg') repeat;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 159, 0, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.hero p {
  font-size: 1.25rem;
  color: var(--secondary-text);
  margin-bottom: 2rem;
  max-width: 80%;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-image {
  position: relative;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.floating-element {
  position: absolute;
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Beta Testing Section */
.beta-testing {
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--primary-bg) 0%, var(--secondary-bg) 100%);
  position: relative;
  overflow: hidden;
}

.beta-testing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../images/grid-pattern.svg') repeat;
  opacity: 0.1;
  z-index: 0;
}

.beta-badge {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(255, 184, 77, 0.3);
  position: relative;
  z-index: 1;
}

.beta-badge i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

.beta-form-container {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 3rem auto 0;
}

.beta-form {
  background-color: var(--card-bg);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.beta-form .form-group {
  margin-bottom: 1.5rem;
}

.beta-form input,
.beta-form select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background-color: var(--secondary-bg);
  color: var(--primary-text);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.beta-form select {
  cursor: pointer;
}

.beta-form input:focus,
.beta-form select:focus {
  outline: none;
  border-color: var(--highlight-color);
  box-shadow: 0 0 0 3px rgba(255, 184, 77, 0.1);
}

.beta-form input::placeholder {
  color: var(--secondary-text);
}

.beta-form select option {
  background-color: var(--secondary-bg);
  color: var(--primary-text);
}

.btn-beta {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.beta-message {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
}

.beta-message.success {
  background-color: rgba(0, 184, 148, 0.1);
  color: var(--success-color);
  border: 1px solid rgba(0, 184, 148, 0.3);
}

.beta-message.error {
  background-color: rgba(214, 48, 49, 0.1);
  color: var(--danger-color);
  border: 1px solid rgba(214, 48, 49, 0.3);
}

.beta-benefits {
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

/* App Download Buttons */
.app-download-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.app-download-buttons a {
  display: inline-block;
  height: 60px;
  transition: all 0.3s ease;
}

.app-download-buttons a:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.app-download-buttons img {
  height: 60px;
  width: auto;
  display: block;
}

/* Ensure Google Play button matches Apple App Store button size */
.google-play-link {
  transform: translateY(-15px);
}

.google-play-link img {
  height: 90px;
  width: 200px; /* Maintains the same aspect ratio */
}

@media (max-width: 576px) {
  .app-download-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
  
  .app-download-buttons a {
    height: 50px;
  }
  
  .app-download-buttons img {
    height: 50px;
  }
  
  .google-play-link img {
    height: 60px;
    width: 202px; /* Maintains aspect ratio at smaller size */
  }
}

.benefit-item {
  text-align: center;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  background-color: rgba(255, 184, 77, 0.1);
}

.benefit-item i {
  font-size: 2rem;
  color: var(--highlight-color);
  margin-bottom: 1rem;
}

.benefit-item h5 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.benefit-item p {
  margin-bottom: 0;
  color: var(--secondary-text);
  font-size: 0.9rem;
}

/* Features Section */
.features {
  padding: 6rem 0;
  position: relative;
  background-color: var(--secondary-bg);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.feature-card {
  padding: 2rem;
  border-radius: 15px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gradient-start), var(--gradient-end));
  transition: all 0.3s ease;
}

.feature-card:hover::before {
  width: 6px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  color: white;
}

.feature-card h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.feature-card p {
  color: var(--secondary-text);
  margin-bottom: 0;
}

/* Post Types Section */
.post-types {
  padding: 6rem 0;
  position: relative;
}

.post-type-tabs {
  margin-bottom: 3rem;
  display: flex;
  justify-content: center;
  border-bottom: none;
}

.post-type-tabs .nav-item {
  margin: 0 0.5rem;
}

.post-type-tabs .nav-link {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  color: var(--secondary-text) !important;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.post-type-tabs .nav-link.active,
.post-type-tabs .nav-link:hover {
  color: var(--primary-text) !important;
  background-color: var(--highlight-color);
  border-color: var(--highlight-color);
}

.post-example {
  background-color: var(--card-bg);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.post-example:hover {
  transform: scale(1.02);
}

.post-example img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.post-author {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.post-author img {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  margin-right: 1rem;
  margin-bottom: 0;
}

.post-author-info h5 {
  margin-bottom: 0;
  font-size: 1rem;
}

.post-author-info p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: var(--secondary-text);
}

.post-metadata {
  display: flex;
  margin-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
}

.post-metadata-item {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
  color: var(--secondary-text);
  font-size: 0.9rem;
}

.post-metadata-item i {
  margin-right: 0.5rem;
  color: var(--highlight-color);
}

/* AI Buddy Section */
.ai-buddy {
  padding: 6rem 0;
  background-color: var(--secondary-bg);
  position: relative;
  overflow: hidden;
}

.ai-chat-demo {
  background-color: var(--card-bg);
  border-radius: 15px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.chat-header {
  background-color: var(--secondary-bg);
  padding: 1rem;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
}

.ai-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 1rem;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.chat-title h4 {
  margin-bottom: 0;
  font-size: 1.25rem;
}

.chat-title p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: var(--highlight-color);
}

.chat-messages {
  padding: 1.5rem;
  max-height: 350px;
  overflow-y: auto;
}

.message {
  margin-bottom: 1.5rem;
  max-width: 80%;
}

.message.user {
  margin-left: auto;
}

.message-bubble {
  padding: 1rem;
  border-radius: 15px;
}

.message.ai .message-bubble {
  background-color: var(--secondary-bg);
  border-top-left-radius: 0;
}

.message.user .message-bubble {
  background-color: var(--highlight-color);
  border-top-right-radius: 0;
}

.message-time {
  display: block;
  font-size: 0.75rem;
  color: var(--secondary-text);
  margin-top: 0.5rem;
}

.message.user .message-time {
  text-align: right;
}

.chat-input {
  padding: 1rem;
  border-top: 1px solid var(--border-color);
  background-color: var(--secondary-bg);
}

.chat-input form {
  display: flex;
  align-items: center;
}

.chat-input input {
  flex: 1;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  color: var(--primary-text);
  padding: 0.75rem 1rem;
  border-radius: 25px;
}

.chat-input input:focus {
  outline: none;
  border-color: var(--highlight-color);
}

.chat-input button {
  background-color: var(--highlight-color);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.chat-input button:hover {
  background-color: var(--highlight-hover);
  transform: scale(1.05);
}

/* Security Section */
.security {
  padding: 6rem 0;
  position: relative;
}

.security-visual {
  position: relative;
}

.security-illustration {
  max-width: 100%;
  border-radius: 15px;
}

.security-badge {
  position: absolute;
  bottom: -20px;
  right: 20px;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  display: flex;
  align-items: center;
  box-shadow: 0 10px 20px rgba(255, 184, 77, 0.3);
}

.security-badge i {
  margin-right: 0.5rem;
  font-size: 1.25rem;
}

.security-features {
  margin-top: 2rem;
}

.security-feature {
  display: flex;
  margin-bottom: 1.5rem;
}

.security-feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: rgba(255, 184, 77, 0.1);
  color: var(--highlight-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 1rem;
  font-size: 1.25rem;
}

.security-feature-content h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.security-feature-content p {
  margin-bottom: 0;
  color: var(--secondary-text);
}

/* CTA Section */
.cta {
  padding: 6rem 0;
  background-color: var(--secondary-bg);
  text-align: center;
}

.cta h2 {
  margin-left: auto;
  margin-right: auto;
}

.cta h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.cta p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

/* Footer */
footer {
  background-color: var(--card-bg);
  padding: 4rem 0 0;
  margin-top: auto;
}

.footer-logo {
  height: 50px;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--secondary-text);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--highlight-color);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--secondary-bg);
  color: var(--secondary-text);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--highlight-color);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.footer-bottom p {
  margin-bottom: 0;
}

.canadian-footer-tag {
  display: flex;
  align-items: center;
  color: var(--secondary-text);
  margin-bottom: 1rem;
}

.canadian-footer-tag i {
  color: #FF0000;
  margin-right: 0.5rem;
}

.canadian-footer {
  margin-top: 1rem;
}

.canadian-provinces {
  font-size: 0.8rem;
  color: var(--secondary-text);
}

/* Policy Pages */
.page-header {
  padding: 9rem 0 3rem;
  background-color: var(--secondary-bg);
}

.canadian-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.maple-leaf {
  height: 20px;
  margin-right: 0.5rem;
}

.policy-content {
  padding: 4rem 0;
}

.policy-section {
  margin-bottom: 3rem;
}

.policy-section h3 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.policy-section ul {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
}

.policy-section ul li {
  margin-bottom: 0.75rem;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Styles */
@media (max-width: 992px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero {
    padding: 9rem 0 5rem;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .post-types, .features, .ai-buddy, .security, .cta {
    padding: 4rem 0;
  }
  
  .feature-card {
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .hero {
    padding: 7rem 0 4rem;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
    max-width: 100%;
  }
  
  .hero-cta {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .section-title {
    margin-bottom: 2.5rem;
  }
  
  .post-type-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
  
  .post-type-tabs .nav-item {
    margin: 0 0.25rem;
  }
  
  .post-type-tabs .nav-link {
    padding: 0.5rem 1rem;
    white-space: nowrap;
  }
  
  .ai-chat-demo {
    margin-top: 2rem;
  }
  
  .security-badge {
    position: relative;
    bottom: auto;
    right: auto;
    display: inline-flex;
    margin-top: 1.5rem;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero h1 {
    font-size: 2.25rem;
  }
  
  .features, .post-types, .ai-buddy, .security, .cta {
    padding: 3rem 0;
  }
  
  .footer {
    padding: 3rem 0 0;
  }
}

/* Night Mode Styles (Default) */
:root.light-mode {
  --primary-bg: #f8f9fa;
  --secondary-bg: #eaeaea;
  --card-bg: #ffffff;
  --primary-text: #212529;
  --secondary-text: #6c757d;
  --border-color: #dee2e6;
  --glass-bg: rgba(248, 249, 250, 0.7);
  --glass-border: rgba(0, 0, 0, 0.1);
}

/* Additional Animations */
.animate-fadeInUp {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-pulse {
  animation: pulse 2s infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: var(--secondary-bg);
}

::-webkit-scrollbar-thumb {
  background-color: var(--highlight-color);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--highlight-hover);
}
/* Beta CTA Buttons */
.beta-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.beta-cta-buttons .btn {
  min-width: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.beta-cta-buttons .btn i {
  font-size: 1.25rem;
  margin-right: 0.75rem;
}

.beta-cta-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255, 184, 77, 0.4);
}

/* Feedback Section */
.feedback {
  padding: 6rem 0;
  background-color: var(--primary-bg);
  position: relative;
}

.feedback-info h2 {
  margin-bottom: 1.5rem;
}

.feedback-info p {
  font-size: 1.1rem;
  color: var(--secondary-text);
  margin-bottom: 2rem;
}

.feedback-features {
  margin-top: 2rem;
}

.feedback-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.feedback-feature-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background-color: rgba(255, 184, 77, 0.1);
  color: var(--highlight-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-right: 1rem;
  font-size: 1.25rem;
}

.feedback-feature h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-text);
}

.feedback-feature p {
  margin-bottom: 0;
  color: var(--secondary-text);
  font-size: 0.95rem;
}

.feedback-form-container {
  background-color: var(--card-bg);
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feedback-form .form-group {
  margin-bottom: 1.5rem;
}

.feedback-form input,
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background-color: var(--secondary-bg);
  color: var(--primary-text);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.feedback-form input:focus,
.feedback-form select:focus,
.feedback-form textarea:focus {
  outline: none;
  border-color: var(--highlight-color);
  box-shadow: 0 0 0 3px rgba(255, 184, 77, 0.1);
}

.feedback-form input::placeholder,
.feedback-form textarea::placeholder {
  color: var(--secondary-text);
}

.feedback-form select {
  cursor: pointer;
}

.feedback-form select option {
  background-color: var(--secondary-bg);
  color: var(--primary-text);
}

.feedback-form textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-feedback {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.feedback-message {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
}

.feedback-message.success {
  background-color: rgba(0, 184, 148, 0.1);
  color: var(--success-color);
  border: 1px solid rgba(0, 184, 148, 0.3);
}

.feedback-message.error {
  background-color: rgba(214, 48, 49, 0.1);
  color: var(--danger-color);
  border: 1px solid rgba(214, 48, 49, 0.3);
}

/* Dedicated Feedback Page Styles */
.feedback-content {
  padding: 4rem 0 6rem;
  background-color: var(--primary-bg);
}

.feedback-info-detailed {
  padding-right: 2rem;
}

.feedback-info-detailed h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.feedback-info-detailed > p {
  font-size: 1.2rem;
  color: var(--secondary-text);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.feedback-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
  padding: 2rem;
  background-color: var(--card-bg);
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

.feedback-stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--highlight-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--secondary-text);
  line-height: 1.4;
}

.feedback-types-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-text);
}

.feedback-type-card {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.feedback-type-card:hover {
  background-color: rgba(255, 184, 77, 0.05);
  transform: translateY(-2px);
}

.feedback-type-card .feedback-type-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background-color: rgba(255, 184, 77, 0.1);
  color: var(--highlight-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  margin-right: 1rem;
  font-size: 1.1rem;
}

.feedback-type-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--primary-text);
}

.feedback-type-card p {
  margin-bottom: 0;
  color: var(--secondary-text);
  font-size: 0.95rem;
  line-height: 1.5;
}

.feedback-form-main {
  background-color: var(--card-bg);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  position: relative;
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--primary-text);
}

.form-header p {
  color: var(--secondary-text);
  margin-bottom: 0;
  font-size: 1rem;
}

.feedback-form-large .form-group {
  margin-bottom: 2rem;
}

.feedback-form-large label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 600;
  color: var(--primary-text);
  font-size: 1rem;
}

.required {
  color: var(--danger-color);
}

.feedback-form-large input,
.feedback-form-large select,
.feedback-form-large textarea {
  width: 100%;
  padding: 1.25rem 1.5rem;
  border: 2px solid var(--border-color);
  border-radius: 12px;
  background-color: var(--secondary-bg);
  color: var(--primary-text);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-family: inherit;
}

.feedback-form-large input:focus,
.feedback-form-large select:focus,
.feedback-form-large textarea:focus {
  outline: none;
  border-color: var(--highlight-color);
  box-shadow: 0 0 0 4px rgba(255, 184, 77, 0.1);
  transform: translateY(-1px);
}

.feedback-form-large textarea {
  resize: vertical;
  min-height: 150px;
  line-height: 1.6;
}

.character-count {
  text-align: right;
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--secondary-text);
}

.btn-feedback-large {
  width: 100%;
  padding: 1.25rem 2rem;
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.feedback-message-large {
  margin-top: 2rem;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
}

.feedback-message-large.success {
  background-color: rgba(0, 184, 148, 0.1);
  color: var(--success-color);
  border: 1px solid rgba(0, 184, 148, 0.3);
}

.feedback-message-large.error {
  background-color: rgba(214, 48, 49, 0.1);
  color: var(--danger-color);
  border: 1px solid rgba(214, 48, 49, 0.3);
}

.form-footer {
  margin-top: 2rem;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.form-footer p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--secondary-text);
}

.form-footer a {
  color: var(--highlight-color);
  text-decoration: none;
}

.form-footer a:hover {
  color: var(--highlight-hover);
  text-decoration: underline;
}

/* Responsive adjustments for feedback page */
@media (max-width: 992px) {
  .feedback-info-detailed {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .feedback-stats {
    gap: 1rem;
  }
  
  .feedback-form-main {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .feedback-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .feedback-stat {
    padding: 1rem;
    background-color: var(--secondary-bg);
    border-radius: 10px;
  }
  
  .feedback-form-main {
    padding: 1.5rem;
  }
  
  .feedback-info-detailed h2 {
    font-size: 2rem;
  }
}
