/* =====================================================
   PROFESSIONAL ACCOUNTING LAB - MAIN STYLESHEET
   ===================================================== */

:root {
  --primary-color: #2d1b4e;
  --secondary-color: #6c5ce7;
  --tertiary-color: #00b894;
  --accent-gold: #f39c12;
  --accent-teal: #00cec9;
  --text-dark: #2c3e50;
  --text-light: #7f8c8d;
  --bg-light: #f8f9fa;
  --bg-white: #ffffff;
  --border-color: #e1e8ed;
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
  --transition: all 0.3s ease;
}

/* =====================================================
   GLOBAL STYLES
   ===================================================== */
.text-warning {
  color: var(--accent-teal) !important;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Tajawal", "Poppins", sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2.5rem;
}
h3 {
  font-size: 1.75rem;
}
h4 {
  font-size: 1.3rem;
}
h5 {
  font-size: 1.1rem;
}
h6 {
  font-size: 0.95rem;
}

p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-color);
}

/* =====================================================
   NAVBAR STYLES
   ===================================================== */

/* Elegant Navbar Variables */
:root {
  --color-primary: #2d1b4e;
  --color-primary-dark: #2d1b4e;
  --color-gradient-start: #2d1b4e;
  --color-gradient-end: #2d1b4e;
  --color-text-light: #ffffff;
  --color-text-dark: #0f172a;
  --color-bg-navbar: rgba(255, 255, 255, 0.95);
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-brand img {
  height: 50px;
  width: auto;
}

.nav-action-link {
  background: none !important;
}

.nav-action-link:hover {
  box-shadow: none !important;
}

/* Navbar Container */
.navbar-elegant {
  background: var(--color-bg-navbar);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(45, 27, 78, 0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(45, 27, 78, 0.1);
  transition: var(--transition-smooth);
}

.navbar-elegant.scrolled {
  padding: 0.5rem 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 32px rgba(45, 27, 78, 0.1);
}

/* Brand Styling */
.navbar-brand {
  padding: 0;
}

.brand-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 12px;

  transition: var(--transition-smooth);
}

.brand-icon {
  font-size: 1.75rem;
  color: var(--color-primary);
  background: linear-gradient(
    135deg,
    var(--color-gradient-start),
    var(--color-gradient-end)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-text {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--color-gradient-start),
    var(--color-gradient-end)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.5px;
}

.brand-tagline {
  font-size: 0.75rem;
  color: var(--color-primary-dark);
  font-weight: 500;
  opacity: 0.8;
  margin-left: 0.5rem;
  padding-left: 0.5rem;
  border-left: 1px solid rgba(45, 27, 78, 0.3);
}

/* Mobile Toggle with X and - Animation */
.navbar-toggler {
  border: none;
  padding: 0.5rem;
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    rgba(45, 27, 78, 0.1) 0%,
    rgba(45, 27, 78, 0.1) 100%
  );
  transition: var(--transition-smooth);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.navbar-toggler:hover {
  background: linear-gradient(
    135deg,
    rgba(45, 27, 78, 0.1) 0%,
    rgba(45, 27, 78, 0.14) 100%
  );
}

.navbar-toggler:focus {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(45, 27, 78, 0.1);
}

.navbar-toggler-icon {
  width: 24px;
  height: 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.toggler-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  transition: var(--transition-smooth);
  position: absolute;
  left: 0;
}

.toggler-bar-1 {
  top: 0;
}

.toggler-bar-2 {
  top: 50%;
  transform: translateY(-50%);
}

.toggler-bar-3 {
  bottom: 0;
}

/* X Animation when menu is open */
.navbar-toggler[aria-expanded="true"] .toggler-bar-1 {
  transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar-2 {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar-3 {
  transform: translateY(-8px) rotate(-45deg);
}

/* Navigation Links */
.navbar-nav {
  gap: 0.5rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.25rem !important;
  border-radius: 10px;
  color: var(--color-text-dark) !important;
  font-weight: 500;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.nav-icon {
  font-size: 1.1rem;
  color: var(--color-primary);
  transition: var(--transition-smooth);
  width: 20px;
  text-align: center;
}

.nav-text {
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.nav-underline {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--color-gradient-start),
    var(--color-gradient-end)
  );
  transition: var(--transition-smooth);
  border-radius: 2px;
}

.nav-link:hover {
  background: linear-gradient(
    135deg,
    rgba(45, 27, 78, 0.1) 0%,
    rgba(45, 27, 78, 0.1) 100%
  );
  transform: translateY(-2px);
}

.nav-link:hover .nav-icon {
  transform: scale(1.2);
  color: var(--color-primary-dark);
}

.nav-link:hover .nav-underline {
  width: 80%;
}

.nav-link.active {
  background: linear-gradient(
    135deg,
    rgba(45, 27, 78, 0.1) 0%,
    rgba(45, 27, 78, 0.14) 100%
  );
  color: var(--color-primary-dark) !important;
  font-weight: 600;
}

.nav-link.active .nav-icon {
  color: var(--color-primary-dark);
}

.nav-link.active .nav-underline {
  width: 100%;
  background: linear-gradient(
    90deg,
    var(--color-gradient-start),
    var(--color-gradient-end)
  );
}

/* Hide Bootstrap default navbar toggler icon */
.navbar-toggler-icon {
  background-image: none !important;
}

/* Dropdown Menus */
.dropdown-menu {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(45, 27, 78, 0.1);
  border-radius: 12px;
  padding: 0.75rem;
  box-shadow: 0 20px 40px rgba(45, 27, 78, 0.15);
  animation: dropdownSlide 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 220px;
  margin-top: 0.5rem;
}

@keyframes dropdownSlide {
  from {
    opacity: 0;
    transform: translateY(-10px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.dropdown-header {
  padding: 0.5rem 1rem;
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: 1px solid rgba(45, 27, 78, 0.1);
  margin-bottom: 0.5rem;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  color: var(--color-text-dark);
  font-weight: 500;
  transition: var(--transition-smooth);
  margin: 0.125rem 0;
}

.dropdown-item i {
  color: var(--color-primary);
  width: 20px;
  text-align: center;
  transition: var(--transition-smooth);
}

.dropdown-item:hover {
  background: linear-gradient(
    135deg,
    rgba(45, 27, 78, 0.1) 0%,
    rgba(45, 27, 78, 0.14) 100%
  );
  color: var(--color-primary-dark);
  transform: translateX(5px);
}

.dropdown-item:hover i {
  transform: scale(1.2);
  color: var(--color-primary-dark);
}

.dropdown-divider {
  margin: 0.5rem 0;
  border-color: rgba(45, 27, 78, 0.1);
}

.dropdown-footer {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: var(--color-primary-dark);
  opacity: 0.7;
  text-align: center;
}

/* Right Side Actions */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 2rem;
}

.nav-action-item {
  position: relative;
}

.nav-action-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  color: var(--color-text-dark);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-smooth);

  position: relative;
  border: none;
  cursor: pointer;
}

.nav-action-link i {
  font-size: 1.1rem;
  color: var(--color-primary);
  transition: var(--transition-smooth);
}

.action-text {
  font-size: 0.9rem;
  transition: var(--transition-smooth);
}

.action-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: linear-gradient(
    135deg,
    var(--color-gradient-start),
    var(--color-gradient-end)
  );
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.4rem;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  animation: badgePulse 2s infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(45, 27, 78, 0);
  }

  50% {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(45, 27, 78, 0.5);
  }
}

.nav-action-link:hover {
  background: linear-gradient(
    135deg,
    rgba(45, 27, 78, 0.1) 0%,
    rgba(45, 27, 78, 0.1) 100%
  );
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 27, 78, 0.15);
}

.nav-action-link:hover i {
  transform: scale(1.2);
  color: var(--color-primary-dark);
}

.nav-action-link.active {
  background: linear-gradient(
    135deg,
    rgba(45, 27, 78, 0.15) 0%,
    rgba(45, 27, 78, 0.15) 100%
  );
  color: var(--color-primary-dark);
}

.nav-action-link.active i {
  color: var(--color-primary-dark);
}

/* Elegant Button */
.btn-elegant {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(
    135deg,
    var(--color-gradient-start),
    var(--color-gradient-end)
  );
  color: white !important;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(45, 27, 78, 0.1);
}

.btn-elegant:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 27, 78, 0.14);
  background: linear-gradient(
    135deg,
    var(--color-primary-dark),
    var(--color-gradient-end)
  );
  color: white !important;
}

