
/* Fonts */
:root {
  --default-font: "Turret Road", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Turret Road", sans-serif;
  --nav-font: "Turret Road", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff;
  --default-color: #1a1a2e; 
  --heading-color: #16213e; 
  --accent-color: #6c5ce7; 
  --surface-color: #ffffff; 
  --contrast-color: #ffffff; 
  --nav-color: #1a1a2e;  
  --nav-hover-color: #a29bfe; 
  --nav-mobile-background-color: #ffffff; 
  --nav-dropdown-background-color: #ffffff; 
  --nav-dropdown-color: #1a1a2e; 
  --nav-dropdown-hover-color: #a29bfe; 
  --footer-bg: #0f1419;
  --footer-newsletter: #1a2332;
}


/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f2f5fb;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 20px 0;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 999;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: -0.5px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  background: linear-gradient(135deg, #101820, #1a1f2b);
  color: #ffffff;
  font-size: 15px;
  padding: 10px 28px;
  border-radius: 40px;
  font-weight: 500;
  transition: background 0.3s ease, transform 0.3s ease;
}

.header .btn-getstarted:hover {
  background: linear-gradient(135deg, #3700b3, #8e2de2);
  transform: scale(1.05);
}

/* Desktop Nav */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    display: flex;
    gap: 25px;
    align-items: center;
    list-style: none;
    margin: 0 1rem 0 0;
    padding: 0;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a {
    font-size: 16px;
    color: #333;
    text-decoration: none;
    padding: 10px 0;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
  }

  .navmenu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: #101820;
    transition: width 0.3s ease;
  }

  .navmenu a:hover,
  .navmenu .active {
    color: #101820;
  }

  .navmenu a:hover::after,
  .navmenu .active::after {
    width: 100%;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }
}

/* Sticky effect on scroll */
.scrolled .header {
  background-color: #fefefe;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.07);
}

/* Responsive elements */
@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 8px 18px;
    font-size: 14px;
  }

  .header .navmenu {
    order: 3;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
/* General Footer Styling */
.footer {
  background: var(--footer-bg);
  color: #f0f0f0;
  padding-top: 60px;
  padding-bottom: 40px;
  font-family: 'Segoe UI', sans-serif;
}

/* Newsletter Section */
.footer-newsletter {
  background: var(--footer-newsletter);
  padding: 40px 20px;
  border-top: 5px solid var(--heading-color);
}

.footer-newsletter .container {
  max-width: 800px;
  margin: 0 auto;
}

.footer-newsletter h4 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-newsletter p {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
  padding: 10px 16px;
  flex: 1 1 250px;
  border: none;
  border-radius: 4px;
  font-size: 14px;
}

.newsletter-form input[type="submit"] {
  padding: 10px 20px;
  background-color: var(--heading-color);
  color: #fff;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.newsletter-form input[type="submit"]:hover {
  background-color: #00b197;
}

.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
  display: none;
  margin-top: 10px;
  text-align: center;
  font-size: 14px;
}

/* Footer Top Section */
.footer-top {
  padding-top: 50px;
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  border-top: 1px solid #333;
  margin-top: 40px;
}

/* Footer About Section */
.footer-about .sitename {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  text-decoration: none;
}

.footer-contact p {
  margin: 10px 0 0;
  font-size: 15px;
}

.footer-contact strong {
  font-weight: 600;
  color: #f0f0f0;
}

/* Footer Links */
.footer-links h4 {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 15px;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
}

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

.footer-links ul li {
  margin: 10px 0;
}

.footer-links ul li a {
  color: #bbb;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links ul li a:hover {
  color: var(--heading-color);
}

.footer-links ul i {
  color: var(--heading-color);
  margin-right: 6px;
}

/* Footer About Text */
.footer-top .col-lg-4:last-child h4 {
  font-size: 16px;
  margin-bottom: 12px;
  border-bottom: 1px solid #444;
  padding-bottom: 5px;
}

.footer-top .col-lg-4:last-child p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.6;
}


/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Section Title - Redesigned
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0 0 20px 0;
  color: var(--heading-color);
  letter-spacing: -0.02em;
  line-height: 1.2;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, #a29bfe 100%);
  border-radius: 2px;
}

