/* Color Variables */
:root {
  --primary-color: #9fe5ce;
  --secondary-color: #FF6B61;
  --background-light: #E6F8FB;
  --text-dark: #2C3E50;
  --text-light: #6C757D;
  --white: #FFFFFF;
  --border-light: #E9ECEF;
  --shadow-light: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.12);
  /* Add font family variable */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

/* Apply to all elements */
* {
  font-family: var(--font-family);
}




/* Header Styles */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 8px var(--shadow-light);
}

.header-sticky {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 72px;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo Section */
.logo-section {
  display: flex;
  align-items: center;
  min-width: 200px;
}

.logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  margin-left: 12px;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 18px;
}

.logo-link {
  display: flex;
  align-items: center;
}

/* Header Search */
.header-search-container {
  flex: 1;
  max-width: 600px;
  margin: 0 40px;
}

.header-search-wrapper {
  position: relative;
  width: 100%;
}

.header-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  z-index: 2;
}

.header-search input {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border: 2px solid var(--border-light);
  border-radius: 25px;
  font-size: 16px;
  background: #F8F9FA;
  transition: all 0.2s ease;
}

.header-search input:focus {
  outline: none;
  border-color: var(--primary-color);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(18, 160, 182, 0.1);
}

/* Header CTA Section */
.header-cta-section {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 200px;
  justify-content: flex-end;
}

.header-cta-primary {
  background: var(--secondary-color);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.header-cta-primary:hover {
  background: #E55A52;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 107, 97, 0.3);
}

/* Hero Section */
.hero-section {
/*   background: linear-gradient(135deg, var(--background-light) 0%, #F0FBFC 100%); */
  background: black;
  padding: 60px 0;
  margin-top: -1px; /* Overlap header border */
}

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

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.hero-headline {
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 24px;
  color: var(--primary-color);
  margin-bottom: 16px;
  font-weight: 500;
}

.hero-description {
  font-size: 18px;
  color: white;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Quick Action Cards */
.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; /* space between cards */
  max-width: 1000px; /* optional: control width */
  margin: 0 auto; /* center the grid */
}

.quick-action-card {
  background: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.quick-action-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-color: var(--primary-color);
}

.action-icon {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.quick-action-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.quick-action-card p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

/* Categories Section */
.categories-section {
  padding: 80px 0;
  background: var(--white);
}

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

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 60px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.category-card {
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-color);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.category-card:hover::before {
  transform: translateX(0);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-medium);
  border-color: var(--primary-color);
}

.category-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.category-icon {
  color: var(--primary-color);
  margin-bottom: 20px;
}

.category-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.category-description {
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
}

.category-count {
  display: inline-block;
  background: var(--background-light);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

/* Featured Articles */
.featured-articles-section {
  padding: 80px 0;
  background: #F8F9FA;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.featured-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 4px 16px var(--shadow-light);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-medium);
  border-color: var(--primary-color);
}

.featured-link {
  text-decoration: none;
  color: inherit;
}

.featured-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.featured-excerpt {
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 16px;
}

.featured-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: var(--background-light);
  color: var(--primary-color);
  padding: 4px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
}

/* Search Tips */
.search-tips-section {
  padding: 60px 0;
  background: var(--white);
}

.topic-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.topic-chip {
  background: transparent;
  border: 2px solid var(--border-light);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-weight: 500;
}

.topic-chip:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
  background: var(--background-light);
}

/* Footer */
.landing-footer {
  background: black;
  color: var(--white);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 8px;
}

.footer-section ul li a {
  color: #B8C5D6;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid #3A4A5C;
  padding-top: 30px;
  text-align: center;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .header-container {
    padding: 0 15px;
  }
  
  .header-search-container {
    display: none;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-headline {
    font-size: 36px;
  }
  
  .hero-actions {
    grid-template-columns: 1fr;
  }
  
  .category-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 28px;
  }
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 4px;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.2s ease;
}

.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 20px;
}

/* User Navigation Desktop */
.user-nav-desktop {
  display: flex;
  align-items: center;
}

.user-dropdown {
  position: relative;
}

.user-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 8px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
  color: var(--text-dark);
}

.user-toggle:hover {
  background: #F8F9FA;
  border-color: var(--border-light);
}

.user-toggle:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(18, 160, 182, 0.1);
}

.user-avatar-small {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.dropdown-icon {
  transition: transform 0.2s ease;
  color: var(--text-light);
}

.user-toggle[aria-expanded="true"] .dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.user-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 8px;
  box-shadow: 0 4px 16px var(--shadow-medium);
  padding: 8px 0;
  min-width: 180px;
  z-index: 1000;
  display: none;
  margin-top: 4px;
}