.btn-elegant:active {
  transform: translateY(-1px);
}

/* Language Flags */
.lang-flag {
  margin-left: auto;
  font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 1199.98px) {
  .navbar-actions {
    gap: 0.75rem;
    margin-left: 1rem;
  }

  .action-text {
    display: none;
  }

  .nav-action-link {
    padding: 0.75rem;
  }

  .btn-elegant span {
    display: none;
  }

  .btn-elegant {
    padding: 0.75rem;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    box-shadow: 0 20px 40px rgba(45, 27, 78, 0.1);
    border: 1px solid rgba(45, 27, 78, 0.1);
  }

  .navbar-nav {
    margin-bottom: 1.5rem;
  }

  .nav-link {
    justify-content: flex-start;
    padding: 1rem !important;
    margin: 0.25rem 0;
  }

  .navbar-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-left: 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(45, 27, 78, 0.1);
  }

  .nav-action-link {
    justify-content: center;
  }

  .action-text {
    display: inline;
  }

  .btn-elegant {
    justify-content: center;
  }

  .btn-elegant span {
    display: inline;
  }

  .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(45, 27, 78, 0.1);
    margin: 0.5rem 0 0.5rem 1rem;
  }
}

@media (max-width: 575.98px) {
  .brand-container {
    padding: 0.5rem;
  }

  .brand-text {
    font-size: 1rem;
  }

  .brand-tagline {
    display: none;
  }

  .nav-text {
    font-size: 0.9rem;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --color-bg-navbar: #0f172a;
    --color-text-dark: #f1f5f9;
  }

  .navbar-elegant {
    background: var(--color-bg-navbar);
    border-bottom: 1px solid rgba(45, 27, 78, 0.1);
  }

  .navbar-elegant.scrolled {
    background: rgba(15, 23, 42, 0.98);
  }

  .dropdown-menu {
    background: rgba(15, 23, 42, 0.98);
    border: 1px solid rgba(45, 27, 78, 0.1);
  }

  .dropdown-item {
    color: #f1f5f9;
  }

  .brand-container {
    background: linear-gradient(
      135deg,
      rgba(45, 27, 78, 0.1) 0%,
      rgba(45, 27, 78, 0.14) 100%
    );
  }

  .toggler-bar {
    background: var(--color-primary);
  }
}

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

  .dropdown-menu {
    animation: none;
  }

  .action-badge {
    animation: none;
  }

  .navbar-toggler[aria-expanded="true"] .toggler-bar-1,
  .navbar-toggler[aria-expanded="true"] .toggler-bar-2,
  .navbar-toggler[aria-expanded="true"] .toggler-bar-3 {
    transition: none;
  }
}

/* High Contrast */
@media (prefers-contrast: high) {
  .navbar-elegant {
    background: #ffffff;
    border-bottom: 2px solid var(--color-primary);
  }

  .nav-link {
    color: #000000 !important;
  }

  .nav-link.active {
    background: var(--color-primary);
    color: #ffffff !important;
    outline: 2px solid #000000;
  }

  .dropdown-menu {
    background: #ffffff;
    border: 2px solid #000000;
  }

  .dropdown-item:hover {
    background: var(--color-primary);
    color: #ffffff;
  }

  .toggler-bar {
    background: #000000;
    height: 3px;
  }
}
/* =====================================================
   HERO SECTION
   ===================================================== */

.hero-section {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.floating-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
}

.circle-1 {
  width: 400px;
  height: 400px;
  background-color: var(--secondary-color);
  top: -100px;
  right: -50px;
  animation: float 6s ease-in-out infinite;
}

.circle-2 {
  width: 300px;
  height: 300px;
  background-color: var(--accent-teal);
  bottom: -50px;
  left: 50px;
  animation: float 8s ease-in-out infinite reverse;
}

.circle-3 {
  width: 200px;
  height: 200px;
  background-color: var(--accent-gold);
  top: 50%;
  left: 20%;
  animation: float 7s ease-in-out infinite;
}

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

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 800;
  line-height: 1.2;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.9;
}

.hero-image {
  position: relative;
  z-index: 1;
}

.hero-image img {
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
  animation: slideInRight 0.8s ease-out;
}

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

.hero-content > * {
  animation: slideInUp 0.8s ease-out;
}

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

/* =====================================================
   FEATURES SECTION
   ===================================================== */
.btn-outline-secondary {
  border: solid 1px var(--color-accent) !important;
  color: var(--color-accent);
}
.features-section {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.feature-card {
  background-color: var(--bg-white);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
  border-top: 4px solid transparent;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--accent-teal);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.icon-purple {
  background-color: #2d1b4e1a;
  color: var(--secondary-color);
}

.icon-teal {
  background-color: rgba(0, 206, 201, 0.1);
  color: var(--accent-teal);
}

.icon-gold {
  background-color: rgba(243, 156, 18, 0.1);
  color: var(--accent-gold);
}

.feature-title {
  color: var(--text-dark);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.feature-description {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* =====================================================
   HOW IT WORKS SECTION
   ===================================================== */

.how-it-works {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  position: relative;
  overflow: hidden;
}

.how-it-works::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #2d1b4e1a, transparent);
}

.step-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}

.step-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(
    to bottom,
    rgba(45, 27, 78, 0.1) 0%,
    rgba(45, 27, 78, 0.3) 50%,
    rgba(45, 27, 78, 0.1) 100%
  );
  transform: translateX(-50%);
}

