/* Base Styles */
:root {
  --primary: #6c63ff;
  --primary-dark: #564fd8;
  --secondary: #f8f9fa;
  --dark: #2d3748;
  --light: #f7fafc;
  --success: #48bb78;
  --danger: #e53e3e;
  --warning: #ed8936;
  --info: #4299e1;
  --gray: #718096;
  --gray-light: #e2e8f0;
  --white: #ffffff;
  --black: #000000;
}
html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    flex: 1;
	
}

.footer {
    background-color: #f8f9fa;
    padding: 20px 0;
    margin-top: auto;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: var(--light);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(108, 99, 255, 0.3);
}

.btn-outline-light {
  border: 1px solid var(--white);
  color: var(--white);
  background-color: transparent;
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.btn-outline-primary {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.btn-outline-primary:hover {
  background-color: rgba(108, 99, 255, 0.1);
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--gray);
}

/* Header Styles */
/* Header Styles */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 15px 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-brand {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  z-index: 1001;
}

.nav-brand i {
  margin-right: 10px;
}

.nav-content {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-link {
  font-weight: 500;
  color: var(--dark);
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.btn-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  font-weight: 500;
  transition: all 0.3s;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  white-space: nowrap;
}

.btn-header:hover {
  background-color: var(--gray-light);
}

.btn-header.btn-primary {
  background-color: var(--primary);
  color: var(--white);
}

.btn-header.btn-primary:hover {
  background-color: var(--primary-dark);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--dark);
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

/* Responsive Styles - Meniu mobil */
@media (max-width: 992px) {
  .nav-content {
    position: fixed;
    top: 80px; /* Lasă spațiu pentru header */
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    gap: 30px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 998;
    overflow-y: auto;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .nav-content.active {
    transform: translateX(0);
  }
  
  .nav-links {
    display: flex !important;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 300px;
    padding: 0 20px;
  }
  
  .nav-actions {
    display: flex !important;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    max-width: 300px;
    padding: 0 20px;
  }
  
  .nav-link, .btn-header {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 18px;
    border-radius: 6px;
  }
  
  .btn-header {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }
  
  .action-text {
    display: inline-block !important;
  }
}
/* Ajustare pentru ecrane mici */
@media (max-width: 576px) {
  .nav-brand {
    font-size: 20px;
  }
  
  .btn-header {
    padding: 10px;
  }
}
/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--primary), #8a78ff);
  color: var(--white);
  padding: 150px 0 100px;
  text-align: center;
}

.hero-section h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

/* Services Section */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(108, 99, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--primary);
  font-size: 28px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--dark);
}

.service-description {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 15px;
}

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

/* Features Section */
.features-section {
  padding: 100px 0;
  background-color: #f9f9ff;
}

.feature-item {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(108, 99, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 24px;
  flex-shrink: 0;
}

.feature-text h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-text p {
  color: var(--gray);
}

/* Testimonials Section */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  color: var(--dark);
}

.section-header p {
  color: var(--gray);
  font-size: 18px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background-color: var(--light);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.testimonial-header img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-header h4 {
  font-size: 18px;
  margin-bottom: 5px;
}

.rating {
  color: #ffc107;
}

.testimonial-card p {
  font-style: italic;
  color: var(--gray);
}

/* Stats Section */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary), #8a78ff);
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-item h3 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-item p {
  font-size: 18px;
  opacity: 0.9;
}

/* Platforms Section */
.platforms-section {
  padding: 100px 0;
  background-color: #f9f9ff;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 25px;
}

.platform-card {
  background-color: var(--white);
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.platform-card:hover {
  transform: translateY(-5px);
}

.platform-card i {
  font-size: 40px;
  margin-bottom: 15px;
  color: var(--primary);
}

.platform-card h4 {
  font-size: 18px;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 80px 0 30px;
  
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--white);
}

.footer p {
  color: var(--gray-light);
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--gray-light);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-links i {
  margin-right: 10px;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: var(--gray-light);
  font-size: 14px;
}

/* Main Content */
.main-content {
  margin-top: 80px;
  
}