.section-title p {
  margin: 32px auto 0;
  font-size: 1.15rem;
  line-height: 1.8;
  color: #64748b;
  max-width: 700px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Section - Premium Design
---------------------------------------------------------------*/
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 20px 100px;
  overflow: hidden;
  background: #ffffff;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.hero-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(108, 92, 231, 0.03) 0%, 
    rgba(162, 155, 254, 0.05) 50%,
    rgba(255, 255, 255, 0) 100%);
}

.hero-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(108, 92, 231, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(162, 155, 254, 0.06) 0%, transparent 50%);
  opacity: 0.6;
}

.hero-container {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.08) 0%, rgba(162, 155, 254, 0.08) 100%);
  border: 1px solid rgba(108, 92, 231, 0.15);
  border-radius: 100px;
  width: fit-content;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 0.3px;
  backdrop-filter: blur(10px);
}

.tag-icon {
  font-size: 16px;
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.2) rotate(180deg); }
}

.tag-text {
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  color: var(--heading-color);
  margin: 0;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--heading-color) 0%, #4a5568 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.3rem;
  line-height: 1.75;
  color: #64748b;
  margin: 0;
  max-width: 580px;
  font-weight: 400;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  border: none;
  cursor: pointer;
  z-index: 1;
}

.cta-primary {
  background: linear-gradient(135deg, var(--accent-color) 0%, #5a4fd4 100%);
  color: #ffffff;
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.35),
              0 0 0 0 rgba(108, 92, 231, 0.4);
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(108, 92, 231, 0.45),
              0 0 0 4px rgba(108, 92, 231, 0.1);
}

.cta-primary:active {
  transform: translateY(-1px);
}

.button-content {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 2;
}

.button-text {
  letter-spacing: 0.3px;
}

.button-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.cta-primary:hover .button-icon {
  transform: translateX(4px);
}

.button-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.3) 50%, 
    transparent 100%);
  transition: left 0.5s ease;
  z-index: 1;
}

.cta-primary:hover .button-shine {
  left: 100%;
}

.cta-outline {
  background: #ffffff;
  color: var(--accent-color);
  border: 2px solid rgba(108, 92, 231, 0.3);
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.1);
}

.cta-outline:hover {
  background: rgba(108, 92, 231, 0.05);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(108, 92, 231, 0.2);
}

.cta-outline:hover .button-icon {
  transform: translateX(4px);
}

.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #64748b;
  font-weight: 500;
}

.trust-icon {
  color: #10b981;
  font-size: 18px;
  flex-shrink: 0;
}

.hero-image-section {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 
    0 25px 80px rgba(108, 92, 231, 0.2),
    0 0 0 1px rgba(108, 92, 231, 0.1);
  background: #ffffff;
  padding: 8px;
}

.image-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

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

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  position: relative;
  z-index: 1;
}

.image-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.image-badge i {
  color: var(--accent-color);
  font-size: 16px;
}

.image-badge-1 {
  top: 20px;
  right: 20px;
  animation-delay: 0s;
}

.image-badge-2 {
  bottom: 20px;
  left: 20px;
  animation-delay: 1.5s;
}

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

@media (max-width: 1200px) {
  .hero-layout {
    gap: 60px;
  }
  
  .hero-title {
    font-size: 3.2rem;
  }
}

@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .hero-image-section {
    order: -1;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 100px 20px 60px;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-button {
    width: 100%;
    justify-content: center;
  }
  
  .hero-trust {
    flex-direction: column;
    gap: 16px;
  }
  
  .image-badge {
    padding: 10px 14px;
    font-size: 12px;
  }
}


/*--------------------------------------------------------------
# About Section - Redesigned
--------------------------------------------------------------*/
.about-modern {
  padding: 100px 20px;
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.about-modern::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(108, 92, 231, 0.15);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--accent-color), #a29bfe);
  border-radius: 24px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-image:hover::before {
  opacity: 0.1;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 24px;
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.about-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0;
  color: var(--heading-color);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.about-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin: 0;
  color: #64748b;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 8px 0;
}

.about-features .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: rgba(108, 92, 231, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(108, 92, 231, 0.1);
  transition: all 0.3s ease;
}

.about-features .feature-item:hover {
  background: rgba(108, 92, 231, 0.06);
  border-color: rgba(108, 92, 231, 0.2);
  transform: translateX(4px);
}

.about-features .feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  stroke: var(--accent-color);
  background: rgba(108, 92, 231, 0.1);
  border-radius: 10px;
  padding: 8px;
}

