/* Ultra-Unique CSS Design - Advanced Fintech Styling */
:root {
  /* Revolutionary Color Palette */
  --primary-color: 16, 185, 129;
  --secondary-color: 139, 69, 19;
  --accent-color: 168, 85, 247;
  --tertiary-color: 245, 158, 11;
  --primary: rgb(var(--primary-color));
  --secondary: rgb(var(--secondary-color));
  --accent: rgb(var(--accent-color));
  --tertiary: rgb(var(--tertiary-color));
  --success: #059669;
  --info: #0ea5e9;
  --warning: #d97706;
  --danger: #dc2626;
  --light: #f8fafc;
  --dark: #0f172a;

  /* Advanced Typography */
  --font-main: 'Poppins', 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-accent: 'Orbitron', 'Roboto Mono', monospace;
  
  /* Dynamic Gradients */
  --gradient-primary: linear-gradient(135deg, rgb(var(--primary-color)), rgb(var(--accent-color)));
  --gradient-secondary: linear-gradient(135deg, rgb(var(--secondary-color)), rgb(var(--tertiary-color)));
  --gradient-tertiary: linear-gradient(135deg, rgb(var(--accent-color)), rgb(var(--primary-color)));
  --gradient-radial: radial-gradient(circle at center, rgb(var(--primary-color)), rgb(var(--accent-color)));
  --gradient-animated: linear-gradient(45deg, rgb(var(--primary-color)), rgb(var(--accent-color)), rgb(var(--tertiary-color)), rgb(var(--primary-color)));
  
  /* Advanced Shadows */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 30px rgba(var(--primary-color), 0.3);
  --shadow-neon: 0 0 20px rgba(var(--accent-color), 0.5);
  
  /* Navbar Variables */
  --navbar-bg: rgba(248, 250, 252, 0.95);
  --navbar-link: var(--dark);
  --navbar-link-active: var(--primary);
  --hover: rgba(var(--primary-color), 0.8);
  
  /* Hero Variables */
  --hero-bg: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(168, 85, 247, 0.8)), url('../img/ultra-unique-hero.jpg') center/cover no-repeat;
  --hero-title: var(--light);
  --hero-text: var(--light);
}

/* Global Styles with Advanced Typography */
body,
input,
button,
textarea,
select {
  font-family: var(--font-main);
  line-height: 1.7;
  letter-spacing: -0.01em;
}

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

@keyframes pulse-glow {
  0%, 100% { box-shadow: var(--shadow-glow); }
  50% { box-shadow: var(--shadow-neon); }
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes slide-in-up {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ultra-Modern Navbar */
.navbar-custom {
  background: var(--navbar-bg);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(16, 185, 129, 0.2);
  padding: 1.2rem 0;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.navbar-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 2px;
  background: var(--gradient-animated);
  background-size: 300% 100%;
  animation: gradient-shift 3s ease infinite;
}

.navbar-custom .navbar-brand {
  font-family: var(--font-accent);
  font-weight: 800;
  color: var(--primary);
  font-size: 1.8rem;
  letter-spacing: -1px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
  position: relative;
}

.navbar-custom .navbar-brand::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--gradient-primary);
  transition: width 0.4s ease;
  border-radius: 2px;
}

.navbar-custom .navbar-brand:hover::after {
  width: 100%;
}

.navbar-custom .navbar-nav .nav-link {
  color: var(--navbar-link);
  font-weight: 600;
  margin: 0 1.5rem;
  position: relative;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}

.navbar-custom .navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all 0.3s ease;
  transform: translateY(-50%);
}

.navbar-custom .navbar-nav .nav-link:hover::before,
.navbar-custom .navbar-nav .nav-link.active::before {
  width: 20px;
}

.navbar-custom .navbar-nav .nav-link:hover,
.navbar-custom .navbar-nav .nav-link.active {
  color: var(--primary);
  transform: translateX(15px);
}

.btn-contact {
  background: var(--gradient-primary);
  color: var(--light);
  font-weight: 700;
  border-radius: 50px;
  padding: 0.8rem 2.5rem;
  transition: all 0.4s ease;
  border: none;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.btn-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.btn-contact:hover::before {
  left: 100%;
}

.btn-contact:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-strong);
  color: var(--light);
}