.step-card {
  position: relative;
  margin-bottom: 60px;
  width: calc(50% - 40px);
  opacity: 0;

  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.step-card:nth-child(odd) {
  margin-left: auto;
  padding-left: 60px;
}

.step-card:nth-child(even) {
  margin-right: auto;
  padding-right: 60px;
  text-align: right;
}

.step-number {
  position: absolute;
  top: 0;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3d2b6e, #3d2b6e);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(45, 27, 78, 0.2);
  z-index: 2;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:nth-child(odd) .step-number {
  left: -35px;
}

.step-card:nth-child(even) .step-number {
  right: -35px;
}

.step-content {
  background: white;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(45, 27, 78, 0.08);
  border: 1px solid rgba(45, 27, 78, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.step-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2d1b4e, #3d2b6e);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.step-card:hover .step-content {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(45, 27, 78, 0.15);
}

.step-card:hover .step-content::before {
  opacity: 1;
}

.step-title {
  color: #2d1b4e;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.step-card:nth-child(even) .step-title::after {
  left: auto;
  right: 0;
}

.step-description {
  color: #4a5568;
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
}

.step-icon {
  position: absolute;
  top: 30px;
  font-size: 1.5rem;
  color: rgba(45, 27, 78, 0.1);
  transition: all 0.4s ease;
}

.step-card:nth-child(odd) .step-icon {
  right: 30px;
}

.step-card:nth-child(even) .step-icon {
  left: 30px;
}

.step-card:hover .step-icon {
  color: #2d1b4e;
  transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .step-timeline::before {
    left: 30px;
  }

  .step-card {
    width: calc(100% - 60px);
    margin-left: 60px !important;
    padding-left: 40px !important;
    padding-right: 20px !important;
    text-align: left !important;
  }

  .step-card:nth-child(even) {
    margin-right: 0;
  }

  .step-number {
    left: -35px !important;
    right: auto !important;
  }

  .step-card:nth-child(even) .step-number {
    left: -35px !important;
  }

  .step-title::after {
    left: 0 !important;
    right: auto !important;
  }

  .step-icon {
    right: 30px !important;
    left: auto !important;
  }
}

/* Animation for step cards */
@keyframes stepAppear {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =====================================================
   BENEFITS SECTION
   ===================================================== */

.benefits-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #2d1b4e, #3d2b6e);
}

.benefits-section .section-title,
.benefits-section .section-subtitle {
  color: white;
}

.benefit-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border-left: 4px solid transparent;
  transition: var(--transition);
}

.benefit-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.benefit-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border-radius: 10px;
}

.benefit-content h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.benefit-content p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  font-size: 0.95rem;
}

/* =====================================================
   CTA SECTION
   ===================================================== */

.cta-section {
  padding: 80px 0;

  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
}

.cta-description {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-cta {
  background-color: white;
  color: var(--primary-color) !important;
  border: none;
  font-weight: 700;
  padding: 0.85rem 2.5rem;
  border-radius: 50px;
  font-size: 1.1rem;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* =====================================================
   FOOTER STYLES
   ===================================================== */

footer {
  background-color: var(--primary-color);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 1rem;
}

footer h4 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-section a:hover {
  color: white;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white !important;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* =====================================================
   ANIMATION & UTILITY CLASSES
   ===================================================== */

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
}

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

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

/* Buttons Global */
.btn {
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
}

.btn-primary-custom,
.btn-cta {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */

@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .feature-card {
    padding: 2rem;
  }

  .step-card {
    flex-direction: column;
    gap: 1rem;
  }

  .step-card {
    padding: 1.5rem;
  }

  .benefit-item {
    gap: 1.5rem;
    padding: 1rem;
  }

  .cta-title {
    font-size: 1.8rem;
  }

  .navbar-nav .nav-link {
    margin: 0.25rem 0;
  }

  .d-flex.gap-3 {
    flex-direction: column;
    gap: 1rem !important;
  }

  .btn-lg {
    width: 100%;
    padding: 0.75rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .cta-title {
    font-size: 1.4rem;
  }

  .cta-description {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  h4 {
    font-size: 1.1rem;
  }
}

/* =====================================================
   PRINT STYLES
   ===================================================== */

@media print {
  .navbar,
  footer,
  .cta-section,
  .btn {
    display: none;
  }
}

/* =====================================================
   ACCESSIBILITY
   ===================================================== */

:focus {
  outline: 2px solid var(--secondary-color);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

/* Custom hamburger menu animation */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: none;
}

.navbar-toggler-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  position: relative;
}

.toggler-bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}

/* Animation for when menu is expanded */
.navbar-toggler[aria-expanded="true"] .toggler-bar-1 {
  transform: translateY(10.5px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar-2 {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar-3 {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* =====================================================
   404 Page
   =====================================================
*/
:root {
  --color-primary: #2d1b4e;
  --color-primary-light: #3d2b6e;
  --color-secondary: #6c63ff;
  --color-bg: #f8f9ff;
  --color-text: #333333;
  --color-text-light: #666666 !important;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.error-container {
  max-width: 800px;
  width: 100%;
  text-align: center;
  position: relative;
  z-index: 2;
}

.error-animation {
  position: relative;
  margin-bottom: 40px;
}

.error-number {
  font-size: 12rem;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.error-number::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 4px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--color-primary),
    transparent
  );
  border-radius: 2px;
}

.error-icon {
  font-size: 8rem;
  color: rgba(45, 27, 78, 0.1);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: float 6s ease-in-out infinite;
}

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

  50% {
    transform: translate(-50%, -50%) translateY(-20px);
  }
}

.error-title {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.error-description {
  font-size: 1.2rem;
  color: var(--color-text-light) !important;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.error-logo {
  margin-bottom: 40px;
}

.error-logo img {
  height: 180px;
  width: auto;
  filter: drop-shadow(0 5px 15px rgba(45, 27, 78, 0.1));
}

.error-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-error {
  padding: 15px 30px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  min-width: 200px;
}

.btn-primary-error {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  color: white;
  box-shadow: 0 10px 30px rgba(45, 27, 78, 0.2);
}

.btn-primary-error:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(45, 27, 78, 0.3);
  color: white;
}

.btn-secondary-error {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  border: 2px solid rgba(45, 27, 78, 0.1);
  backdrop-filter: blur(10px);
}

.btn-secondary-error:hover {
  background: white;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(45, 27, 78, 0.1);
  border-color: var(--color-primary);
}

.error-search {
  max-width: 500px;
  margin: 0 auto 40px;
}

.search-box {
  position: relative;
}

.search-input {
  width: 100%;
  padding: 18px 60px 18px 20px;
  border-radius: 12px;
  border: 2px solid rgba(45, 27, 78, 0.1);
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.search-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(45, 27, 78, 0.1);
  background: white;
}

.search-button {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  color: white;
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.search-button:hover {
  transform: translateY(-50%) scale(1.1);
}

.error-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(45, 27, 78, 0.1);
  color: var(--color-text-light);
  font-size: 0.9rem;
}

.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(45, 27, 78, 0.05),
    rgba(108, 99, 255, 0.05)
  );
  animation: floatShape 20s linear infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  animation-delay: -10s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 10%;
  animation-delay: -5s;
}

@keyframes floatShape {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(100px, 100px) rotate(360deg);
  }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  body {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f1f5f9;
  }

  .error-description {
    color: #cbd5e1;
  }

  .btn-secondary-error {
    background: rgba(30, 41, 59, 0.8);
    color: #f1f5f9;
    border-color: rgba(45, 27, 78, 0.3);
  }

  .btn-secondary-error:hover {
    background: #1e293b;
  }

  .search-input {
    background: rgba(30, 41, 59, 0.8);
    border-color: rgba(45, 27, 78, 0.3);
    color: #f1f5f9;
  }

  .search-input:focus {
    background: #1e293b;
  }

  .error-footer {
    border-top-color: rgba(45, 27, 78, 0.3);
    color: #94a3b8;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .error-number {
    font-size: 8rem;
  }

  .error-icon {
    font-size: 6rem;
  }

  .error-title {
    font-size: 2rem;
  }

  .error-description {
    font-size: 1.1rem;
  }

  .error-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-error {
    width: 100%;
    max-width: 300px;
  }

  .shape-1,
  .shape-2,
  .shape-3 {
    opacity: 0.3;
  }
}

@media (max-width: 480px) {
  .error-number {
    font-size: 6rem;
  }

  .error-icon {
    font-size: 4rem;
  }

  .error-title {
    font-size: 1.8rem;
  }

  .error-description {
    font-size: 1rem;
  }

  .btn-error {
    padding: 12px 24px;
    font-size: 1rem;
  }
}

/* =====================================================
   About  PAGE
   ===================================================== 
*/
:root {
  --color-primary: #2d1b4e;
  --color-primary-light: #3d2b6e;
  --color-secondary: #3d2b6e;
  --color-accent: #3d2b6e;
  --color-bg-light: #f8f9ff;
  --color-text: #333333;
  --color-text-light: #666666;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* About Hero Section */
.about-hero-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.about-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(45, 27, 78, 0.1),
    transparent
  );
}

