/* ═══════════════════════════════════════════════════════════════
   PENTOS PARTNERS - ENHANCED VISUAL STYLES
   30x More Beautiful - Professional Premium Design
   ═══════════════════════════════════════════════════════════════ */

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ENHANCED HERO ANIMATIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.hero {
  position: relative;
  background: linear-gradient(135deg, #0A2463 0%, #1E3A8A 50%, #3498db 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(184, 152, 111, 0.1) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Animated gradient text */
.text-gradient {
  background: linear-gradient(90deg, #B8986F 0%, #D4AF37 50%, #B8986F 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   STUNNING CARD EFFECTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 10px 40px rgba(10, 36, 99, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(184, 152, 111, 0.1);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(184, 152, 111, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(10, 36, 99, 0.2);
  border-color: rgba(184, 152, 111, 0.3);
}

.card:hover::before {
  opacity: 1;
}

/* Premium glow effect on featured cards */
.card.featured {
  border: 2px solid #B8986F;
  background: linear-gradient(135deg, rgba(184, 152, 111, 0.02) 0%, white 100%);
}

.card.featured::after {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #B8986F, #D4AF37, #B8986F);
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
  animation: borderGlow 3s linear infinite;
}

.card.featured:hover::after {
  opacity: 0.3;
}

@keyframes borderGlow {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.5); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ENHANCED BUTTONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.btn {
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #B8986F 0%, #D4AF37 100%);
  background-size: 200% auto;
  color: white;
  box-shadow: 0 4px 20px rgba(184, 152, 111, 0.4);
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  background-position: right center;
  box-shadow: 0 6px 30px rgba(184, 152, 111, 0.6);
  transform: translateY(-3px);
}

/* Glowing button effect */
.btn-glow {
  background: linear-gradient(135deg, #B8986F 0%, #D4AF37 100%);
  color: white;
  box-shadow: 0 0 30px rgba(184, 152, 111, 0.5);
  animation: pulse-glow 2s infinite;
  font-weight: 600;
}

@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 0 30px rgba(184, 152, 111, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 50px rgba(184, 152, 111, 0.8);
    transform: scale(1.02);
  }
}

.btn-glow:hover {
  animation: none;
  box-shadow: 0 0 60px rgba(184, 152, 111, 1);
  transform: translateY(-3px) scale(1.03);
}

/* Glass morphism button */
.btn-glass {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  box-shadow: 0 8px 32px rgba(31, 38, 135, 0.2);
}

.btn-glass:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.15));
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 12px 48px rgba(31, 38, 135, 0.3);
  transform: translateY(-3px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ENHANCED NAVIGATION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(10, 36, 99, 0.1);
  transition: all 0.3s;
}

.navbar.scrolled {
  box-shadow: 0 8px 40px rgba(10, 36, 99, 0.15);
  background: rgba(255, 255, 255, 0.98);
}

.nav-link {
  position: relative;
  color: var(--primary-navy);
  transition: color 0.3s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #B8986F, #D4AF37);
  transform: translateX(-50%);
  transition: width 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--accent-gold);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PREMIUM SECTION BACKGROUNDS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.section {
  position: relative;
  overflow: hidden;
}

.section-premium {
  background: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 100%);
  position: relative;
}