.user-dropdown-menu.show {
  display: block;
}

.user-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.user-dropdown-menu a:hover {
  background: #F8F9FA;
  color: var(--primary-color);
}

.user-dropdown-menu a:focus {
  outline: none;
  background: var(--background-light);
  color: var(--primary-color);
}

/* Sign In Button (when not logged in) */
.sign-in-btn {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  font-size: 14px;
}

.sign-in-btn:hover {
  background: var(--primary-color);
  color: var(--white);
}

.sign-in-btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(18, 160, 182, 0.2);
}

/* Mobile responsive - hide desktop nav on mobile */
@media (max-width: 768px) {
  .user-nav-desktop {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-cta-section .header-cta-buttons,
  .user-nav-desktop {
    display: none;
  }
  
  .mobile-nav[aria-expanded="true"] {
    display: block;
  }
}

/* Utility Classes */
.visibility-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* requests page */
/* My Activities / Requests Page Styles */

/* Header */
.my-activities-header {
  margin-bottom: 40px;
  text-align: center;
}

.my-activities-header h1 {
  font-size: 36px;
  font-weight: 700;
  color: var(--text-dark);
}

/* Sub Nav */
.my-activities-sub-nav {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.collapsible-nav {
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: 8px;
  padding: 10px 20px;
  box-shadow: 0 2px 6px var(--shadow-light);
}

.collapsible-nav-list {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.collapsible-nav-list li a {
  text-decoration: none;
  font-weight: 500;
  color: var(--text-dark);
  transition: color 0.2s ease;
}

.collapsible-nav-list li.current a,
.collapsible-nav-list li a:hover {
  color: var(--primary-color);
}

/* Toolbar (Filters + Search) */
.requests-table-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 30px;
  box-shadow: 0 2px 8px var(--shadow-light);
}

.requests-table-toolbar .search {
  position: relative;
  flex: 1;
  min-width: 240px;
}

.requests-table-toolbar .search input {
  width: 100%;
  padding: 12px 16px 12px 36px;
  border: 2px solid var(--border-light);
  border-radius: 6px;
  background: #F8F9FA;
  font-size: 14px;
}

.requests-table-toolbar .search input:focus {
  border-color: var(--primary-color);
  background: var(--white);
  outline: none;
  box-shadow: 0 0 0 3px rgba(18, 160, 182, 0.1);
}

.requests-table-toolbar .search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
}

/* Dropdowns */
.request-filter {
  border: 2px solid var(--border-light);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 14px;
  background: #fff;
  transition: border-color 0.2s ease;
}

.request-filter:focus {
  border-color: var(--primary-color);
  outline: none;
}

/* Table */
.my-activities-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--shadow-light);
}

.my-activities-table th,
.my-activities-table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
}

.my-activities-table th {
  background: var(--background-light);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 15px;
}

.my-activities-table tr:hover {
  background: #F8F9FA;
}

/* Status Labels */
.status-label {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: capitalize;
}

.status-label-open {
  background: rgba(18,160,182,0.1);
  color: var(--primary-color);
}

.status-label-pending {
  background: rgba(255,107,97,0.1);
  color: var(--secondary-color);
}

.status-label-closed {
  background: #e9ecef;
  color: var(--text-light);
}

/* Empty State */
.no-activities {
  text-align: center;
  color: var(--text-light);
  padding: 40px 0;
  font-size: 16px;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  gap: 10px;
}

.pagination a,
.pagination span {
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid var(--border-light);
  color: var(--text-dark);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease;
}

.pagination a:hover {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}



/* request page individual */

/* === Layout Containers === */
.container {
  max-width: 1200px;
  margin: 2rem auto;
  padding: 0 1.5rem;
}

.request-breadcrumbs {
  font-size: 0.875rem;
  color: var(--color-muted, #6b7280);
  margin-bottom: 1rem;
}

.request-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
  color: var(--color-text, #111827);
}

.request-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}

/* === Comments === */
.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.comment {
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm, 0 1px 2px rgba(0,0,0,0.05));
}

.comment-wrapper {
  display: flex;
  gap: 1rem;
}

.comment-info {
  flex: 1;
}

.comment-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.comment-avatar {
  flex-shrink: 0;
}

.user-avatar,
.comment-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.comment-meta {
  display: flex;
  flex-direction: column;
}