.about-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.about-hero-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(45, 27, 78, 0.05),
    rgba(108, 99, 255, 0.05)
  );
  animation: floatShape 25s linear infinite;
}

.about-hero-shape-1 {
  width: 450px;
  height: 450px;
  top: -200px;
  right: -200px;
}

.about-hero-shape-2 {
  width: 350px;
  height: 350px;
  bottom: -150px;
  left: -150px;
  animation-delay: -12s;
}

.about-hero-shape-3 {
  width: 250px;
  height: 250px;
  top: 30%;
  left: 10%;
  animation-delay: -6s;
}

@keyframes floatShape {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(120px, 120px) rotate(360deg);
  }
}

.about-hero-title {
  font-size: 3.8rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  line-height: 1.2;
}

.about-hero-subtitle {
  font-size: 1.3rem;
  color: var(--color-text-light);
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

.about-hero-logo {
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.about-hero-logo img {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 15px 30px rgba(45, 27, 78, 0.15));
  transition: var(--transition);
}

.about-hero-logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 20px 40px rgba(45, 27, 78, 0.2));
}

/* Mission Vision Section */
.mission-vision-section {
  padding: 120px 0;
  background: white;
  position: relative;
}

.mission-vision-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(45, 27, 78, 0.1),
    transparent
  );
}

.mission-card-about,
.vision-card-about {
  background: var(--color-bg-light);
  padding: 50px;
  border-radius: 25px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(45, 27, 78, 0.08);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.mission-card-about::before,
.vision-card-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mission-card-about:hover,
.vision-card-about:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(45, 27, 78, 0.15);
  border-color: rgba(45, 27, 78, 0.15);
}

.mission-card-about:hover::before,
.vision-card-about:hover::before {
  opacity: 1;
}

.mission-icon-about,
.vision-icon-about {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
  font-size: 2.2rem;
  color: white;
  transition: var(--transition);
}

.mission-icon-about {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  box-shadow: 0 10px 30px rgba(45, 27, 78, 0.2);
}

.vision-icon-about {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-accent)
  );
  box-shadow: 0 10px 30px rgba(108, 99, 255, 0.2);
}

.mission-card-about:hover .mission-icon-about,
.vision-card-about:hover .vision-icon-about {
  transform: scale(1.1) rotate(5deg);
}

.mission-title-about,
.vision-title-about {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 25px;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.mission-text-about,
.vision-text-about {
  color: var(--color-text-light);
  line-height: 1.9;
  font-size: 1.15rem;
}

/* Values Section */
.values-section-about {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  position: relative;
}

.values-section-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(45, 27, 78, 0.1),
    transparent
  );
}

.value-card-about {
  background: white;
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(45, 27, 78, 0.08);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.value-card-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card-about:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(45, 27, 78, 0.15);
}

.value-card-about:hover::before {
  opacity: 1;
}

.value-icon-about {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2rem;
  color: white;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  box-shadow: 0 10px 25px rgba(45, 27, 78, 0.2);
  transition: var(--transition);
}

.value-card-about:hover .value-icon-about {
  transform: scale(1.1) rotate(10deg);
}

.value-title-about {
  font-size: 1.4rem;
  color: var(--color-primary);
  margin-bottom: 18px;
  font-weight: 700;
}

