/*!**********************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[10].use[3]!./app/page.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************/
/* Custom CSS for ProxyService Homepage */

.min-vh-75 {
  min-height: 75vh;
}

/* Hero Section */
.hero-section {
  position: relative;
}

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dashboard-mockup {
  animation: fadeInRight 0.8s ease-out 0.2s both;
  max-width: 400px;
  margin: 0 auto;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Feature Cards */
.feature-card {
  transition: all 0.3s ease;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15) !important;
  background: rgba(255, 255, 255, 0.98);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(var(--bs-primary-rgb), 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.feature-icon i {
  font-size: 1.5rem;
}

/* Pricing Cards */
.pricing-card {
  transition: all 0.3s ease;
  border-radius: 12px;
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15) !important;
  background: rgba(255, 255, 255, 0.98);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.pricing-amount {
  border-bottom: 1px solid #e9ecef;
  padding-bottom: 1rem;
}

/* Contact Icons */
.contact-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  font-size: 1.5rem;
}

/* Form Styles */
.form-control {
  border-radius: 8px;
  border: 1px solid #dee2e6;
  padding: 12px 16px;
  font-size: 1rem;
}

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

.form-control-lg {
  padding: 16px 20px;
}

/* Button Styles */
.btn {
  border-radius: 8px;
  font-weight: 500;
  padding: 12px 24px;
  transition: all 0.3s ease;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-primary:hover {
  background-color: #0b5ed7;
  border-color: #0a58ca;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.3);
}

.btn-outline-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(13, 110, 253, 0.2);
}

.btn-outline-dark:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Navigation */
.navbar {
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-link {
  font-weight: 500;
  padding: 8px 16px !important;
  transition: all 0.3s ease;
}

.nav-link:hover {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* Badge Styles */
.badge {
  font-weight: 500;
  font-size: 0.85rem;
}

/* Progress Bar */
.progress {
  border-radius: 4px;
}

.progress-bar {
  border-radius: 4px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .display-4 {
    font-size: 2.5rem;
  }

  .hero-content {
    text-align: center;
  }

  .dashboard-mockup {
    margin-top: 3rem;
  }

  .min-vh-75 {
    min-height: auto;
    padding: 2rem 0;
  }
}

@media (max-width: 576px) {
  .display-4 {
    font-size: 2rem;
  }

  .btn-lg {
    padding: 12px 24px;
    font-size: 1rem;
  }

  .dashboard-mockup {
    padding: 1rem !important;
  }
}

/* Animation delays for staggered effect */
.feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.pricing-card:nth-child(1) {
  animation-delay: 0.1s;
}

.pricing-card:nth-child(2) {
  animation-delay: 0.2s;
}

.pricing-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Utility Classes */
.text-light-emphasis {
  color: rgba(255, 255, 255, 0.75) !important;
}

.bg-opacity-10 {
  background-color: rgba(var(--bs-primary-rgb), 0.1) !important;
}

/* Contact Form Card */
.card {
  background: rgba(255, 255, 255, 0.95) !important;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Dashboard Mockup */
.dashboard-mockup {
  background: rgba(255, 255, 255, 0.95) !important;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

/* Mobile-optimized dropdown styles */
@media (max-width: 576px) {
  .dropdown-menu {
    min-width: 250px !important;
    max-width: 90vw !important;
    border: none !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
    border-radius: 12px !important;
    padding: 8px !important;
    margin-top: 12px !important;
    animation: dropdownFadeIn 0.2s ease-out;
  }

  .dropdown-item {
    padding: 12px 16px !important;
    border-radius: 8px !important;
    margin-bottom: 2px !important;
    font-size: 16px !important;
    line-height: 1.4 !important;
    display: flex !important;
    align-items: center !important;
    touch-action: manipulation !important;
    -moz-user-select: none !important;
         user-select: none !important;
    -webkit-user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
  }

  .dropdown-item:hover,
  .dropdown-item:focus,
  .dropdown-item:active {
    background-color: #f8f9fa !important;
    color: #495057 !important;
    transform: none !important;
  }

  .dropdown-item.text-danger:hover,
  .dropdown-item.text-danger:focus,
  .dropdown-item.text-danger:active {
    background-color: #f8d7da !important;
    color: #721c24 !important;
  }

  .dropdown-header {
    padding: 12px 16px 8px 16px !important;
    font-size: 14px !important;
  }

  .dropdown-divider {
    margin: 8px 0 !important;
  }

  /* Touch-friendly button */
  .navbar .dropdown .btn {
    min-height: 44px !important;
    padding: 8px 16px !important;
    font-size: 16px !important;
    touch-action: manipulation !important;
    -moz-user-select: none !important;
         user-select: none !important;
    -webkit-user-select: none !important;
    -webkit-tap-highlight-color: transparent !important;
  }
}

/* Dropdown animation */
@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Enhanced touch targets for all screen sizes */
.dropdown-item {
  transition: all 0.15s ease-in-out;
}

.dropdown-item:hover {
  transform: translateX(2px);
}

.dropdown-item i {
  width: 20px;
  text-align: center;
}

/* Better positioning for navbar dropdown */
.navbar .dropdown-menu {
  transform-origin: top right;
}

/* Homepage User Dropdown Styles */
.homepage-user-dropdown {
  margin-left: auto;
  position: relative;
}

.homepage-user-info {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-height: 44px;
}

.homepage-user-info:hover {
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 1);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.homepage-user-avatar {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, #3b82f6, #6366f1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 14px;
  margin-right: 0.75rem;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.homepage-user-details {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  margin-left: 8px;
}

.homepage-username {
  font-weight: 700;
  font-size: 15px;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 2px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.homepage-balance {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  padding: 2px 6px;
  display: inline-flex;
  align-items: center;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Enhanced dropdown menu styles */
.homepage-user-dropdown .dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  animation: dropdownSlideIn 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: absolute !important;
  top: 100% !important;
  right: 0 !important;
  left: auto !important;
  z-index: 1050 !important;
  margin-top: 8px !important;
  min-width: 280px !important;
}

.homepage-user-dropdown .dropdown-item {
  color: #374151;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.2s ease;
  border-radius: 8px;
  margin: 2px 4px;
}

.homepage-user-dropdown .dropdown-item:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.1));
  color: #1f2937;
  transform: translateX(4px);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.homepage-user-dropdown .dropdown-item:active {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(99, 102, 241, 0.2));
}

.homepage-user-dropdown .dropdown-item.text-danger:hover {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(220, 38, 38, 0.1));
  color: #dc2626;
}

.homepage-user-dropdown .dropdown-header {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  font-size: 12px;
}

/* Dropdown slide-in animation */
@keyframes dropdownSlideIn {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Mobile optimization for homepage dropdown */
@media (max-width: 768px) {
  .homepage-user-info {
    padding: 0.6rem 1rem;
  }

  .homepage-user-avatar {
    width: 38px;
    height: 38px;
    font-size: 15px;
    margin-right: 0.5rem;
  }

  .homepage-user-details {
    margin-left: 0;
  }

  .homepage-username {
    font-size: 14px;
  }

  .homepage-balance {
    font-size: 12px;
    padding: 1px 4px;
  }

  .homepage-user-dropdown .dropdown-menu {
    min-width: 260px !important;
    max-width: 85vw !important;
    right: 8px !important;
  }
}

@media (max-width: 576px) {
  .homepage-user-info {
    padding: 0.75rem;
    justify-content: end;
  }

  .homepage-user-avatar {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-right: 1rem;
  }

  .homepage-user-details {
    /* display: none !important; */
  }

  .homepage-user-dropdown .dropdown-menu {
    min-width: 280px !important;
    max-width: 95vw !important;
    right: 0 !important;
  }

  .homepage-user-dropdown .dropdown-item {
    padding: 16px !important;
    font-size: 16px !important;
  }
}

/* Ensure dropdown stays within viewport on mobile */
@media (max-width: 767px) {
  .dropdown-menu-end {
    right: 0 !important;
    left: auto !important;
  }

  .navbar-collapse.show .dropdown:not(.homepage-user-dropdown) .dropdown-menu,
  .navbar-collapse.collapsing .dropdown:not(.homepage-user-dropdown) .dropdown-menu {
    position: static !important;
    float: none !important;
    width: auto !important;
    margin-top: 0 !important;

    border: 0 !important;
    box-shadow: none !important;
  }
}