.about-features .feature-item p {
  margin: 0;
  font-size: 16px;
  color: var(--heading-color);
  line-height: 1.6;
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #5a4fd4 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  user-select: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(108, 92, 231, 0.3);
  width: fit-content;
  position: relative;
  overflow: hidden;
}

.btn-read-more::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.5s ease;
}

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

.btn-read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(108, 92, 231, 0.4);
}

.btn-read-more:active {
  transform: translateY(0);
}

.arrow {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-read-more:hover .arrow {
  transform: translateX(4px);
}

@media (max-width: 1024px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .about-content h2 {
    font-size: 2.4rem;
  }
}

@media (max-width: 768px) {
  .about-modern {
    padding: 80px 20px;
  }
  
  .about-content h2 {
    font-size: 2rem;
  }
  
  .about-content p {
    font-size: 1.05rem;
  }
}

/*--------------------------------------------------------------
# Redesigned Features Section
--------------------------------------------------------------*/
.features-redesigned {
  background: #ffffff;
  padding: 120px 20px;
  position: relative;
}

.features-redesigned-container {
  max-width: 1400px;
  margin: 0 auto;
}

.features-header {
  text-align: center;
  margin-bottom: 80px;
}

.features-main-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0 0 24px 0;
  letter-spacing: -0.02em;
}

.features-subtitle {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto;
}

.features-content-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 80px;
  align-items: start;
}

.features-list-container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-box {
  background: #ffffff;
  border: 2px solid #f1f5f9;
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-color) 0%, #a29bfe 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.feature-box:hover::before {
  transform: scaleY(1);
}

.feature-box:hover {
  border-color: rgba(108, 92, 231, 0.3);
  box-shadow: 0 8px 30px rgba(108, 92, 231, 0.12);
  transform: translateX(8px);
}

.feature-box-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.feature-box-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-color);
  background: rgba(108, 92, 231, 0.1);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}

.feature-box-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--accent-color) 0%, #a29bfe 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
  flex-shrink: 0;
}

.feature-box-body {
  padding-left: 68px;
}

.feature-box-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 12px 0;
  line-height: 1.3;
}

.feature-box-text {
  font-size: 16px;
  line-height: 1.7;
  color: #64748b;
  margin: 0;
}

.features-visual-side {
  position: sticky;
  top: 100px;
}

.features-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.features-side-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.features-image-wrapper:hover .features-side-image {
  transform: scale(1.05);
}

.features-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(108, 92, 231, 0.1) 100%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .features-content-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .features-visual-side {
    position: relative;
    top: 0;
  }
  
  .features-main-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .features-redesigned {
    padding: 80px 20px;
  }
  
  .features-header {
    margin-bottom: 50px;
  }
  
  .features-main-title {
    font-size: 2rem;
  }
  
  .features-subtitle {
    font-size: 1.1rem;
  }
  
  .feature-box {
    padding: 24px;
  }
  
  .feature-box-body {
    padding-left: 0;
    margin-top: 16px;
  }
  
  .feature-box-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}


/*--------------------------------------------------------------
# Redesigned Feature Details Section
--------------------------------------------------------------*/
.features-highlight {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.features-highlight-container {
  max-width: 1400px;
  margin: 0 auto;
}

.features-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.highlight-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(108, 92, 231, 0.1);
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, #a29bfe 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.highlight-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(108, 92, 231, 0.15);
  border-color: rgba(108, 92, 231, 0.3);
}

.highlight-card-1:hover {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.02) 0%, #ffffff 100%);
}

.highlight-card-2:hover {
  background: linear-gradient(135deg, rgba(162, 155, 254, 0.02) 0%, #ffffff 100%);
}

.highlight-card-3:hover {
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.02) 0%, #ffffff 100%);
}

.highlight-card-inner {
  position: relative;
  z-index: 1;
}