.value-description-about {
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* Responsive */
@media (max-width: 992px) {
  .about-hero-title {
    font-size: 3rem;
  }

  .about-hero-subtitle {
    font-size: 1.2rem;
  }

  .mission-card-about,
  .vision-card-about {
    padding: 40px;
  }

  .mission-title-about,
  .vision-title-about {
    font-size: 1.8rem;
  }

  .cta-title-about {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .about-hero-section {
    padding: 100px 0 60px;
  }

  .about-hero-title {
    font-size: 2.5rem;
  }

  .about-hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }

  .about-hero-logo img {
    height: 100px;
  }

  .mission-vision-section,
  .values-section-about,
  .cta-section-about {
    padding: 80px 0;
  }

  .mission-card-about,
  .vision-card-about {
    padding: 35px;
  }

  .mission-icon-about,
  .vision-icon-about {
    width: 75px;
    height: 75px;
    font-size: 1.8rem;
  }

  .mission-title-about,
  .vision-title-about {
    font-size: 1.6rem;
  }

  .cta-title-about {
    font-size: 2rem;
  }

  .cta-description-about {
    font-size: 1.1rem;
  }

  .btn-cta-about {
    padding: 16px 35px;
    font-size: 1.1rem;
  }

  .about-hero-shape-1,
  .about-hero-shape-2,
  .about-hero-shape-3 {
    opacity: 0.2;
  }
}

@media (max-width: 480px) {
  .about-hero-title {
    font-size: 2.2rem;
  }

  .about-hero-subtitle {
    font-size: 1rem;
  }

  .mission-card-about,
  .vision-card-about {
    padding: 25px;
  }

  .mission-icon-about,
  .vision-icon-about {
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
    margin-bottom: 25px;
  }

  .mission-title-about,
  .vision-title-about {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }

  .mission-text-about,
  .vision-text-about {
    font-size: 1rem;
    line-height: 1.7;
  }

  .value-card-about {
    padding: 25px;
  }

  .value-icon-about {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
  }

  .value-title-about {
    font-size: 1.2rem;
  }

  .cta-title-about {
    font-size: 1.8rem;
  }

  .cta-description-about {
    font-size: 1rem;
  }

  .btn-cta-about {
    padding: 14px 30px;
    font-size: 1rem;
  }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  .about-hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  }

  .about-hero-subtitle {
    color: #cbd5e1;
  }

  .mission-vision-section {
    background: #0f172a;
  }

  .mission-card-about,
  .vision-card-about,
  .value-card-about {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.08);
  }

  .mission-text-about,
  .vision-text-about,
  .value-description-about {
    color: #cbd5e1;
  }

  .values-section-about {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  }

  .value-card-about {
    background: #1e293b;
  }
}

/* =====================================================
   Contact  PAGE
   ===================================================== 
*/
:root {
  --color-primary: #2d1b4e;
  --color-primary-light: #3d2b6e;
  --color-secondary: #3d2b6e;
  --color-accent: #3d2b6e;
  --color-success: #10b981;
  --color-bg-light: #f8f9ff;
  --color-text: #333333;
  --color-text-light: #666666;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Contact Hero Section */
.contact-hero-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.contact-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(45, 27, 78, 0.1),
    transparent
  );
}

.contact-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.contact-hero-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(45, 27, 78, 0.05),
    rgba(108, 99, 255, 0.05)
  );
  animation: floatShape 25s linear infinite;
}

.contact-hero-shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
}

.contact-hero-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
  animation-delay: -12s;
}

@keyframes floatShape {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(120px, 120px) rotate(360deg);
  }
}

.contact-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: var(--color-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.contact-hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.contact-hero-logo {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.contact-hero-logo img {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 10px 20px rgba(45, 27, 78, 0.1));
}

/* Contact Content Section */
.contact-content-section {
  padding: 100px 0;
  background: white;
}

/* Contact Info Card */
.contact-info-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(45, 27, 78, 0.08);
  box-shadow: 0 10px 30px rgba(45, 27, 78, 0.05);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--color-primary),
    var(--color-secondary)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(45, 27, 78, 0.1);
  border-color: rgba(45, 27, 78, 0.15);
}

.contact-info-card:hover::before {
  opacity: 1;
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: white;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  box-shadow: 0 5px 15px rgba(45, 27, 78, 0.15);
}

.contact-info-title {
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 15px;
  font-weight: 700;
}

.contact-info-text {
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 10px;
}

.contact-info-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  font-weight: 500;
}

.contact-info-link:hover {
  color: var(--color-primary);
}

/* Contact Form Card */
.contact-form-card {
  background: white;
  padding: 50px;
  border-radius: 20px;
  border: 1px solid rgba(45, 27, 78, 0.08);
  box-shadow: 0 15px 40px rgba(45, 27, 78, 0.08);
  transition: var(--transition);
}

.contact-form-card:hover {
  box-shadow: 0 20px 50px rgba(45, 27, 78, 0.12);
}

.contact-form-title {
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 30px;
  font-weight: 700;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}

.contact-form-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  border-radius: 2px;
}

/* Form Styles */
.form-group-contact {
  margin-bottom: 25px;
}

.form-label-contact {
  display: block;
  margin-bottom: 8px;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-control-contact {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(45, 27, 78, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  transition: var(--transition);
  background: white;
  color: var(--color-text);
}

.form-control-contact:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(45, 27, 78, 0.1);
  background: white;
}

.form-control-contact.textarea-contact {
  min-height: 150px;
  resize: vertical;
}

/* Submit Button */
.btn-submit-contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: #2d1b4e;
  color: #fff;
  padding: 15px 15px;
}

.btn-primary:hover {
  background-color: #2d1b4e;
  color: #fff;
  padding: 15px 15px;
}

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

.btn-submit-contact:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(45, 27, 78, 0.2);
}

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

.btn-submit-contact:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

/* Success Message */
.success-message {
  background: linear-gradient(135deg, var(--color-success), #34d399);
  color: white;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 30px;
  display: none;
  animation: slideIn 0.5s ease;
  border: none;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .contact-hero-title {
    font-size: 3rem;
  }

  .contact-form-card {
    padding: 40px;
  }

  .contact-form-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px) {
  .contact-hero-section {
    padding: 100px 0 60px;
  }

  .contact-hero-title {
    font-size: 2.5rem;
  }

  .contact-hero-subtitle {
    font-size: 1.1rem;
  }

  .contact-content-section {
    padding: 80px 0;
  }

  .contact-info-card {
    padding: 30px;
  }

  .contact-form-card {
    padding: 30px;
  }

  .contact-hero-shape-1,
  .contact-hero-shape-2 {
    opacity: 0.2;
  }
}

@media (max-width: 480px) {
  .contact-hero-title {
    font-size: 2.2rem;
  }

  .contact-hero-subtitle {
    font-size: 1rem;
  }

  .contact-info-card {
    padding: 25px;
  }

  .contact-info-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .contact-form-card {
    padding: 25px;
  }

  .contact-form-title {
    font-size: 1.6rem;
  }

  .form-control-contact {
    padding: 12px 15px;
    font-size: 0.95rem;
  }

  .btn-submit-contact {
    padding: 14px 30px;
    font-size: 1rem;
  }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  .contact-hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  }

  .contact-hero-subtitle {
    color: #cbd5e1;
  }

  .contact-content-section {
    background: #0f172a;
  }

  .contact-info-card,
  .contact-form-card {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.08);
  }

  .contact-info-text {
    color: #cbd5e1;
  }

  .contact-info-text a {
    color: #cbd5e1 !important;
  }

  .contact-info-link {
    color: var(--color-primary) !important;
  }

  .contact-info-link:hover {
    color: var(--color-primary);
  }

  .form-control-contact {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.1);
    color: #f1f5f9;
  }

  .form-control-contact:focus {
    border-color: var(--color-primary);
    background: #1e293b;
    color: #f1f5f9;
  }

  .contact-form-title {
    color: #f1f5f9;
  }

  .form-label-contact {
    color: #cbd5e1;
  }
}