.comment-meta span {
  font-weight: 600;
  color: var(--color-text, #111827);
}

.meta-group {
  font-size: 0.8rem;
  color: var(--color-muted, #6b7280);
}

.comment-body {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text, #374151);
  margin-bottom: 0.75rem;
}

.attachments {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
}

.attachment-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.attachment-meta {
  font-size: 0.75rem;
  color: var(--color-muted, #6b7280);
}

/* === Comment Form === */
.comment-form {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.comment-container {
  flex: 1;
}

.comment-fields {
  margin-bottom: 1rem;
}

.comment-form-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.comment-form-controls .button-large {
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
}

/* === Sidebar === */
.request-sidebar {
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm, 0 1px 2px rgba(0,0,0,0.05));
  height: fit-content;
}

.collapsible-sidebar-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.request-details {
  margin: 0 0 1rem;
}

.request-details dt {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-muted, #6b7280);
  margin-bottom: 0.25rem;
}

.request-details dd {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  color: var(--color-text, #111827);
}

.request-collaborators {
  list-style: none;
  padding: 0;
  margin: 0;
}

.request-collaborators li {
  font-size: 0.85rem;
  color: var(--color-text, #374151);
}

/* === Status Labels === */
.status-label {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-label-open { background: #dbeafe; color: #1e3a8a; }
.status-label-pending { background: #fef9c3; color: #854d0e; }
.status-label-solved { background: #dcfce7; color: #166534; }
.status-label-closed { background: #f3f4f6; color: #374151; }

/* === Responsive === */
@media (max-width: 768px) {
  .request-container {
    grid-template-columns: 1fr;
  }

  .request-sidebar {
    order: -1;
    margin-bottom: 1.5rem;
  }
}


/* profile */

/* === Card-style Comments === */
.comment {
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: 0.75rem;
  padding: 1rem 1.25rem;
  margin-bottom: 1.25rem;
  box-shadow: var(--shadow-sm, 0 1px 2px rgba(0,0,0,0.05));
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.comment:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
}

/* === Attachments === */
.attachment-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  transition: color 0.2s ease;
  cursor: pointer;
}

.attachment-item:hover {
  color: var(--color-accent, #2563eb);
}

.attachment-item svg {
  transition: transform 0.2s ease;
}

.attachment-item:hover svg {
  transform: scale(1.1);
}

/* === Sidebar Panel === */
.request-sidebar {
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: 0.75rem;
  padding: 1.25rem;
  box-shadow: var(--shadow-sm, 0 1px 2px rgba(0,0,0,0.05));
  height: fit-content;
  transition: box-shadow 0.2s ease;
}

.request-sidebar:hover {
  box-shadow: var(--shadow-md, 0 4px 6px rgba(0,0,0,0.1));
}

/* === Status Labels === */
.status-label {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.status-label:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* === Comment Form Buttons === */
.comment-form-controls .button-large {
  padding: 0.6rem 1.2rem;
  border-radius: 0.5rem;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.comment-form-controls .button-large:hover {
  transform: translateY(-1px);
}

.comment-form-controls .button-large:active {
  transform: translateY(0);
}


/* footer */

/* === Footer Base === */
.footer {
  background: var(--color-surface, #fff);
  border-top: 1px solid var(--color-border, #e5e7eb);
  padding: 1.5rem 1rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: var(--color-text-muted, #6b7280);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* === Help Center Link === */
.footer-inner a {
  color: var(--color-text, #111827);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-inner a:hover {
  color: var(--color-accent, #2563eb);
}

/* === Language Selector === */
.footer-language-selector {
  position: relative;
}

.language-selector {
  position: relative;
}

.language-selector .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border, #d1d5db);
  border-radius: 0.5rem;
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.language-selector .dropdown-toggle:hover {
  border-color: var(--color-accent, #2563eb);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  transform: translateY(-1px);
}

.language-selector .dropdown-chevron-icon {
  transition: transform 0.2s ease;
}

.language-selector.open .dropdown-chevron-icon {
  transform: rotate(180deg);
}

/* === Dropdown Menu === */
.dropdown-menu {
  position: absolute;
  right: 0;
  top: 110%;
  background: var(--color-surface, #fff);
  border: 1px solid var(--color-border, #e5e7eb);
  border-radius: 0.5rem;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
  padding: 0.5rem 0;
  min-width: 8rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 100;
}

.language-selector.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: var(--color-text, #111827);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
  background: var(--color-accent-light, #f3f4f6);
  color: var(--color-accent, #2563eb);
}




.bbyGXK{
  color: white !important;
}
.dxfXzb{
  color: white !important;
}
.cmCBdM{
  color: white !important;
}
.koHUbI{
  color: white !important;
}

.payment_button{
  margin-top: 40px;
    /* margin-bottom: -40px; */
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}


.powered-by-zendesk{
  display:none;
}



@media (max-width: 860px) {
  .quick-action-card {
    width : unset !important;
  }
  .hero-image{
    width: 250px;
  }
  .iRSmTf{
    width: 333px;
  }
}