/* Revolutionary Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: var(--hero-bg);
  text-align: center;
  color: var(--hero-text);
  font-family: var(--font-main);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.2), transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(168, 85, 247, 0.2), transparent 50%);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section .hero-title {
  color: var(--hero-title);
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
  letter-spacing: -2px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: slide-in-up 1s ease-out;
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-section .hero-desc {
  font-size: 1.4rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.95;
  animation: slide-in-up 1s ease-out 0.2s both;
  font-weight: 300;
  line-height: 1.8;
}

.hero-section .row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
  animation: float 6s ease-in-out infinite;
}

.hero-section .row > div:nth-child(2) {
  animation-delay: -2s;
}

.hero-section .row > div:nth-child(3) {
  animation-delay: -4s;
}

.hero-section .row > div::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.hero-section .row > div:hover::before {
  transform: scaleX(1);
}

.hero-section .row > div:hover {
  transform: translateY(-15px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-strong);
}

/* Ultra-Modern Button Styles */
.btn-custom {
  background: var(--gradient-tertiary);
  color: var(--light);
  font-weight: 700;
  border-radius: 50px;
  padding: 1rem 3rem;
  border: none;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1rem;
}

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

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

.btn-custom:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-strong);
  color: var(--light);
}

/* Advanced Card Designs */
.section-info-row {
  box-shadow: var(--shadow-strong);
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(16, 185, 129, 0.2);
  position: relative;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
}

.section-info-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-animated);
  background-size: 300% 100%;
  animation: gradient-shift 4s ease infinite;
}

.section-info-bg {
  background: var(--gradient-primary);
  color: white;
  position: relative;
}

.section-info-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.section-info-text {
  font-size: 1.2rem;
  color: white;
  max-width: 500px;
  margin: 0 auto;
  opacity: 0.95;
  font-weight: 300;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

/* Futuristic Pricing Cards */
.section-plans {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  position: relative;
}

.section-plans::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(16, 185, 129, 0.1), transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1), transparent 50%);
}

.plan-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px) saturate(180%);
  border-radius: 40px;
  box-shadow: var(--shadow-strong);
  padding: 3.5rem 3rem 1.5rem 3rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.6s ease;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.6s ease;
}

.plan-card::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: var(--gradient-radial);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.6s ease;
}

.plan-card:hover::before {
  transform: scaleX(1);
}

.plan-card:hover::after {
  opacity: 0.2;
  transform: scale(1.5);
}

.plan-card:hover {
  transform: translateY(-20px) rotateX(5deg);
  box-shadow: 0 40px 100px rgba(16, 185, 129, 0.3);
  border-color: var(--primary);
}

.plan-card h4 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-accent);
  font-weight: 800;
  letter-spacing: -1px;
}

.plan-price {
  background: var(--gradient-tertiary);
  color: white;
  font-size: 1.8rem;
  font-weight: 800;
  border-radius: 0 0 35px 35px;
  padding: 2rem 0;
  text-align: center;
  margin: 1.5rem -3rem -1.5rem -3rem;
  box-shadow: 0 -10px 40px rgba(16, 185, 129, 0.3);
  font-family: var(--font-accent);
  letter-spacing: -1px;
  position: relative;
}

.plan-price::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
}

/* Expert Profiles - Ultra Modern */
.experts-section {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
  padding: 6rem 0;
  position: relative;
}

.experts-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(168, 85, 247, 0.05), transparent 70%);
}

.expert-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px) saturate(180%);
  border-radius: 40px;
  box-shadow: var(--shadow-strong);
  padding: 3rem 2.5rem;
  border: 1px solid rgba(16, 185, 129, 0.2);
  transition: all 0.6s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.expert-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(16, 185, 129, 0.1), transparent);
  animation: spin 20s linear infinite;
  opacity: 0;
  transition: opacity 0.6s ease;
}

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

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

.expert-card:hover {
  transform: translateY(-15px) rotateY(5deg);
  box-shadow: 0 40px 100px rgba(168, 85, 247, 0.3);
}