/* =====================================================
     Package PAGE
     ===================================================== 
  */
:root {
  --color-primary: #2d1b4e;
  --color-primary-light: #3d2b6e;
  --color-secondary: #3d2b6e;
  --color-accent: #3d2b6e;
  --color-success: #10b981;
  --color-warning: #f59e0b;
  --color-bg-light: #f8f9ff;
  --color-text: #333333;
  --color-text-light: #666666;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Packages Hero Section */
.packages-hero-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.packages-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(45, 27, 78, 0.1),
    transparent
  );
}

.packages-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.packages-hero-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(45, 27, 78, 0.05),
    rgba(108, 99, 255, 0.05)
  );
  animation: floatShape 25s linear infinite;
}

.packages-hero-shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
}

.packages-hero-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
  animation-delay: -12s;
}

@keyframes floatShape {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(120px, 120px) rotate(360deg);
  }
}

.packages-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.packages-hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.packages-hero-logo {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.packages-hero-logo img {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 10px 20px rgba(45, 27, 78, 0.1));
}

/* Packages Section */
.packages-section {
  padding: 100px 0;
  background: white;
}

/* Package Cards */
.package-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(45, 27, 78, 0.08);
  box-shadow: 0 10px 30px rgba(45, 27, 78, 0.05);
  height: 100%;
  position: relative;
}

.package-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(45, 27, 78, 0.15);
  border-color: rgba(45, 27, 78, 0.15);
}

.package-header {
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.package-basic .package-header {
  background: linear-gradient(135deg, #f8f9ff, #f0f2ff);
}

.package-pro .package-header {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  color: white;
}

.package-enterprise .package-header {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-accent)
  );
  color: white;
}

.package-popular {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-warning);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  z-index: 2;
}

.package-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.package-basic .package-icon {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  color: white;
}

.package-pro .package-icon {
  background: white;
  color: var(--color-primary);
}

.package-enterprise .package-icon {
  background: white;
  color: var(--color-secondary);
}

.package-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-bg-light);
  margin-bottom: 10px;
}

.package-price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 5px;
}

.package-period {
  font-size: 1rem;
  opacity: 0.8;
}

.package-body {
  padding: 40px 30px;
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.package-features li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(45, 27, 78, 0.05);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-light);
}

.package-features li:last-child {
  border-bottom: none;
}

.feature-check {
  color: var(--color-success);
  font-size: 1.1rem;
}

.feature-cross {
  color: #ef4444;
  font-size: 1.1rem;
}

.package-btn {
  display: block;
  width: 100%;
  padding: 16px;
  text-align: center;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.package-basic .package-btn {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  color: white;
}

.package-pro .package-btn {
  background: white;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}

.package-enterprise .package-btn {
  background: white;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

.package-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(45, 27, 78, 0.2);
}

/* Comparison Table */
.comparison-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
}

.comparison-table {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(45, 27, 78, 0.1);
}

.comparison-header h3 {
  color: var(--color-bg-light) !important;
}

.comparison-header {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  color: var(--color-bg-light) !important;
  padding: 25px;
  text-align: center;
}

.comparison-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 20px 25px;
  border-bottom: 1px solid rgba(45, 27, 78, 0.05);
  align-items: center;
}

.comparison-row:nth-child(even) {
  background: rgba(45, 27, 78, 0.02);
}

.comparison-row:last-child {
  border-bottom: none;
}

.feature-name {
  font-weight: 600;
  color: var(--color-primary);
}

.feature-value {
  text-align: center;
  font-weight: 500;
}

.feature-check-comparison {
  color: var(--color-success);
  font-size: 1.2rem;
}

.feature-cross-comparison {
  color: #ef4444;
  font-size: 1.2rem;
}

/* FAQ Section */
.faq-packages-section {
  padding: 100px 0;
  background: white;
}

.faq-packages-card {
  background: var(--color-bg-light);
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 20px;
  border: 1px solid rgba(45, 27, 78, 0.05);
  transition: var(--transition);
  cursor: pointer;
}

.faq-packages-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(45, 27, 78, 0.1);
}

.faq-packages-question {
  font-size: 1.2rem;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-packages-answer {
  color: var(--color-text-light);
  line-height: 1.7;
  font-size: 1rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-packages-card.active .faq-packages-answer {
  max-height: 500px;
}

.faq-packages-icon {
  transition: transform 0.3s ease;
}

.faq-packages-card.active .faq-packages-icon {
  transform: rotate(180deg);
}

/* CTA Section */
.cta-packages-section {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  color: white;
  text-align: center;
}

.cta-packages-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-packages-description {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.btn-cta-packages {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 45px;
  background: white;
  color: var(--color-primary);
  border: none;
  border-radius: 15px;
  font-weight: 700;
  font-size: 1.2rem;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.btn-cta-packages:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  color: var(--color-primary);
}

/* Responsive */
@media (max-width: 992px) {
  .packages-hero-title {
    font-size: 3rem;
  }

  .comparison-row {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }

  .cta-packages-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .packages-hero-section {
    padding: 100px 0 60px;
  }

  .packages-hero-title {
    font-size: 2.5rem;
  }

  .packages-hero-subtitle {
    font-size: 1.1rem;
  }

  .packages-section,
  .comparison-section,
  .faq-packages-section,
  .cta-packages-section {
    padding: 80px 0;
  }

  .package-card {
    margin-bottom: 30px;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 15px;
  }

  .feature-value {
    text-align: right;
  }

  .cta-packages-title {
    font-size: 2rem;
  }

  .cta-packages-description {
    font-size: 1.1rem;
  }

  .btn-cta-packages {
    padding: 16px 35px;
    font-size: 1.1rem;
  }

  .packages-hero-shape-1,
  .packages-hero-shape-2 {
    opacity: 0.2;
  }
}

@media (max-width: 480px) {
  .packages-hero-title {
    font-size: 2.2rem;
  }

  .packages-hero-subtitle {
    font-size: 1rem;
  }

  .package-header {
    padding: 30px 20px;
  }

  .package-body {
    padding: 30px 20px;
  }

  .package-title {
    font-size: 1.5rem;
  }

  .package-price {
    font-size: 2.5rem;
  }

  .cta-packages-title {
    font-size: 1.8rem;
  }

  .cta-packages-description {
    font-size: 1rem;
  }

  .btn-cta-packages {
    padding: 14px 30px;
    font-size: 1rem;
  }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  .packages-hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  }

  .packages-hero-subtitle {
    color: #cbd5e1;
  }

  .packages-section,
  .faq-packages-section {
    background: #0f172a;
  }

  .package-card,
  .faq-packages-card {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.08);
  }

  .package-basic .package-header {
    background: linear-gradient(135deg, #1e293b, #334155);
  }

  .package-features li {
    color: #cbd5e1;
    border-bottom-color: rgba(255, 255, 255, 0.05);
  }

  .comparison-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  }

  .comparison-table {
    background: #1e293b;
  }

  .comparison-row {
    border-bottom-color: rgba(255, 255, 255, 0.05);
  }

  .comparison-row:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
  }

  .feature-name {
    color: #f1f5f9;
  }

  .faq-packages-question {
    color: #f1f5f9;
  }

  .faq-packages-answer {
    color: #cbd5e1;
  }
}