/* Responsive Styles */
@media (max-width: 992px) {
  .hero-section h1 {
    font-size: 42px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .mobile-menu.active {
    display: block;
  }
  
  .hero-section {
    padding: 120px 0 80px;
  }
  
  .hero-section h1 {
    font-size: 36px;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .feature-icon {
    margin-bottom: 15px;
  }
}

@media (max-width: 576px) {
  .hero-section h1 {
    font-size: 32px;
  }
  
  .section-header h2 {
    font-size: 28px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .platforms-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* Login Page Styles */


.card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--gray-light);
}

.card-header {
  background: var(--primary);
  color: var(--white);
  padding: 20px;
  text-align: center;
}

.card-header h2 {
  margin: 0;
  font-size: 24px;
}

.card-body {
  padding: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--gray-light);
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

.toggle-password {
  color: var(--gray);
  padding: 5px;
}

.toggle-password:hover {
  color: var(--primary);
}

.btn-primary.w-full {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  margin-top: 10px;
}

.alert-error {
  background-color: #fee2e2;
  color: #b91c1c;
  padding: 12px 15px;
  border-radius: 6px;
  margin-bottom: 20px;
  border-left: 4px solid #dc2626;
}

/* Responsive */
@media (max-width: 576px) {
  .card {
    margin: 1rem auto;
  }
  
  .card-body {
    padding: 20px;
  }
}

/* Registration Page Styles */
.registration-container {
  max-width: 500px;
  margin: 80px auto;
  padding: 0 20px;
}

.registration-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  border: 1px solid var(--gray-light);
}

.registration-header {
  background: var(--primary);
  color: var(--white);
  padding: 25px;
  text-align: center;
}

.registration-header h2 {
  margin: 0;
  font-size: 24px;
}

.registration-body {
  padding: 30px;
}

.form-row {
  margin-bottom: 20px;
}

.password-hints {
  font-size: 13px;
  color: var(--gray);
  margin-top: 5px;
}

.password-hints ul {
  padding-left: 20px;
  margin-top: 5px;
}

.password-match {
  display: flex;
  align-items: center;
  margin-top: 5px;
  font-size: 14px;
}

.password-match .icon {
  margin-right: 5px;
}

.text-match {
  color: var(--success);
}

.text-no-match {
  color: var(--danger);
}

/* Responsive */
@media (max-width: 576px) {
  .registration-container {
    margin: 40px auto;
  }
  
  .registration-body {
    padding: 20px;
  }
}


/* Payment succes */
/* Payment Success Page Styles */
.payment-success-page {
    padding-top: 80px;
    background-color: #f8f9fa;
}

.success-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.success-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.confirmation-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.confirmation-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.2);
    border-radius: 50%;
}

.detail-item {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.detail-item:last-child {
    border-bottom: none;
}

.total-amount {
    border: 1px dashed var(--primary);
    background-color: rgba(108, 99, 255, 0.05);
}

.action-buttons .btn {
    min-width: 220px;
    padding: 12px 24px;
}

.support-info {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .detail-item div {
        padding-bottom: 8px;
    }
    
    .action-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .action-buttons .btn:last-child {
        margin-bottom: 0;
    }
}


/* Stiluri pentru secțiunea "De ce să ne alegi pe noi?" */
.features-section {
  background-color: #f8f9fa;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-weight: 700;
  color: #333;
  position: relative;
  padding-bottom: 15px;
}

.section-title:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #4e54c8, #8f94fb);
}

.feature-icon {
  color: #4e54c8;
  transition: all 0.3s ease;
  min-width: 40px; /* Asigură că iconița are o lățime minimă */
}

.feature-item:hover .feature-icon {
  transform: translateY(-5px);
}

