/* Custom CSS Variables */
:root {
  --color-primary: #3C315B;
  --color-secondary: #E2DFFE;
  --color-background: #F5F2FF;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-gray: #6c757d;
  --color-light-gray: #f8f9fa;
  --color-accent: #8B5CF6;
  --color-success: #10B981;
  --color-warning: #F59E0B;
  --color-error: #EF4444;
  --font-default: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-primary: "Poppins", sans-serif;
  --font-secondary: "Space Grotesk", sans-serif;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-default);
  color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-background) 0%, #E8E2FF 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

a:hover {
  color: var(--color-accent);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.2;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-fluid {
  width: 100%;
  padding: 0 20px;
}

.container-xl {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utility Classes */
.d-flex { display: flex; }
.d-inline-flex { display: inline-flex; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.align-self-center { align-self: center; }
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.flex-column { flex-direction: column; }
.text-center { text-align: center; }
.text-lg-start { text-align: left; }
.img-fluid { max-width: 100%; height: auto; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }
.mt-lg-0 { margin-top: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.gy-4 > * { margin-bottom: 1.5rem; }
.gx-0 { margin-left: 0; margin-right: 0; }

/* Grid System */
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-12,
.col-md-6, .col-md-12, .col-6 {
  padding: 0 15px;
  width: 100%;
}

@media (min-width: 768px) {
  .col-md-6 { width: 50%; }
  .col-md-12 { width: 100%; }
}

@media (min-width: 992px) {
  .col-lg-2 { width: 16.666667%; }
  .col-lg-3 { width: 25%; }
  .col-lg-4 { width: 33.333333%; }
  .col-lg-5 { width: 41.666667%; }
  .col-lg-6 { width: 50%; }
  .col-lg-12 { width: 100%; }
  .mt-lg-0 { margin-top: 0 !important; }
  .text-lg-start { text-align: left !important; }
}

.col-6 { width: 50%; }

/* Animated Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, var(--color-background) 0%, #E8E2FF 100%);
}

.animated-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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="25" cy="25" r="1" fill="%23E2DFFE" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23E2DFFE" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23E2DFFE" opacity="0.1"/><circle cx="10" cy="60" r="0.5" fill="%23E2DFFE" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="%23E2DFFE" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  animation: float 20s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(1deg); }
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 997;
  padding: 20px 0;
  border-bottom: 1px solid rgba(60, 49, 91, 0.1);
  box-shadow: var(--shadow-sm);
}

.header.fixed-top {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header.header-scrolled {
  background: rgba(255, 255, 255, 0.98);
  padding: 15px 0;
  box-shadow: var(--shadow-md);
}

.header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.5px;
  font-family: var(--font-secondary);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar > ul > li {
  margin-left: 8px;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-primary);
  white-space: nowrap;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50px;
  position: relative;
}

.navbar a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a {
  color: var(--color-accent);
  transform: translateY(-2px);
}

.navbar a:hover::before,
.navbar .active::before {
  width: 80%;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  padding: 12px 28px;
  margin-left: 30px;
  border-radius: 50px;
  color: var(--color-primary);
  font-weight: 600;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  color: white;
}

.mobile-nav-toggle {
  color: var(--color-primary);
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

/* Hero Section */
.hero {
  width: 100%;
  min-height: 100vh;
  background: transparent;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(226, 223, 254, 0.3) 0%, transparent 50%);
  z-index: -1;
}

.hero h1 {
  margin: 0 0 20px 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out;
}

.hero h2 {
  color: var(--color-gray);
  margin-bottom: 40px;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 400;
  line-height: 1.6;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero .btn-get-started {
  margin-right: 20px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  color: var(--color-primary);
  border-radius: 50px;
  padding: 16px 32px;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  border: none;
  cursor: pointer;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero .btn-get-started:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  color: white;
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--color-primary);
  font-weight: 600;
  padding: 16px 24px;
  border-radius: 50px;
  border: 2px solid var(--color-secondary);
  background: transparent;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero .btn-watch-video:hover {
  background: var(--color-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.hero .hero-img {
  text-align: right;
  animation: fadeInRight 1s ease-out 0.8s both;
}

.hero .hero-img img {
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero .hero-img img:hover {
  transform: scale(1.05) rotate(2deg);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

/* Sections */
section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.section-header {
  text-align: center;
  padding-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--color-primary);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-header h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
  bottom: 0;
  left: calc(50% - 40px);
  border-radius: 2px;
}

.section-header p {
  margin-bottom: 0;
  font-size: 18px;
  color: var(--color-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features Section */
.features {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.features .feature-box {
  padding: 30px 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}

.features .feature-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  background: rgba(255, 255, 255, 0.95);
}

.features .feature-box i {
  font-size: 48px;
  padding-right: 15px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features .feature-box h3 {
  font-size: 20px;
  color: var(--color-primary);
  font-weight: 700;
  margin: 0;
}

/* About Section */
.about {
  background: transparent;
}

.about .content {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  color: var(--color-accent);
  margin-bottom: 10px;
}

.about .content h2 {
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: var(--color-primary);
}

.about .content p {
  margin-bottom: 30px;
  color: var(--color-gray);
  font-size: 16px;
  line-height: 1.8;
}

.about .btn-read-more {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  color: var(--color-primary);
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  padding: 16px 32px;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
}

.about .btn-read-more:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  color: white;
}

/* Values Section */
.values {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.values .box {
  padding: 40px 30px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.values .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
}

.values .box:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-xl);
  background: rgba(255, 255, 255, 1);
}

.values .box img {
  padding: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 15px;
  height: 200px;
  object-fit: cover;
  width: 100%;
}

.values .box:hover img {
  transform: scale(1.1);
}

.values .box h3 {
  font-size: 24px;
  color: var(--color-primary);
  font-weight: 700;
  margin: 20px 0 15px 0;
}

.values .box p {
  color: var(--color-gray);
  font-size: 15px;
  line-height: 1.6;
}

/* Services Section */
.services {
  background: transparent;
}

.services .service-box {
  box-shadow: var(--shadow-lg);
  height: 100%;
  padding: 50px 30px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.services .service-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(139, 92, 246, 0.05) 100%);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services .service-box:hover::before {
  opacity: 1;
}

.services .service-box .icon {
  font-size: 48px;
  padding: 30px;
  border-radius: 20px;
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
  line-height: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.services .service-box h3 {
  color: var(--color-primary);
  font-weight: 700;
  margin: 15px 0 20px 0;
  font-size: 24px;
}

.services .service-box p {
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 0;
  color: var(--color-gray);
}

.services .service-box:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-xl);
  background: rgba(255, 255, 255, 1);
}

.services .service-box:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

.services .service-box.blue .icon { 
  color: #47aeff; 
  background: linear-gradient(135deg, #e1f0ff 0%, #cce7ff 100%);
}
.services .service-box.orange .icon { 
  color: #ffa76e; 
  background: linear-gradient(135deg, #ffeee7 0%, #ffd9c7 100%);
}
.services .service-box.green .icon { 
  color: #11dbcf; 
  background: linear-gradient(135deg, #e7fdfc 0%, #d1faf8 100%);
}
.services .service-box.red .icon { 
  color: #ff5828; 
  background: linear-gradient(135deg, #ffebe3 0%, #ffd6c7 100%);
}
.services .service-box.purple .icon { 
  color: #8e44ad; 
  background: linear-gradient(135deg, #f4ecf7 0%, #e8d5ed 100%);
}
.services .service-box.pink .icon { 
  color: #ff69b4; 
  background: linear-gradient(135deg, #ffe8f4 0%, #ffd1e8 100%);
}

/* How to Use Section */
.how-to-use {
  background: transparent;
}

.step-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  background: rgba(255, 255, 255, 1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 25px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover .step-number {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-lg);
}

.step-card h3 {
  font-size: 24px;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 20px;
}

.step-card p {
  color: var(--color-gray);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Comparison Section */
.comparison {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.comparison-table {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
}

.table-responsive {
  overflow-x: auto;
}

.comparison-grid {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-primary);
}

.comparison-grid th,
.comparison-grid td {
  padding: 20px 15px;
  text-align: center;
  border-bottom: 1px solid rgba(60, 49, 91, 0.1);
  font-size: 16px;
}

.comparison-grid th {
  background: linear-gradient(135deg, var(--color-secondary) 0%, rgba(139, 92, 246, 0.1) 100%);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 18px;
}

.comparison-grid .phantom-col {
  background: linear-gradient(135deg, rgba(226, 223, 254, 0.3) 0%, rgba(139, 92, 246, 0.1) 100%);
  font-weight: 600;
  color: var(--color-primary);
}

.comparison-grid td {
  color: var(--color-gray);
  transition: all 0.3s ease;
}

.comparison-grid tr:hover td {
  background: rgba(226, 223, 254, 0.1);
}

/* Fees Section */
.fees {
  background: transparent;
}

.fee-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.fee-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-success), var(--color-accent));
}

.fee-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  background: rgba(255, 255, 255, 1);
}

.fee-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.fee-card h3 {
  font-size: 24px;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 15px;
}

.fee-amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-success);
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--color-success) 0%, var(--color-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.fee-card p {
  color: var(--color-gray);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Troubleshooting Section */
.troubleshooting {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.trouble-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.trouble-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-warning), var(--color-error));
}

.trouble-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
  background: rgba(255, 255, 255, 1);
}

.trouble-card h3 {
  font-size: 20px;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.solution h4 {
  font-size: 16px;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 15px;
}

.solution ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.solution ul li {
  padding: 8px 0;
  color: var(--color-gray);
  font-size: 15px;
  line-height: 1.5;
  position: relative;
  padding-left: 25px;
}

.solution ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 600;
}

/* Portfolio Section */
.portfolio {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.portfolio-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.portfolio-item {
  margin-bottom: 30px;
}

.portfolio-wrap {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.portfolio-wrap::before {
  content: "";
  background: linear-gradient(135deg, rgba(60, 49, 91, 0.9) 0%, rgba(139, 92, 246, 0.8) 100%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  opacity: 0;
}

.portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  color: white;
}

.portfolio-wrap .portfolio-info h4 {
  font-size: 24px;
  color: white;
  font-weight: 700;
  margin-bottom: 15px;
}

.portfolio-wrap .portfolio-info p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  margin-bottom: 25px;
  line-height: 1.6;
}

.portfolio-wrap .download-btn {
  background: linear-gradient(135deg, var(--color-secondary) 0%, white 100%);
  color: var(--color-primary);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
}

.portfolio-wrap .download-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: white;
}

.portfolio-wrap:hover::before {
  opacity: 1;
}

.portfolio-wrap:hover .portfolio-info {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.05);
}

.portfolio-wrap:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.portfolio-wrap img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-wrap:hover img {
  transform: scale(1.1);
}

/* FAQ Section */
.faq {
  background: transparent;
}

.faq .accordion-item {
  border: 0;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq .accordion-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.faq .accordion-button {
  padding: 25px 30px;
  font-weight: 600;
  border: 0;
  font-size: 18px;
  color: var(--color-primary);
  text-align: left;
  background: transparent;
  border-radius: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq .accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--color-secondary) 0%, rgba(139, 92, 246, 0.1) 100%);
  color: var(--color-primary);
  border-bottom: 0;
}

.faq .accordion-body {
  padding: 0 30px 25px 30px;
  border: 0;
  color: var(--color-gray);
  font-size: 16px;
  line-height: 1.6;
}

/* Contact Section */
.contact {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.contact .info-box {
  color: var(--color-gray);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
}

.contact .info-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  background: rgba(255, 255, 255, 1);
}

.contact .info-box i {
  font-size: 48px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  display: block;
}

.contact .info-box h3 {
  font-size: 22px;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 15px;
}

.contact .info-box p {
  padding: 0;
  line-height: 1.6;
  font-size: 15px;
  margin-bottom: 0;
}

.contact .info-content {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact .info-content h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 25px;
}

.contact .info-content p {
  color: var(--color-gray);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.contact .info-content ul {
  list-style: none;
  padding: 0;
}

.contact .info-content ul li {
  padding: 15px 0;
  color: var(--color-gray);
  font-size: 16px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(60, 49, 91, 0.1);
}

.contact .info-content ul li:last-child {
  border-bottom: none;
}

.contact .info-content ul li strong {
  color: var(--color-primary);
  font-weight: 700;
}

/* Footer */
.footer {
  background: linear-gradient(135deg, var(--color-primary) 0%, #2D1B4E 100%);
  color: white;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
}

.footer .footer-top {
  padding: 80px 0 40px 0;
  background: transparent;
  position: relative;
  z-index: 1;
}

.footer .footer-info .logo {
  line-height: 0;
  margin-bottom: 25px;
}

.footer .footer-info .logo span {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: white;
  font-family: var(--font-secondary);
}

.footer .footer-info p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
  font-family: var(--font-primary);
  color: rgba(255, 255, 255, 0.8);
}

.footer .social-links {
  display: flex;
  gap: 15px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .social-links a:hover {
  color: white;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.footer h4 {
  font-size: 18px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  color: white;
  margin-bottom: 25px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
  line-height: 1;
  font-size: 15px;
}

.footer .footer-links ul a:hover {
  color: white;
  transform: translateX(5px);
}

.footer .footer-contact .download-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer .download-btn {
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  color: var(--color-primary);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
  box-shadow: var(--shadow-md);
  border: none;
  cursor: pointer;
}

.footer .download-btn:hover {
  background: linear-gradient(135deg, white 0%, var(--color-secondary) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.footer .copyright {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

/* Back to Top */
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
  border: none;
  cursor: pointer;
}

.back-to-top i {
  font-size: 24px;
  color: var(--color-primary);
  line-height: 0;
}

.back-to-top:hover {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 100%);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Bootstrap Icons */
.bi::before {
  display: inline-block;
  content: "";
  vertical-align: -0.125em;
  background-image: var(--bs-icon);
  background-repeat: no-repeat;
  background-size: 1rem 1rem;
}

.bi-check::before { content: "✓"; }
.bi-geo-alt::before { content: "📍"; }
.bi-telephone::before { content: "📞"; }
.bi-envelope::before { content: "✉️"; }
.bi-clock::before { content: "🕐"; }
.bi-twitter::before { content: "🐦"; }
.bi-discord::before { content: "💬"; }
.bi-telegram::before { content: "📱"; }
.bi-github::before { content: "🐙"; }
.bi-arrow-up-short::before { content: "↑"; }

/* Remix Icons */
.ri-stack-line::before { content: "📚"; }
.ri-discuss-line::before { content: "💬"; }
.ri-shuffle-line::before { content: "🔀"; }
.ri-command-line::before { content: "⌘"; }
.ri-pulse-line::before { content: "📈"; }

/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--color-accent);
  animation: spin 1s ease-in-out infinite;
}

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

/* Scroll Reveal Animation */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1199px) {
  .hero h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
  .hero h2 { font-size: clamp(1rem, 2vw, 1.3rem); }
  .container { padding: 0 15px; }
}

@media (max-width: 991px) {
  .hero { 
    min-height: auto; 
    padding: 120px 0 80px 0; 
  }
  .hero .hero-img { 
    text-align: center; 
    margin-top: 60px; 
  }
  .hero .hero-img img { 
    width: 90%; 
    max-width: 500px;
  }
  
  .mobile-nav-toggle { 
    display: block; 
    background: none;
    border: none;
  }
  
  .navbar ul { 
    display: none; 
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
  }
  
  .navbar.navbar-mobile ul {
    display: flex;
  }
  
  .navbar.navbar-mobile ul li {
    margin: 10px 0;
  }
  
  .section-header h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
  
  section { padding: 60px 0; }
  
  .services .service-box,
  .values .box,
  .contact .info-box { 
    padding: 30px 20px; 
  }
  
  .about .content { 
    padding: 30px; 
  }
}

@media (max-width: 768px) {
  .hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
  .hero h2 { font-size: clamp(0.9rem, 2vw, 1.2rem); margin-bottom: 30px; }
  
  .hero .btn-get-started,
  .hero .btn-watch-video { 
    font-size: 14px; 
    padding: 14px 24px;
    margin: 8px 5px;
    display: inline-block;
  }
  
  .section-header h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
  .section-header p { font-size: 16px; }
  
  .services .service-box { padding: 30px 20px; }
  .values .box { padding: 25px 20px; }
  .contact .info-box { padding: 25px 20px; }
  .about .content { padding: 25px; }
  .contact .info-content { padding: 25px; }
  
  .footer .social-links { 
    justify-content: center; 
    margin-top: 20px;
  }
  
  .portfolio-wrap img { height: 220px; }
  
  section { padding: 50px 0; }
}

@media (max-width: 575px) {
  .hero h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
  .hero h2 { font-size: clamp(0.85rem, 2vw, 1.1rem); }
  
  .hero .btn-get-started,
  .hero .btn-watch-video { 
    display: block; 
    margin: 10px auto;
    text-align: center;
    width: 100%;
    max-width: 280px;
  }
  
  .section-header h2 { font-size: clamp(1.4rem, 3vw, 1.8rem); }
  
  .col-6 { width: 100%; }
  
  .services .service-box,
  .values .box,
  .contact .info-box,
  .about .content,
  .contact .info-content { 
    padding: 20px; 
  }
  
  .portfolio-wrap img { height: 200px; }
  
  .footer .download-buttons {
    gap: 10px;
  }
  
  .container,
  .container-fluid,
  .container-xl {
    padding: 0 15px;
  }
}

/* High DPI Display Support */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero .hero-img img,
  .portfolio-wrap img,
  .values .box img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --color-background: #1a1625;
    --color-white: #1a1625;
    --color-light-gray: #2a2435;
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print Styles */
@media print {
  .header,
  .mobile-nav-toggle,
  .back-to-top,
  .btn-get-started,
  .btn-watch-video,
  .download-btn {
    display: none !important;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
  
  .hero,
  section {
    padding: 20px 0 !important;
  }
}