/* =====================================================
   Privacy PAGE
   ===================================================== 
*/
:root {
  --color-primary: #2d1b4e;
  --color-primary-light: #3d2b6e;
  --color-secondary: #3d2b6e;
  --color-accent: #3d2b6e;
  --color-bg-light: #f8f9ff;
  --color-text: #333333;
  --color-text-light: #666666;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Privacy Hero Section */
.privacy-hero-section {
  background: linear-gradient(135deg, #f8f9ff 0%, #f0f2ff 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.privacy-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(45, 27, 78, 0.1),
    transparent
  );
}

.privacy-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  z-index: 1;
}

.privacy-hero-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(45, 27, 78, 0.05),
    rgba(108, 99, 255, 0.05)
  );
  animation: floatShape 25s linear infinite;
}

.privacy-hero-shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -200px;
}

.privacy-hero-shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
  animation-delay: -12s;
}

@keyframes floatShape {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(120px, 120px) rotate(360deg);
  }
}

.privacy-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.privacy-hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-light);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.privacy-hero-logo {
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.privacy-hero-logo img {
  height: 100px;
  width: auto;
  filter: drop-shadow(0 10px 20px rgba(45, 27, 78, 0.1));
}

/* Privacy Content Section */
.privacy-content-section {
  padding: 100px 0;
  background: white;
}

.privacy-container {
  max-width: 900px;
  margin: 0 auto;
}

/* Privacy Card */
.privacy-card {
  background: var(--color-bg-light);
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 30px;
  border: 1px solid rgba(45, 27, 78, 0.05);
  transition: var(--transition);
}

.privacy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(45, 27, 78, 0.1);
  border-color: rgba(45, 27, 78, 0.1);
}

.privacy-card-title {
  font-size: 1.8rem;
  color: var(--color-primary);
  margin-bottom: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
}

.privacy-card-title i {
  color: var(--color-secondary);
  font-size: 1.5rem;
}

.privacy-card-content {
  color: var(--color-text-light);
  line-height: 1.8;
  font-size: 1.1rem;
}

.privacy-card-content p {
  margin-bottom: 20px;
}

.privacy-card-content ul {
  padding-right: 20px;
  margin-bottom: 20px;
}

.privacy-card-content li {
  margin-bottom: 10px;
  position: relative;
  padding-right: 25px;
}

/* Table of Contents */
.toc-card {
  background: linear-gradient(
    135deg,
    var(--color-primary),
    var(--color-primary-light)
  );
  color: white;
  padding: 40px;
  border-radius: 20px;
  margin-bottom: 40px;
}

.toc-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--color-bg-light);
}

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

.toc-item {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.toc-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.toc-link {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  font-weight: 500;
}

.toc-link:hover {
  color: rgba(255, 255, 255, 0.9);
  transform: translateX(5px);
}

.toc-link i {
  font-size: 0.9rem;
}

/* Contact Card */
.contact-privacy-card {
  background: linear-gradient(
    135deg,
    var(--color-secondary),
    var(--color-accent)
  );
  color: white;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  margin-top: 40px;
}

.contact-privacy-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-privacy-text {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 25px;
  line-height: 1.7;
}

.btn-contact-privacy {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 35px;
  background: white;
  color: var(--color-secondary);
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
}

.btn-contact-privacy:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  color: var(--color-secondary);
}

/* Last Updated */
.last-updated {
  text-align: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(45, 27, 78, 0.1);
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 992px) {
  .privacy-hero-title {
    font-size: 3rem;
  }

  .privacy-card {
    padding: 35px;
  }

  .privacy-card-title {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .privacy-hero-section {
    padding: 100px 0 60px;
  }

  .privacy-hero-title {
    font-size: 2.5rem;
  }

  .privacy-hero-subtitle {
    font-size: 1.1rem;
  }

  .privacy-content-section {
    padding: 80px 0;
  }

  .privacy-card {
    padding: 30px;
  }

  .toc-card,
  .contact-privacy-card {
    padding: 30px;
  }

  .privacy-hero-shape-1,
  .privacy-hero-shape-2 {
    opacity: 0.2;
  }
}

@media (max-width: 480px) {
  .privacy-hero-title {
    font-size: 2.2rem;
  }

  .privacy-hero-subtitle {
    font-size: 1rem;
  }

  .privacy-card {
    padding: 25px;
  }

  .privacy-card-title {
    font-size: 1.4rem;
  }

  .privacy-card-content {
    font-size: 1rem;
  }

  .toc-card,
  .contact-privacy-card {
    padding: 25px;
  }

  .toc-title,
  .contact-privacy-title {
    font-size: 1.5rem;
  }

  .btn-contact-privacy {
    padding: 12px 25px;
    font-size: 1rem;
  }
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
  .privacy-hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  }

  .privacy-hero-subtitle {
    color: #cbd5e1;
  }

  .privacy-content-section {
    background: #0f172a;
  }

  .privacy-card {
    background: #1e293b;
    border-color: rgba(255, 255, 255, 0.05);
  }

  .privacy-card-content {
    color: #cbd5e1;
  }

  .last-updated {
    border-top-color: rgba(255, 255, 255, 0.1);
    color: #94a3b8;
  }
}

/* =====================================================
   GLOBAL ENHANCEMENTS & DESIGN IMPROVEMENTS
   ===================================================== */

/* ---- Improved btn-primary ---- */
.btn-primary,
.btn.btn-primary {
  background: linear-gradient(135deg, #2d1b4e 0%, #6c5ce7 100%) !important;
  border: none !important;
  color: #fff !important;
  padding: 0.8rem 2rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  font-size: 1rem !important;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.35) !important;
  transition: all 0.3s ease !important;
}