.highlight-icon-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.highlight-icon {
  font-size: 48px;
  display: block;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.highlight-icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(108, 92, 231, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.highlight-card:hover .highlight-icon-glow {
  opacity: 1;
}

.highlight-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.highlight-description {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

@media (max-width: 1024px) {
  .features-highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-highlight {
    padding: 60px 20px;
  }
  
  .features-highlight-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .highlight-card {
    padding: 32px 24px;
  }
  
  .highlight-title {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 60px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    border-radius: 25px;
    transition: none;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  padding: 40px 0;
  background-color: var(--background-color);
}

.testimonials .testimonial-wrap {
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: visible;
  width: 100%;
}

.testimonials .testimonial-item {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  padding: 32px;
  margin: 0 12px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
  transition: transform 0.3s ease;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-4px);
}

.testimonials .testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 4px solid var(--accent-color);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(162, 155, 254, 0.1) 100%);
  overflow: hidden;
}

.testimonials .testimonial-img i {
  font-size: 48px;
  color: var(--accent-color);
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 10px 0 4px;
  color: var(--heading-color);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  opacity: 0.7;
  margin: 0 0 12px;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 10px;
}

.testimonials .testimonial-item .stars i {
  color: #fbbf24; /* amber-400 */
  margin: 0 2px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  display: none; /* Removed for cleaner UI, re-enable if needed */
}

.testimonials .testimonial-item p {
  font-size: 15px;
  line-height: 1.6;
  font-style: normal;
  color: var(--text-color);
  margin: 0;
}

.testimonials .swiper-pagination {
  margin-top: 24px;
  text-align: center;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: var(--accent-color);
  opacity: 0.4;
  margin: 0 4px;
  transition: opacity 0.3s;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding: 0 10px;
  }

  .testimonials .testimonial-item {
    padding: 24px;
    margin: 0 8px;
  }

  .testimonials .testimonial-img {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
  }
  
  .testimonials .testimonial-img i {
    font-size: 36px;
  }
}


/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    transform: scale(1.02, 1.1);
  }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  background-color: var(--background-color);
  padding: 60px 0;
}

.faq .faq-container {
  margin-top: 30px;
}

/*--------------------------------------------------------------
# FAQ Section - Redesigned
--------------------------------------------------------------*/
.faq {
  background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
  padding: 100px 20px;
}

.faq .faq-container {
  margin-top: 40px;
}

.faq .faq-item {
  background: #ffffff;
  border: 2px solid #f1f5f9;
  border-radius: 16px;
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.faq .faq-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-color) 0%, #a29bfe 100%);
  border-radius: 16px 0 0 16px;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.faq .faq-item:hover::before,
.faq .faq-item.faq-active::before {
  transform: scaleY(1);
}

.faq .faq-item:hover {
  border-color: rgba(108, 92, 231, 0.3);
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.12);
  transform: translateX(4px);
}

.faq .faq-item.faq-active {
  border-color: rgba(108, 92, 231, 0.4);
  background: rgba(108, 92, 231, 0.02);
}

.faq .faq-icon {
  font-size: 24px;
  color: var(--accent-color);
  margin-right: 16px;
  vertical-align: middle;
  flex-shrink: 0;
}

.faq .faq-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  padding-left: 48px;
  position: relative;
  color: var(--heading-color);
  line-height: 1.4;
  transition: color 0.3s;
}

.faq .faq-item:hover h3,
.faq .faq-item.faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-toggle {
  position: absolute;
  right: 24px;
  top: 32px;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.3s, color 0.3s;
  color: #64748b;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(108, 92, 231, 0.05);
}

.faq .faq-item.faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
  background: rgba(108, 92, 231, 0.1);
}

.faq .faq-toggle:hover {
  color: var(--accent-color);
  background: rgba(108, 92, 231, 0.15);
}

.faq .faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-left: 48px;
  padding-top: 0;
  margin-top: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #64748b;
  transition: max-height 0.5s ease, opacity 0.4s ease, padding-top 0.4s ease, margin-top 0.4s ease;
}

.faq .faq-item.faq-active .faq-content {
  max-height: 1000px;
  opacity: 1;
  padding-top: 16px;
  margin-top: 16px;
}

.faq .faq-content p {
  margin: 0;
  line-height: 1.8;
}

.faq .faq-content a {
  color: var(--accent-color);
  text-decoration: underline;
  font-weight: 600;
}