.feature-text h3 {
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.feature-item:hover .feature-text h3 {
  color: #4e54c8;
}

/* Stiluri pentru container-ul imaginii */
.image-container {
  width: 100%;
  height: 100%;
}

/* Efecte pentru imagine */
.image-wrapper {
  position: relative;
  z-index: 1;
  padding: 15px;
  max-width: 350px;
}

.image-hover-effect {
  transition: all 0.4s ease;
  border: 3px solid white;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.image-hover-effect:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.image-decoration {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 90%;
  height: 90%;
  border: 2px dashed #4e54c8;
  border-radius: 12px;
  z-index: -1;
  opacity: 0.4;
  animation: rotate 60s linear infinite;
}

.image-floating-dots {
  position: absolute;
  bottom: -10px;
  left: 10%;
  width: 70px;
  height: 70px;
  background-image: radial-gradient(circle, #4e54c8 2px, transparent 3px);
  background-size: 12px 12px;
  opacity: 0.3;
  z-index: -1;
  animation: float 5s ease-in-out infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Asigură că imaginea rămâne în dreapta pe ecrane mari */
@media (min-width: 992px) {
  .row.align-items-center {
    display: flex;
    flex-wrap: wrap;
  }
  
  .col-lg-6:first-child {
    order: 1;
  }
  
  .col-lg-6:last-child {
    order: 2;
  }
}

/* Media queries pentru responsive */
@media (max-width: 991px) {
  .image-wrapper {
    margin: 30px auto 0;
  }
  
  .image-container {
    justify-content: center !important;
  }
}

@media (max-width: 767px) {
  .image-decoration,
  .image-floating-dots {
    display: none;
  }
  
  .section-title {
    text-align: center;
  }
  
  .section-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
}

.info-serviciu {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.pret {
    display: flex;
    align-items: baseline;
    gap: 5px;
    font-size: 1.2rem;
    color: #333;
}

.incepe-cu {
    font-size: 0.9rem;
    color: #666;
}

.valoare {
    font-weight: bold;
    color: #000;
}

.moneda {
    font-weight: bold;
}


.btn-comanda {
    background-color: #4CAF50;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.btn-comanda:hover {
    background-color: #45a049;
}

.btn-comanda i {
    margin-right: 5px;
}

.package-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.package-option {
    position: relative;
}

.package-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.package-option label {
    display: block;
    padding: 15px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    background: white;
}

.package-option input[type="radio"]:checked + label {
    border-color: var(--primary);
    background-color: rgba(108, 99, 255, 0.05);
    box-shadow: 0 0 0 1px var(--primary);
}

.package-option.recommended input[type="radio"]:checked + label {
    background-color: rgba(108, 99, 255, 0.1);
}

.package-label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
    color: var(--dark);
}

.package-quantity {
    color: var(--primary);
    font-weight: 500;
}

.package-price {
    float: right;
    font-weight: 700;
    color: var(--primary);
}

.package-unit-price {
    display: block;
    font-size: 12px;
    color: var(--gray);
}

.recommended-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background-color: var(--primary);
    color: white;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

        /* Stiluri pentru butonul WhatsApp */
        .whatsapp-button {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #25D366;
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            z-index: 999;
            transition: all 0.3s ease;
            text-decoration: none;
        }
        
        .whatsapp-button:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }
        
        .whatsapp-tooltip {
            position: absolute;
            right: 70px;
            background: #333;
            color: white;
            padding: 8px 12px;
            border-radius: 4px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            transition: opacity 0.3s;
            pointer-events: none;
        }
        
        .whatsapp-button:hover .whatsapp-tooltip {
            opacity: 1;
        }

.nav-brand-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  padding: 8px 10px;
}

/* Logo-ul principal */
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Arial', sans-serif;
  height: 30px;
  text-decoration: none;
  color: var(--primary-dark, #333);
}

/* Mini Stats - acum sub logo */
.mini-stats {
  display: flex;
  gap: 16px;
  font-size: 13px;
  margin-top: 3px;
  margin-left: 2px;
}

.mini-stats .stat {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--primary-dark, #333);
  white-space: nowrap;
}

.mini-stats i {
  font-size: 12px;
  opacity: 0.8;
  color: var(--primary, #6c63ff);
}

/* Stilul pentru contorul flip îmbunătățit */
.flip-counter {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 20px;
  overflow: hidden;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  min-width: 40px;
}

.flip-digit {
  position: relative;
  width: 10px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  float: left;
  overflow: hidden;
  perspective: 200px;
}

.decimal-point {
  float: left;
  width: 4px;
  text-align: center;
}

.digit-top, .digit-bottom {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-color: #f7fafc;
}

.digit-text {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
}

.digit-top {
  top: 0;
  transform-origin: bottom;
  backface-visibility: hidden;
  z-index: 2;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.digit-bottom {
  bottom: 0;
  transform-origin: top;
  transform: rotateX(90deg);
  backface-visibility: hidden;
  z-index: 1;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

.static-part {
  margin-left: 1px;
  font-size: 0.9em;
  opacity: 0.8;
  color: var(--primary-dark, #564fd8);
}

/* Animația flip */
.flip .digit-top {
  transform: rotateX(-90deg);
}

.flip .digit-bottom {
  transform: rotateX(0deg);
}

.digit-top .digit-text {
  bottom: 0;
}

.digit-bottom .digit-text {
  top: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .nav-brand-container {
    padding: 5px 8px;
  }
  
  .nav-brand {
    height: 25px;
  }
  
  .mini-stats {
    gap: 12px;
    font-size: 12px;
  }
  
  .flip-counter {
    min-width: 32px;
    height: 16px;
  }
  
  .flip-digit {
    width: 8px;
    height: 16px;
    line-height: 16px;
  }
}

/* Trust Section Styles */
.trust-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 900px;
  margin: 50px auto 60px;
  gap: 30px;
  align-items: center;
  justify-items: center;
  position: relative;
  z-index: 2;
}

.trust-badge {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transform-style: preserve-3d;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-badge:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.trust-badge img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

/* Special Styles for Payment Method */
.payment-method {

  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 5px 15px rgba(99, 102, 241, 0.2);
}

.payment-method img {
  filter: grayscale(20%) contrast(1.1);
  padding: 5px;
}

.payment-method:hover img {
  filter: grayscale(0%) contrast(1.1);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
  70% { box-shadow: 0 0 0 12px rgba(99, 102, 241, 0); }
  100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

.payment-method:hover {
  animation: pulse 1.5s infinite;

}



/* Responsive Styles */
@media (max-width: 992px) {
  .footer-grid {
    gap: 30px;
  }
  
  .trust-section {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 25px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 40px;
  }
  
  .trust-section {
    margin: 40px auto 50px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .trust-section {
    grid-template-columns: 1fr;
    max-width: 300px;
    gap: 20px;
  }
  
  .trust-badge {
    max-width: 240px;
    margin: 0 auto;
  }
  
  .footer-bottom {
    padding-top: 20px;
  }
}

/* Animation Effects */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.trust-badge:nth-child(1) {
  animation: float 4s ease-in-out infinite;
}

.trust-badge:nth-child(2) {
  animation: float 4s ease-in-out infinite 1s;
}

.trust-badge:nth-child(3) {
  animation: float 4s ease-in-out infinite 1.5s;
}

/* Grid cu 5 categorii pe rând */
.categories-grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.category-item {
    background: white;
    border-radius: 10px;
    padding: 25px 15px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.category-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background-color: rgba(108, 99, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 24px;
    transition: all 0.3s ease;
}

.category-item:hover .category-icon {
    background-color: var(--primary);
    color: white;
    transform: rotate(10deg) scale(1.1);
}

.category-item h3 {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--dark);
}

.category-badge {
    background-color: rgba(108, 99, 255, 0.1);
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    display: inline-block;
}

/* Stiluri pentru modal */
.category-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    margin: 10vh auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 1001;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 20px;
    color: var(--primary-dark);
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.2s;
    padding: 5px;
}

.modal-close:hover {
    color: var(--danger);
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
    max-height: calc(80vh - 70px);
}

/* Stiluri pentru serviciile din modal */
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.service-item {
    background: #f9f9ff;
    border-radius: 8px;
    padding: 15px;
    transition: all 0.2s;
    border: 1px solid #eee;
}

.service-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.service-item h4 {
    margin: 0 0 10px 0;
    font-size: 15px;
    color: var(--dark);
}

.service-price {
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 10px;
}

.service-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-order {
    padding: 6px 12px;
    font-size: 13px;
    background: var(--primary);
    color: white;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-order:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Loading spinner */
.loading-spinner {
    text-align: center;
    padding: 30px;
}

.spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    border: 4px solid rgba(108, 99, 255, 0.1);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1200px) {
    .categories-grid-5 {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .categories-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .categories-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-content {
        width: 95%;
    }
}

@media (max-width: 576px) {
    .categories-grid-5 {
        grid-template-columns: 1fr;
    }
    
    .service-list {
        grid-template-columns: 1fr;
    }
}

/* Stiluri îmbunătățite pentru servicii */
.service-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    padding: 10px;
}

.service-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(108, 99, 255, 0.15);
    border-color: var(--primary);
}

.service-item-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.service-icon {
    width: 40px;
    height: 40px;
    background: rgba(108, 99, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}

.service-item h4 {
    margin: 0;
    font-size: 16px;
    color: var(--dark);
    font-weight: 600;
    line-height: 1.4;
}

.service-description {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.service-meta {
    margin-bottom: 15px;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.price-label {
    font-size: 12px;
    color: var(--gray);
}

.price-value {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.price-currency {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

.service-speed {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--gray);
}

.service-speed i {
    color: var(--success);
}

.service-actions {
    margin-top: auto;
}

.btn-order {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--primary);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-order:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(108, 99, 255, 0.3);
}

.btn-order i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.btn-order:hover i {
    transform: translateX(3px);
}

/* Stiluri pentru "niciun serviciu" */
.no-services {
    text-align: center;
    padding: 30px;
}

.no-services-icon {
    font-size: 50px;
    color: var(--gray-light);
    margin-bottom: 20px;
}

.no-services h4 {
    color: var(--dark);
    margin-bottom: 10px;
}

.no-services p {
    color: var(--gray);
    margin-bottom: 20px;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(108, 99, 255, 0.1);
    transform: translateY(-2px);
}

/* Activation Notice */
.activation-notice {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.notice-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.notice-header i {
    font-size: 24px;
    color: var(--primary);
}

.notice-header h4 {
    margin: 0;
    font-size: 18px;
}

.activation-notice p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.notice-details {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray);
}

.detail-item i {
    color: var(--primary);
}

#resendEmailBtn {
    width: 100%;
    margin-top: 10px;
}

.resend-status {
    margin-top: 15px;
    font-size: 14px;
}

.success-message {
    color: var(--success);
    display: flex;
    align-items: center;
    gap: 8px;
}

.error-message {
    color: var(--danger);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Radio Button Group */
.radio-button-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.radio-option {
    flex: 1;
    min-width: 120px;
}

.radio-option input[type="radio"] {
    position: absolute;
    opacity: 0;
}

.radio-label {
    display: block;
    padding: 12px 15px;
    background-color: white;
    border: 1px solid var(--gray-light);
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.radio-option input[type="radio"]:checked + .radio-label {
    background-color: var(--primary);
    color: white;
    border-color: var(--primary);
}

.radio-option input[type="radio"]:focus + .radio-label {
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.2);
}

/* Responsive */
@media (max-width: 576px) {
    .radio-button-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .radio-option {
        min-width: 100%;
    }
    
    .notice-details {
        flex-direction: column;
        gap: 10px;
    }
    
    .activation-notice {
        padding: 15px;
    }
}

/* Section Styling */
.section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #343a40;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #6c63ff, #8a78ff);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 18px;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto 30px;
    text-align: center;
}

.avatar-initials {
    width: 60px;
    height: 60px;
    background: #7d6bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
}

.nav-link.active,
.btn-header.active {
    position: relative;
    color: #4361ee; /* Culoarea primară a site-ului */
    font-weight: 600;
}

.nav-link.active:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #4361ee;
    border-radius: 2px;
}

/* Pentru butoanele active din nav-actions */
.btn-header.active {
    background-color: rgba(67, 97, 238, 0.1);
    border-radius: 6px;
}

/* Stiluri pentru mobile */
@media (max-width: 768px) {
    .nav-link.active:after {
        display: none;
    }
    
    .nav-link.active,
    .btn-header.active {
        background-color: rgba(67, 97, 238, 0.1);
    }
}