.section-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(184, 152, 111, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(10, 36, 99, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BEAUTIFUL ACCORDIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.accordion {
  background: transparent;
  border-radius: 0;
}

.accordion-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 1rem;
  border: 1px solid rgba(184, 152, 111, 0.1);
  overflow: hidden;
  transition: all 0.3s;
}

.accordion-item:hover {
  box-shadow: 0 8px 30px rgba(10, 36, 99, 0.1);
  border-color: rgba(184, 152, 111, 0.3);
}

.accordion-header {
  background: linear-gradient(135deg, rgba(184, 152, 111, 0.02) 0%, transparent 100%);
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: background 0.3s;
}

.accordion-header:hover {
  background: linear-gradient(135deg, rgba(184, 152, 111, 0.05) 0%, transparent 100%);
}

.accordion-item.active .accordion-header {
  background: linear-gradient(135deg, rgba(184, 152, 111, 0.08) 0%, transparent 100%);
  border-bottom: 1px solid rgba(184, 152, 111, 0.1);
}

.accordion-icon {
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #B8986F, #D4AF37);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s;
}

.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
  background: linear-gradient(135deg, #D4AF37, #B8986F);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   ANIMATED COUNTERS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.trust-stat {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}

.trust-stat:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.stat-number {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #B8986F, #D4AF37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
  text-shadow: 0 4px 20px rgba(184, 152, 111, 0.3);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   3D FLOATING CARDS ENHANCED
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.floating-cards {
  perspective: 2000px;
  transform-style: preserve-3d;
}

.visa-card {
  background: linear-gradient(135deg, #0A2463 0%, #1E3A8A 100%);
  border: 2px solid #B8986F;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.4);
  position: absolute;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.visa-card:hover {
  transform: translateZ(50px) !important;
  box-shadow: 0 35px 100px rgba(184, 152, 111, 0.5);
  border-color: #D4AF37;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   BEAUTIFUL BADGES
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.badge-premium {
  background: linear-gradient(135deg, #B8986F 0%, #D4AF37 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(184, 152, 111, 0.4);
  display: inline-block;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.badge-new {
  background: linear-gradient(135deg, #e74c3c, #c0392b);
  animation: pulse 2s infinite;
}

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

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FORM ENHANCEMENTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

input, select, textarea {
  border: 2px solid var(--medium-gray);
  transition: all 0.3s;
  background: white;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(184, 152, 111, 0.1);
  transform: translateY(-2px);
}

label {
  font-weight: 600;
  color: var(--primary-navy);
  transition: color 0.3s;
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   PRICING CARDS PREMIUM
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.pricing-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  box-shadow: 0 10px 50px rgba(10, 36, 99, 0.1);
  transition: all 0.4s;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 80px rgba(10, 36, 99, 0.2);
  border-color: rgba(184, 152, 111, 0.3);
}

.pricing-card.recommended {
  border-color: #B8986F;
  background: linear-gradient(135deg, rgba(184, 152, 111, 0.03) 0%, white 100%);
  box-shadow: 0 15px 60px rgba(184, 152, 111, 0.3);
}

.pricing-card.recommended::before {
  content: 'RECOMMENDED';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #B8986F, #D4AF37);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  box-shadow: 0 4px 20px rgba(184, 152, 111, 0.5);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   SCROLL ANIMATIONS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   FOOTER ENHANCEMENTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.footer {
  background: linear-gradient(135deg, #0A2463 0%, #1E3A8A 100%);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(184, 152, 111, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.footer-links a {
  position: relative;
  transition: all 0.3s;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s;
}

.footer-links a:hover::before {
  left: -15px;
  opacity: 1;
  color: var(--accent-gold);
}

.footer-links a:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LOADING ANIMATION
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0A2463 0%, #1E3A8A 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 50px;
  height: 50px;
  border: 4px solid rgba(184, 152, 111, 0.3);
  border-top-color: #B8986F;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   RESPONSIVE ENHANCEMENTS
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

@media (max-width: 768px) {
  .stat-number {
    font-size: 2.5rem;
  }

  .card {
    padding: 1.5rem;
  }

  .pricing-card {
    padding: 2rem 1.5rem;
  }
}

/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
   LANGUAGE SWITCHER
   ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

.lang-switcher {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-left: 1.5rem;
}

.lang-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--medium-gray);
  background: white;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.lang-btn:hover {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
  color: white;
  transform: translateY(-2px);
}

.lang-btn.active {
  background: var(--primary-navy);
  border-color: var(--primary-navy);
  color: white;
}

.lang-btn.active:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

/* Mobile language switcher */
@media (max-width: 768px) {
  .lang-switcher {
    margin-left: 0;
    margin-top: 1rem;
    justify-content: center;
  }
  
  .lang-btn {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
  }
}

/* Language Dropdown */
.lang-dropdown-btn {
  padding: 0.5rem 1rem;
  border: 2px solid var(--medium-gray);
  background: white;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.3s ease;
}

.lang-dropdown-btn:hover {
  border-color: var(--accent-gold);
  background: var(--accent-gold);
  color: white;
}

.lang-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border: 2px solid var(--medium-gray);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  min-width: 200px;
  z-index: 1000;
  margin-top: 0.5rem;
}

.lang-switcher:hover .lang-dropdown-menu,
.lang-dropdown-menu.active {
  display: block;
}

.lang-dropdown-menu .lang-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  border: none;
  border-bottom: 1px solid var(--light-gray);
  border-radius: 0;
  background: white;
}

.lang-dropdown-menu .lang-btn:last-child {
  border-bottom: none;
}

.lang-dropdown-menu .lang-btn:hover {
  background: var(--light-gray);
  border-color: transparent;
  transform: none;
}

.lang-dropdown-menu .lang-btn.active {
  background: var(--primary-navy);
  color: white;
}

@media (max-width: 768px) {
  .lang-dropdown-menu {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 300px;
  }
}