@media (max-width: 768px) {
  .faq {
    padding: 60px 20px;
  }
  
  .faq .faq-item {
    padding: 20px 16px;
  }

  .faq .faq-toggle {
    top: 24px;
    right: 16px;
    width: 28px;
    height: 28px;
    font-size: 16px;
  }

  .faq .faq-item h3 {
    font-size: 18px;
    padding-left: 40px;
  }

  .faq .faq-content {
    padding-left: 40px;
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Mission Card - Redesigned
--------------------------------------------------------------*/
.mission-card {
  background: #ffffff;
  border: 2px solid #f1f5f9;
  border-radius: 20px;
  padding: 40px 32px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, #a29bfe 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.mission-card:hover {
  border-color: rgba(108, 92, 231, 0.3);
  box-shadow: 0 12px 40px rgba(108, 92, 231, 0.15);
  transform: translateY(-8px);
}

.mission-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(162, 155, 254, 0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
  background: linear-gradient(135deg, var(--accent-color) 0%, #a29bfe 100%);
  transform: scale(1.1);
}

.mission-icon i {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.mission-card:hover .mission-icon i {
  color: #ffffff;
}

.mission-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.mission-card p {
  color: #64748b;
  line-height: 1.8;
  margin: 0;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Support Card - Redesigned
--------------------------------------------------------------*/
.support-card {
  background: #ffffff;
  border: 2px solid #f1f5f9;
  border-radius: 20px;
  padding: 40px 32px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.support-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, #a29bfe 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.support-card:hover::after {
  transform: scaleX(1);
}

.support-card:hover {
  border-color: rgba(108, 92, 231, 0.3);
  box-shadow: 0 12px 40px rgba(108, 92, 231, 0.15);
  transform: translateY(-8px);
}

.support-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(162, 155, 254, 0.1) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}

.support-card:hover .support-icon {
  background: linear-gradient(135deg, var(--accent-color) 0%, #a29bfe 100%);
  transform: scale(1.1);
}

.support-icon i {
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.support-card:hover .support-icon i {
  color: #ffffff;
}

.support-card h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
}

.support-card p {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Contact Info Box - Redesigned
--------------------------------------------------------------*/
.contact-info-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
}

.contact-info-box:hover {
  box-shadow: 0 12px 40px rgba(108, 92, 231, 0.15);
  transform: translateY(-4px);
}

.contact-info-box h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 32px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(108, 92, 231, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(108, 92, 231, 0.1);
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: rgba(108, 92, 231, 0.06);
  border-color: rgba(108, 92, 231, 0.2);
  transform: translateX(4px);
}

.contact-info-item i {
  font-size: 24px;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact-info-item strong {
  display: block;
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 4px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-info-item p {
  margin: 0;
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Value Item - Redesigned
--------------------------------------------------------------*/
.value-item {
  background: #ffffff;
  border: 2px solid #f1f5f9;
  border-radius: 20px;
  padding: 40px 32px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.value-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-color) 0%, #a29bfe 100%);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.value-item:hover::before {
  transform: scaleY(1);
}

.value-item:hover {
  border-color: rgba(108, 92, 231, 0.3);
  box-shadow: 0 12px 40px rgba(108, 92, 231, 0.15);
  transform: translateY(-8px);
}

.value-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(162, 155, 254, 0.1) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  background: linear-gradient(135deg, var(--accent-color) 0%, #a29bfe 100%);
  transform: scale(1.1) rotate(5deg);
}

.value-icon i {
  color: var(--accent-color);
  font-size: 28px;
  transition: color 0.3s ease;
}

.value-item:hover .value-icon i {
  color: #ffffff;
}

.value-item h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.value-item p {
  color: #64748b;
  line-height: 1.8;
  margin: 0;
  font-size: 16px;
}


/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
:root {
  --accent-color: var(--footer-newsletter);
  --text-color: #212529;
}

/* Section Accent */
.text-accent {
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Additional Global Styles
--------------------------------------------------------------*/
.light-background {
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
}

.section {
  padding: 100px 20px;
  position: relative;
}

@media (max-width: 768px) {
  .section {
    padding: 60px 20px;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
  
  .mission-card,
  .support-card,
  .value-item {
    padding: 32px 24px;
  }
  
  .contact-info-box {
    padding: 32px 24px;
  }
}

/*--------------------------------------------------------------
# Cookie Popup - Redesigned
--------------------------------------------------------------*/
#cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 30px;
  right: 30px;
  max-width: 500px;
  background: #ffffff;
  color: var(--heading-color);
  border: 2px solid rgba(108, 92, 231, 0.2);
  padding: 0;
  font-family: var(--default-font);
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(108, 92, 231, 0.1);
  border-radius: 20px;
  font-size: 15px;
  z-index: 10000;
  display: none;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

#cookie-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color) 0%, #a29bfe 100%);
}

#cookie-popup.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  display: block;
}

#cookie-popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 28px;
}

#cookie-popup .popup-message {
  flex: 1;
}

#cookie-popup .popup-message p {
  margin: 0;
  padding: 0;
  line-height: 1.7;
  color: #64748b;
  font-size: 15px;
}

#cookie-popup .popup-message a {
  color: var(--accent-color);
  text-decoration: underline;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

#cookie-popup .popup-message a:hover {
  color: #5a4fd4;
  text-decoration: none;
}

#cookie-popup .popup-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

#cookie-popup button {
  background: linear-gradient(135deg, var(--accent-color) 0%, #5a4fd4 100%);
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(108, 92, 231, 0.3);
  position: relative;
  overflow: hidden;
  flex: 1;
  min-width: 140px;
}

#cookie-popup button::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.5s ease;
}

#cookie-popup button:hover::before {
  left: 100%;
}

#cookie-popup button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(108, 92, 231, 0.4);
}

