/* NUJUQU FUSION - Custom Styles */

:root {
  --primary-color: #6366f1;
  --secondary-color: #8b5cf6;
  --accent-color: #06b6d4;
  --dark-color: #1e1b4b;
  --light-gray: #f8fafc;
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #06b6d4 100%);
  --gradient-secondary: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: #ffffff;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Crimson Text', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

/* Gradient Text Effect */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* Navigation Styles */
.navbar {
  backdrop-filter: blur(20px);
  background-color: rgba(30, 27, 75, 0.1) !important;
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar.navbar-scrolled {
  background-color: rgba(30, 27, 75, 0.95) !important;
  backdrop-filter: blur(20px);
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Crimson Text', serif;
}

.nav-link {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9) !important;
  transition: all 0.3s ease;
  padding: 0.7rem 1.2rem !important;
  border-radius: 25px;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: #ffffff !important;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: var(--gradient-primary);
  position: relative;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0.9;
}

.hero-badge .badge {
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 2rem;
}

.hero-text {
  font-size: 1.3rem;
  font-weight: 300;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-image {
  border-radius: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.hero-image:hover {
  transform: perspective(1000px) rotateY(0deg) scale(1.05);
}

/* Floating Elements Animation */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.floating-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.floating-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.floating-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 60%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Experience Section (New Unique Section) */
.experience-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2rem;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.experience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.experience-card:hover::before {
  opacity: 0.1;
}

.experience-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(99, 102, 241, 0.3);
}

.experience-icon {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 1rem;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

/* Creation Cards */
.creation-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
}

.creation-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.25);
}

.creation-icon {
  font-size: 3rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* Philosophy Cards */
.philosophy-card {
  background: #ffffff;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #f1f5f9;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.philosophy-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-primary);
}

.philosophy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(99, 102, 241, 0.15);
}

.philosophy-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

/* Button Styles */
.btn-primary {
  background: var(--gradient-primary);
  border: none;
  font-weight: 600;
  transition: all 0.4s ease;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.4);
  background: var(--gradient-primary);
}

.btn-outline-primary {
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  font-weight: 600;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  transition: all 0.4s ease;
}

.btn-outline-primary:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  font-weight: 600;
  border-radius: 50px;
  padding: 1rem 2.5rem;
  transition: all 0.4s ease;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-3px);
  backdrop-filter: blur(10px);
}

/* Background Gradients */
.bg-gradient-primary {
  background: var(--gradient-primary) !important;
}

.bg-primary {
  background: var(--primary-color) !important;
}

.text-primary {
  color: var(--primary-color) !important;
}

.bg-secondary {
  background: var(--gradient-secondary) !important;
}

.bg-light {
  background-color: var(--light-gray) !important;
}

/* Card Styles */
.card {
  transition: all 0.4s ease;
  border-radius: 1.5rem;
  overflow: hidden;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Image Containers */
.image-container {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
}

.image-container img {
  transition: transform 0.5s ease;
}

.image-container:hover img {
  transform: scale(1.05);
}

/* Benefits List */
.benefits-list li {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
}

.benefits-list i {
  color: var(--accent-color);
  font-size: 1.2rem;
}

/* Feature Items */
.feature-item {
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* Footer */
footer {
  background: var(--gradient-secondary) !important;
}

footer .hover-link:hover {
  color: var(--accent-color) !important;
  transition: color 0.3s ease;
}

/* Forms */
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(99, 102, 241, 0.25);
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

/* Utility Classes */
.min-vh-100 {
  min-height: 100vh;
}

.z-index-2 {
  z-index: 2;
}

.rounded-4 {
  border-radius: 1.5rem;
}

.text-muted {
  color: var(--text-muted) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-text {
    font-size: 1.1rem;
  }
  
  .display-4 {
    font-size: 2.5rem;
  }
  
  .display-5 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-text {
    font-size: 1rem;
  }
  
  .hero-section {
    min-height: 90vh;
  }
  
  .experience-card,
  .philosophy-card {
    padding: 2rem 1.5rem;
  }
  
  .creation-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .btn-lg {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .floating-element {
    display: none;
  }
}

/* Animation Classes */
.animate-fade-in {
  animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Contact Page Specific Styles */
.contact-hero {
  background: var(--gradient-primary);
  padding: 8rem 0 4rem;
}

.contact-card {
  background: #ffffff;
  border-radius: 2rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border: none;
  overflow: hidden;
}

.contact-info-item {
  padding: 2rem;
  background: rgba(99, 102, 241, 0.05);
  border-radius: 1.5rem;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: rgba(99, 102, 241, 0.1);
  transform: translateY(-3px);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

/* Thank You Page Styles */
.thank-you-section {
  background: var(--gradient-primary);
  min-height: 100vh;
}

.thank-you-icon {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.thank-you-feature {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1.5rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.thank-you-feature:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
}