.expert-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 2rem;
  border: 5px solid transparent;
  background: var(--gradient-primary);
  padding: 5px;
  box-shadow: var(--shadow-strong);
  transition: all 0.6s ease;
  position: relative;
  z-index: 2;
}

.expert-card:hover .expert-photo {
  transform: scale(1.1) rotateZ(5deg);
  animation: pulse-glow 2s ease-in-out infinite;
}

.expert-name {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-accent);
  letter-spacing: -1px;
  position: relative;
  z-index: 2;
}

.expert-position {
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.expert-description {
  color: var(--dark);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

/* Advanced Footer */
.footer-main {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  border-top: 5px solid var(--primary);
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.footer-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient-animated);
  background-size: 300% 100%;
  animation: gradient-shift 5s ease infinite;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  padding: 0.5rem 0;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.4s ease;
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-links a:hover {
  color: var(--primary);
  transform: translateX(10px);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .navbar-custom .navbar-nav {
    flex-direction: column;
    align-items: center;
  }
  
  .navbar-custom .btn-contact {
    width: 100%;
    margin-top: 1rem;
  }
  
  .hero-section .hero-title {
    font-size: 2.5rem;
  }
  
  .section-info-row {
    flex-direction: column !important;
  }
  
  .section-info-bg {
    border-radius: 0 0 40px 40px !important;
  }
}

/* Contact Form Enhancements */
.contact-main-section {
  background: linear-gradient(135deg, #f8fafc, #e2e8f0);
}

.contact-main-section .bg-white {
  border-radius: 40px;
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.contact-main-section h2 {
  font-family: var(--font-accent);
  font-weight: 800;
  letter-spacing: -1px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-main-section .form-control {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(16, 185, 129, 0.2);
  box-shadow: var(--shadow-soft);
  font-family: var(--font-main);
  font-size: 1.1rem;
  padding: 1rem 1.5rem;
  border-radius: 20px;
  transition: all 0.4s ease;
}

.contact-main-section .form-control:focus {
  border: 2px solid var(--primary);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
  transform: translateY(-2px);
}

.contact-main-section .btn-dark {
  background: var(--gradient-primary);
  color: #fff;
  border-radius: 25px;
  font-size: 1.1rem;
  padding: 1rem 0;
  transition: all 0.4s ease;
  border: none;
  box-shadow: var(--shadow-medium);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-main-section .btn-dark:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-strong);
  color: #fff;
}

/* Contact Icons */
.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem auto;
  background: var(--gradient-radial);
  border-radius: 50%;
  box-shadow: var(--shadow-strong);
  transition: all 0.4s ease;
  animation: pulse-glow 3s ease-in-out infinite;
}

.contact-icon:hover {
  transform: scale(1.1) rotateY(180deg);
}

.contact-icon span {
  color: #fff;
  font-size: 3rem;
  line-height: 1;
}

/* Terms and Legal Pages */
.terms-section {
  background: var(--gradient-secondary);
  font-family: var(--font-main);
  min-height: 100vh;
  padding: 80px 0 60px 0;
  position: relative;
}

.terms-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(245, 158, 11, 0.1), transparent 50%);
}

.terms-title {
  text-align: center;
  font-weight: 800;
  color: white;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  letter-spacing: -1px;
  font-family: var(--font-accent);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.terms-list {
  color: white;
  font-size: 1.1rem;
  line-height: 1.8;
  padding-left: 20px;
  font-weight: 300;
}

.terms-list li {
  margin-bottom: 2rem;
  position: relative;
}

.terms-list li::before {
  content: '▶';
  position: absolute;
  left: -20px;
  color: var(--tertiary);
  font-weight: bold;
}

/* Utility Classes */
.fade-in-up {
  animation: slide-in-up 0.8s ease-out;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass-effect {
  backdrop-filter: blur(20px) saturate(180%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Advanced Hover Effects */
.hover-lift {
  transition: all 0.4s ease;
}

.hover-lift:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-strong);
}

.hover-glow {
  transition: all 0.4s ease;
}

.hover-glow:hover {
  box-shadow: var(--shadow-glow);
}