.btn-primary:hover,
.btn.btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 8px 25px rgba(108, 92, 231, 0.5) !important;
  background: linear-gradient(135deg, #1a0e30 0%, #5a4bd1 100%) !important;
  color: #fff !important;
}

/* ---- Home Hero: more vibrant ---- */
.hero-section {
  background: linear-gradient(
    135deg,
    #f0eaff 0%,
    #e8dfff 40%,
    #f5f0ff 100%
  ) !important;
}

.hero-title {
  background: linear-gradient(135deg, #2d1b4e 0%, #6c5ce7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---- Interior Hero Sections: Dark Purple ---- */
.about-hero-section,
.contact-hero-section,
.packages-hero-section {
  background: linear-gradient(
    135deg,
    #1a0e30 0%,
    #2d1b4e 55%,
    #4a2c7a 100%
  ) !important;
  padding: 110px 0 80px !important;
}

.about-hero-section::before,
.contact-hero-section::before,
.packages-hero-section::before {
  background: none !important;
}

/* Hero shapes on dark background */
.about-hero-shape,
.contact-hero-shape,
.packages-hero-shape {
  background: rgba(255, 255, 255, 0.04) !important;
}

/* Hero titles: white on dark ---- */
.about-hero-title,
.contact-hero-title,
.packages-hero-title {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: none !important;
  font-size: 3rem !important;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.about-hero-subtitle,
.contact-hero-subtitle,
.packages-hero-subtitle {
  color: rgba(255, 255, 255, 0.8) !important;
}

/* ---- CTA Section: Dark gradient ---- */
.cta-section {
  background: linear-gradient(
    135deg,
    #1a0e30 0%,
    #2d1b4e 50%,
    #6c5ce7 100%
  ) !important;
}

.cta-title {
  color: #fff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta-description {
  color: rgba(255, 255, 255, 0.85) !important;
}

.btn-cta {
  background: #fff !important;
  color: #2d1b4e !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2) !important;
}

.btn-cta:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
  background: #f0eaff !important;
}

/* ---- Feature Cards: improved ---- */
.feature-card {
  border-top: none !important;
  border-radius: 16px !important;
  border: 1.5px solid rgba(45, 27, 78, 0.08) !important;
  transition: all 0.3s ease !important;
}

.feature-card:hover {
  border-color: rgba(108, 92, 231, 0.3) !important;
  box-shadow: 0 16px 40px rgba(108, 92, 231, 0.12) !important;
}

.feature-icon {
  border-radius: 16px !important;
  background: linear-gradient(
    135deg,
    rgba(108, 92, 231, 0.1),
    rgba(45, 27, 78, 0.1)
  ) !important;
  color: #6c5ce7 !important;
}

/* ---- Contact: styled form inputs ---- */
.contact-content-section .form-control {
  border: 1.5px solid rgba(45, 27, 78, 0.15);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  background: #fafafa;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-content-section .form-control:focus {
  border-color: #6c5ce7;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(108, 92, 231, 0.12);
  outline: none;
}

.contact-content-section .form-label {
  font-weight: 600;
  color: #2d1b4e;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}

.contact-content-section .btn-primary {
  background: linear-gradient(135deg, #2d1b4e 0%, #6c5ce7 100%) !important;
  border: none !important;
  color: #fff !important;
  padding: 0.85rem 2.5rem !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 16px rgba(108, 92, 231, 0.4) !important;
  transition: all 0.3s ease !important;
}

.contact-content-section .btn-primary:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.55) !important;
}

/* Contact info icons */
.contact-info-card .fa-map-marker-alt,
.contact-info-card .fa-phone,
.contact-info-card .fa-envelope {
  color: #6c5ce7;
  background: rgba(108, 92, 231, 0.1);
  width: 24px;
  height: 24px;
  padding: 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card {
  border-radius: 20px !important;
}

.contact-form-card {
  border-radius: 20px !important;
  border: 1.5px solid rgba(45, 27, 78, 0.08) !important;
}

/* ---- Package Cards: fix bugs + improve ---- */
.package-title {
  color: #fff !important;
}

.package-basic .package-title {
  color: #2d1b4e !important;
}

.package-basic .package-price {
  color: #2d1b4e !important;
}

.package-basic .package-period {
  color: #6c5ce7 !important;
}

.package-card {
  border-radius: 24px !important;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.package-popular {
  background: linear-gradient(135deg, #f39c12, #e67e22) !important;
  font-weight: 700 !important;
}

.package-btn {
  border-radius: 50px !important;
  font-weight: 700 !important;
  transition: all 0.3s ease !important;
}

.package-basic .package-btn {
  background: linear-gradient(135deg, #2d1b4e, #6c5ce7) !important;
  border: none !important;
}

.package-pro .package-btn {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 2px solid rgba(255, 255, 255, 0.7) !important;
  color: #fff !important;
  backdrop-filter: blur(4px);
}

.package-pro .package-btn:hover {
  background: rgba(255, 255, 255, 0.35) !important;
}

.package-enterprise .package-btn {
  background: rgba(255, 255, 255, 0.2) !important;
  border: 2px solid rgba(255, 255, 255, 0.7) !important;
  color: #fff !important;
}

/* Comparison table header fix */
.comparison-header h3 {
  color: #fff !important;
}

/* ---- Step timeline: improved numbers ---- */
.step-number {
  background: linear-gradient(135deg, #2d1b4e, #6c5ce7) !important;
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.3) !important;
}

/* ---- Benefits section ---- */
.benefit-icon {
  background: linear-gradient(
    135deg,
    rgba(108, 92, 231, 0.1),
    rgba(45, 27, 78, 0.1)
  ) !important;
  color: #6c5ce7 !important;
  border-radius: 16px !important;
}

/* ---- Scroll animation improvements ---- */
.feature-card,
.mission-card-about,
.vision-card-about,
.value-card-about,
.package-card,
.benefit-item {
  animation: none;
}

/* ---- Footer links ---- */
footer a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
}

footer a:hover {
  color: #a8edea;
}

/* ---- Section title underline ---- */
.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2d1b4e, #6c5ce7);
  border-radius: 2px;
}

/* ---- About: mission/vision better icons ---- */
.mission-icon-about,
.vision-icon-about {
  background: linear-gradient(135deg, #2d1b4e, #6c5ce7) !important;
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.3) !important;
}

/* ---- Value cards: improve icon ---- */
.value-icon-about {
  background: linear-gradient(
    135deg,
    rgba(108, 92, 231, 0.12),
    rgba(45, 27, 78, 0.12)
  ) !important;
  color: #6c5ce7 !important;
}