#cookie-popup button:active {
  transform: translateY(0);
}

#cookie-popup .cookie-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(108, 92, 231, 0.1) 0%, rgba(162, 155, 254, 0.1) 100%);
  border-radius: 10px;
  margin-right: 12px;
  flex-shrink: 0;
}

#cookie-popup .cookie-icon::before {
  content: '🍪';
  font-size: 24px;
}

@media (max-width: 768px) {
  #cookie-popup {
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 100%;
    border-radius: 16px;
  }
  
  #cookie-popup .popup-content {
    padding: 24px 20px;
    gap: 16px;
  }
  
  #cookie-popup .popup-message p {
    font-size: 14px;
  }
  
  #cookie-popup button {
    width: 100%;
    padding: 12px 24px;
    font-size: 14px;
  }
  
  #cookie-popup .popup-actions {
    flex-direction: column;
  }
}

/* Pricing Comparison Table Styles */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: var(--default-color);
  border-collapse: collapse;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
  background-color: var(--surface-color);
  font-weight: 600;
  padding: 0.75rem;
  text-align: left;
}

.table tbody td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table tbody tr:hover {
  background-color: rgba(108, 92, 231, 0.05);
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-hover tbody tr:hover {
  background-color: rgba(108, 92, 231, 0.1);
}

.table-light {
  background-color: #f8f9fa;
}

/* Company Info Card Styles */
.company-info-card {
  background: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(108, 92, 231, 0.2);
}

.company-info-card h4 {
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.company-info-card p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.company-info-card a {
  color: var(--accent-color);
  text-decoration: none;
}

.company-info-card a:hover {
  text-decoration: underline;
}

/* New Footer Styles */
.footer-newsletter {
  background: var(--footer-newsletter);
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-newsletter h3 {
  color: var(--contrast-color);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-newsletter p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.newsletter-form-modern .input-group {
  display: flex;
  gap: 0;
}

.newsletter-form-modern .form-control {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px 0 0 50px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--contrast-color);
  font-size: 16px;
}

.newsletter-form-modern .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form-modern .form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.15);
}

.btn-newsletter {
  padding: 14px 30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  border-radius: 0 50px 50px 0;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-newsletter:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.newsletter-privacy {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  margin-top: 10px;
}

.newsletter-privacy a {
  color: var(--accent-color);
  text-decoration: underline;
}

.footer-main {
  background: var(--footer-bg);
  padding: 60px 0 40px;
}

.footer-brand .sitename {
  font-size: 32px;
  font-weight: 700;
  color: var(--contrast-color);
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-top: 20px;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(108, 92, 231, 0.4);
}

.footer-title {
  color: var(--contrast-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
}

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

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
}

.footer-contact-info i {
  color: var(--accent-color);
  margin-top: 3px;
  min-width: 20px;
}

.footer-contact-info a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact-info a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal-links a:hover {
  color: var(--accent-color);
}

.footer-legal-links .separator {
  color: rgba(255, 255, 255, 0.3);
}

.footer-legal-links .legal-info {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

@media (max-width: 768px) {
  .footer-newsletter {
    padding: 40px 0;
  }
  
  .footer-newsletter h3 {
    font-size: 24px;
  }
  
  .newsletter-form-modern .input-group {
    flex-direction: column;
  }
  
  .newsletter-form-modern .form-control {
    border-radius: 50px;
    margin-bottom: 10px;
  }
  
  .btn-newsletter {
    border-radius: 50px;
    width: 100%;
  }
  
  .footer-main {
    padding: 40px 0 30px;
  }
  
  .footer-legal-links {
    justify-content: flex-start;
    margin-top: 15px;
  }
}
