
/* Fonts */
:root {
  --default-font: "Instrument Serif", serif, system-ui, -apple-system, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Instrument Serif", serif;
  --nav-font: "Instrument Serif", 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: #0f172a;
--default-color: #e2e8f0;
--heading-color: #10b981;
--accent-color: #0ea5e9;
--surface-color: #1e293b;
--contrast-color: #ffffff;
--nav-color: #e2e8f0;
--nav-hover-color: #10b981;
--nav-mobile-background-color: #1e293b;
--nav-dropdown-background-color: #334155;
--nav-dropdown-color: #e2e8f0;
--nav-dropdown-hover-color: #10b981;
--gradient-primary: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
--gradient-secondary: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
--gradient-accent: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
--shadow-primary: 0 10px 30px rgba(0, 0, 0, 0.4);
--shadow-secondary: 0 5px 15px rgba(14, 165, 233, 0.3);

}

/* Color Presets */

.light-background {
  --background-color: #16213e;
  --surface-color: #0f3460;
}

.dark-background {
  --background-color: #0f172a;
  --default-color: #e2e8f0;
  --heading-color: #10b981;
  --surface-color: #1e293b;
  --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);
  }
}

/*--------------------------------------------------------------
# New Header (Completely Redesigned)
--------------------------------------------------------------*/
.header-new {
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(14, 165, 233, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-new.scrolled {
  background: rgba(15, 23, 42, 0.99);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(14, 165, 233, 0.25);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 2rem;
}

/* Brand */
.header-brand {
  flex-shrink: 0;
}

.brand-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.brand-link:hover {
  transform: translateX(-3px);
}

.brand-icon-wrapper {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
  transition: all 0.3s ease;
}

.brand-link:hover .brand-icon-wrapper {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.brand-icon {
  font-size: 26px;
  color: white;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.brand-name {
  font-size: 24px;
  font-weight: 700;
  color: #10b981;
  line-height: 1.2;
  font-family: var(--heading-font);
  letter-spacing: -0.5px;
}

.brand-subtitle {
  font-size: 11px;
  color: rgba(226, 232, 240, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Navigation */
.header-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  align-items: center;
}

.nav-item {
  position: relative;
}

.nav-link-new {
  display: flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  color: rgba(226, 232, 240, 0.9);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link-new::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #0ea5e9, #10b981);
  transition: transform 0.3s ease;
}

.nav-link-new:hover,
.nav-link-new.active {
  color: #10b981;
  background: rgba(14, 165, 233, 0.1);
}

.nav-link-new.active::before,
.nav-link-new:hover::before {
  transform: translateX(-50%) scaleX(1);
}

/* Header Actions */
.header-actions-new {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-header-secondary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  color: rgba(226, 232, 240, 0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 10px;
  transition: all 0.3s ease;
  background: rgba(14, 165, 233, 0.05);
}

.btn-header-secondary:hover {
  color: #10b981;
  border-color: rgba(14, 165, 233, 0.5);
  background: rgba(14, 165, 233, 0.1);
  transform: translateY(-2px);
}

.btn-header-secondary i {
  font-size: 16px;
}

.btn-header-primary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-header-primary::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;
}

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

.btn-header-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
  color: white;
}

.btn-header-primary i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn-header-primary:hover i {
  transform: translateX(3px);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 100%;
  height: 3px;
  background: #10b981;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Navigation */
.mobile-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(15, 23, 42, 0.98);
  border-top: 1px solid rgba(14, 165, 233, 0.15);
}

.mobile-nav.active {
  max-height: 600px;
}

.mobile-nav-content {
  padding: 2rem 0;
}

.mobile-nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link-new {
  display: block;
  padding: 1rem 1.5rem;
  color: rgba(226, 232, 240, 0.9);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-link-new:hover,
.mobile-nav-link-new.active {
  color: #10b981;
  background: rgba(14, 165, 233, 0.1);
  border-left-color: #10b981;
  padding-left: 2rem;
}

.mobile-nav-actions {
  margin-top: 1.5rem;
  padding: 0 1.5rem;
}

.btn-mobile-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-mobile-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
  color: white;
}

.btn-mobile-primary i {
  font-size: 18px;
}

/* Responsive Header */
@media (max-width: 1200px) {
  .header-container {
    padding: 0 1.5rem;
  }
}

@media (max-width: 768px) {
  .header-content {
    padding: 1rem 0;
  }
  
  .brand-icon-wrapper {
    width: 45px;
    height: 45px;
  }
  
  .brand-icon {
    font-size: 22px;
  }
  
  .brand-name {
    font-size: 20px;
  }
  
  .brand-subtitle {
    font-size: 10px;
  }
}

/* Legacy Header Styles for Compatibility */
.header {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  transition: all 0.3s ease;
  z-index: 997;
  border-bottom: 1px solid rgba(14, 165, 233, 0.2);
  position: sticky;
  top: 0;
}

.scrolled .header {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  background: rgba(15, 23, 42, 0.98);
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

/* Logo Styles */
.header-logo .logo-link {
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.header-logo .logo-link:hover {
  transform: translateY(-2px);
}

.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.logo-text {
  display: flex;
  flex-direction: column;
  margin-left: 12px;
}

.logo-name {
  font-size: 24px;
  font-weight: 700;
  color: #10b981;
  line-height: 1.2;
  font-family: var(--heading-font);
}

.logo-tagline {
  font-size: 11px;
  color: #e8e8e8;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Navigation Styles */
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  align-items: center;
}

.nav-link {
  padding: 0.75rem 1.25rem;
  color: #e8e8e8;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
}

.nav-link:hover,
.nav-link.active {
  color: #10b981;
  background: rgba(14, 165, 233, 0.1);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, #0ea5e9, #10b981);
  border-radius: 2px;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-header-contact {
  padding: 0.75rem 1.5rem;
  color: #e8e8e8;
  text-decoration: none;
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.btn-header-contact:hover {
  border-color: #10b981;
  background: rgba(14, 165, 233, 0.1);
  color: #10b981;
}

.btn-header-cta {
  padding: 0.75rem 1.75rem;
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
  color: white;
}

/* Mobile Menu Toggle */
.mobile-nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.mobile-nav-toggle span {
  width: 25px;
  height: 3px;
  background: #10b981;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mobile-nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.mobile-nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu.active {
  display: block;
  max-height: 500px;
  padding: 1rem 0;
  border-top: 1px solid rgba(78, 205, 196, 0.2);
}

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

.mobile-nav-link {
  display: block;
  padding: 1rem;
  color: #e8e8e8;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(14, 165, 233, 0.1);
  color: #10b981;
  padding-left: 1.5rem;
}

@media (max-width: 1199px) {
  .header-wrapper {
    flex-wrap: wrap;
  }
  
  .navmenu {
    order: 3;
    width: 100%;
  }
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 20px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: all 0.3s ease;
    border-radius: 25px;
    position: relative;
    overflow: hidden;
  }

  .navmenu a::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;
  }

  .navmenu a:hover::before {
    left: 100%;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

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

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* 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: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100vh;
    padding: 80px 20px 20px 20px;
    margin: 0;
    border-radius: 0;
    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);
    -webkit-overflow-scrolling: touch;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 15px 20px;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 16px;
    line-height: 0;
    margin-left: 5px;
    width: 35px;
    height: 35px;
    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);
    background-color: rgba(124, 58, 237, 0.1);
    border-radius: 10px;
    margin: 0 10px;
  }

  .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: fixed;
    font-size: 32px;
    top: 20px;
    right: 20px;
    margin-right: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

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

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

/* Дополнительные стили для мобильного меню */
@media (max-width: 1199px) {
  .navmenu ul {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--nav-mobile-background-color);
    padding: 80px 20px 20px 20px;
    margin: 0;
    z-index: 9998;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .mobile-nav-active .navmenu ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
  color: #e8e8e8;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(78, 205, 196, 0.2);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 20px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 16px 28px;
  position: relative;
  border-radius: 4px;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

@media (max-width: 768px) {
  .newsletter-input-group {
    margin: 0.5rem 1rem !important;
  }
  .newsletter-form {
    flex-direction: column;
    width: 100%;
    margin: 0;
  }
}

.footer .footer-top {
  padding-top: 50px;
  padding-bottom: 30px;
  position: relative;
  z-index: 2;
}

.footer .footer-top p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  font-size: 16px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid rgba(14, 165, 233, 0.3);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-right: 15px;
  transition: all 0.3s ease;
  background: rgba(14, 165, 233, 0.1);
  position: relative;
  z-index: 2;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  border-color: var(--accent-color);
  background: var(--accent-color);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.footer h4 {
  font-size: 20px;
  font-weight: bold;
  position: relative;
  padding-bottom: 15px;
  color: var(--heading-color);
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  z-index: 2;
}

.footer .footer-links {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
}


.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# 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 {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section (Completely Redesigned)
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 90vh;
  position: relative;
  padding: 140px 0 100px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0e27;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-particles {
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(254, 202, 87, 0.05) 0%, transparent 60%);
  animation: heroParticles 15s ease-in-out infinite;
}

@keyframes heroParticles {
  0%, 100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.1) rotate(5deg);
    opacity: 0.8;
  }
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, 
    rgba(15, 23, 42, 0.9) 0%, 
    rgba(26, 26, 46, 0.8) 30%, 
    rgba(22, 33, 62, 0.7) 70%, 
    rgba(15, 52, 96, 0.9) 100%);
}

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

/* Hero Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 50px;
  color: #10b981;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  animation: heroBadgePulse 2s ease-in-out infinite;
}

@keyframes heroBadgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(14, 165, 233, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(14, 165, 233, 0);
  }
}

.hero-badge i {
  color: #06b6d4;
  animation: heroStarRotate 3s linear infinite;
}

@keyframes heroStarRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Hero Title */
.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-title-line {
  display: block;
  color: #e8e8e8;
  animation: heroTitleFadeIn 0.8s ease-out;
}

.hero-title-highlight {
  display: block;
  background: linear-gradient(135deg, #10b981 0%, #0ea5e9 50%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: heroTitleGradient 5s ease infinite, heroTitleFadeIn 0.8s ease-out 0.2s both;
  position: relative;
}

.hero-title-highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0ea5e9, #10b981, #06b6d4);
  border-radius: 2px;
  animation: heroUnderline 2s ease-in-out infinite;
}

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

/* Hero Description */
.hero-description {
  color: rgba(232, 232, 232, 0.85);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.8;
  margin: 0 0 2rem 0;
  max-width: 90%;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.hero-stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, #10b981, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: rgba(232, 232, 232, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 2rem 0;
}

.btn-hero-primary {
  color: white;
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  padding: 18px 40px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
}

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

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

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(14, 165, 233, 0.4);
  color: white;
}

.btn-hero-primary i {
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover i {
  transform: translateX(5px);
}

.btn-hero-secondary {
  color: #e8e8e8;
  background: rgba(14, 165, 233, 0.1);
  border: 2px solid rgba(14, 165, 233, 0.4);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.btn-hero-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

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

.btn-hero-secondary:hover {
  color: #10b981;
  border-color: #10b981;
  background: rgba(14, 165, 233, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

/* Hero Trust */
.hero-trust {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(232, 232, 232, 0.8);
  font-size: 14px;
}

.trust-item i {
  color: #10b981;
  font-size: 18px;
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-image-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.3) 0%, transparent 70%);
  border-radius: 20px;
  filter: blur(30px);
  animation: heroImageGlow 3s ease-in-out infinite;
  z-index: -1;
}

@keyframes heroImageGlow {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  filter: drop-shadow(0 10px 30px rgba(14, 165, 233, 0.2));
  position: relative;
  z-index: 1;
}

.hero-image:hover {
  transform: translateY(-5px) scale(1.02);
}

/* Hero Floating Cards */
.hero-floating-card {
  position: absolute;
  background: rgba(22, 33, 62, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 12px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #e8e8e8;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  animation: heroCardFloat 3s ease-in-out infinite;
  z-index: 3;
}

.hero-floating-card i {
  color: #10b981;
  font-size: 20px;
}

.hero-floating-card.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.hero-floating-card.card-2 {
  bottom: 20%;
  left: -10%;
  animation-delay: 1s;
}

.hero-floating-card.card-3 {
  top: 50%;
  right: -5%;
  animation-delay: 2s;
}

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

/* Responsive Hero */
@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding: 100px 0 60px 0;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .hero-floating-card {
    display: none;
  }
}

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

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 16px;
    max-width: 100%;
  }

  .hero-stats {
    gap: 1rem;
  }

  .stat-number {
    font-size: 28px;
  }

  .btn-hero-primary,
  .btn-hero-secondary {
    width: 100%;
    justify-content: center;
    padding: 16px 32px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-trust {
    flex-direction: column;
    gap: 1rem;
  }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 15% 20%, rgba(14, 165, 233, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(16, 185, 129, 0.15) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(254, 202, 87, 0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: heroBackgroundPulse 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(180deg, transparent 0%, rgba(15, 23, 42, 0.3) 100%);
  pointer-events: none;
}

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

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

.hero h2 {
  margin: 0 0 1.5rem 0;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  background: linear-gradient(135deg, #ffffff 0%, #10b981 40%, #0ea5e9 80%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: heroTitleGradient 5s ease infinite;
  letter-spacing: -0.5px;
  position: relative;
}

@keyframes heroTitleGradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #0ea5e9, #10b981);
  border-radius: 2px;
  animation: heroUnderline 2s ease-in-out infinite;
}

@keyframes heroUnderline {
  0%, 100% {
    width: 80px;
    opacity: 1;
  }
  50% {
    width: 120px;
    opacity: 0.8;
  }
}

.hero p {
  color: rgba(232, 232, 232, 0.9);
  margin: 1.5rem 0 2rem 0;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  line-height: 1.8;
  max-width: 90%;
}

.hero p strong {
  color: #10b981;
  font-weight: 600;
  position: relative;
}

.hero p strong::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #10b981, transparent);
  opacity: 0.5;
}

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

.hero-img img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  filter: drop-shadow(0 10px 30px rgba(14, 165, 233, 0.2));
}

.hero-img:hover img {
  transform: translateY(-5px) scale(1.02);
}

/* Hero Buttons */
.hero .d-flex {
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Hero Section - Center child elements */
.hero .d-flex.flex-column {
  align-items: center;
}

.hero .d-flex.flex-column.text-center h2,
.hero .d-flex.flex-column.text-center p {
  text-align: center;
  width: 100%;
}

@media (min-width: 768px) {
  .hero .d-flex.flex-column.text-md-start {
    align-items: flex-start;
  }
  
  .hero .d-flex.flex-column.text-md-start h2,
  .hero .d-flex.flex-column.text-md-start p {
    text-align: left;
  }
}

.btn-get-started {
  color: white;
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  border: none;
  cursor: pointer;
  z-index: 1;
}

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

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

.btn-get-started::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, #0ea5e9, #10b981, #06b6d4);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.btn-get-started:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 35px rgba(14, 165, 233, 0.4);
  color: white;
}

.btn-get-started:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-watch-video {
  color: #e8e8e8;
  background: rgba(14, 165, 233, 0.1);
  border: 2px solid rgba(14, 165, 233, 0.4);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.btn-watch-video::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: -1;
}

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

.btn-watch-video:hover {
  color: #10b981;
  border-color: #10b981;
  background: rgba(14, 165, 233, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.btn-watch-video i {
  font-size: 18px;
  transition: transform 0.3s ease;
}

.btn-watch-video:hover i {
  transform: scale(1.2) rotate(5deg);
}

.btn-watch-video span {
  position: relative;
  z-index: 1;
}

/* Legacy support */
.hero .download-btn {
  color: var(--contrast-color);
  background: var(--gradient-accent);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 40px;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-secondary);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.hero .download-btn::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;
}

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

.hero .download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  color: var(--contrast-color);
}

.hero .download-btn i {
  font-size: 16px;
  line-height: 0;
  margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero {
    min-height: 75vh;
    padding: 100px 0 80px 0;
  }
  
  .hero h2 {
    font-size: clamp(28px, 6vw, 48px);
  }
  
  .hero p {
    font-size: clamp(16px, 2.5vw, 18px);
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 70vh;
    padding: 80px 0 60px 0;
  }

  .hero h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero h2::after {
    width: 60px;
    height: 3px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.7;
    margin: 1rem 0 1.5rem 0;
  }

  .btn-get-started,
  .btn-watch-video {
    font-size: 14px;
    padding: 14px 28px;
    width: 100%;
    justify-content: center;
  }

  .hero .d-flex {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-img {
    margin-top: 2rem;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 60px 0 40px 0;
  }
  
  .hero h2 {
    font-size: 28px;
  }
  
  .btn-get-started,
  .btn-watch-video {
    padding: 12px 24px;
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

.about {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 33, 62, 0.9) 100%);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(14, 165, 233, 0.05) 0%, transparent 50%);
  pointer-events: none;
}
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600; 
  font-size: 16px;
  letter-spacing: 1.2px; 
  padding: 12px 32px; 
  border-radius: 8px; 
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); 
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 8px; 
  line-height: 0;
  transition: transform 0.3s ease;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15); 
}

.about .read-more:hover i {
  transform: translateX(6px); 
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Features Section (Completely Redesigned)
--------------------------------------------------------------*/
.features {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0e27 0%, #16213e 50%, #0f3460 100%);
}

.features-background {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(78, 205, 196, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 50px;
  color: #0ea5e9;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  backdrop-filter: blur(10px);
}

.comparison .section-badge {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  color: #e8e8e8;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

.section-description {
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(232, 232, 232, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Course Cards */
.course-card {
  background: rgba(22, 33, 62, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0ea5e9, #10b981, #06b6d4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.course-card:hover {
  transform: translateY(-10px);
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 20px 50px rgba(14, 165, 233, 0.2);
}

.course-card-header {
  padding: 2rem 2rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.course-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.course-card:hover .course-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.4);
}

.course-badge {
  padding: 0.375rem 0.875rem;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.course-card-body {
  padding: 0 2rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.course-title {
  font-size: 24px;
  font-weight: 700;
  color: #10b981;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.course-description {
  color: rgba(232, 232, 232, 0.85);
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 1.5rem 0;
  flex-grow: 1;
}

.course-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.course-duration,
.course-level {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(232, 232, 232, 0.7);
  font-size: 14px;
}

.course-duration i,
.course-level i {
  color: #10b981;
  font-size: 16px;
}

.course-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.course-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(232, 232, 232, 0.8);
  font-size: 14px;
  transition: all 0.3s ease;
}

.course-features li:hover {
  color: #10b981;
  padding-left: 5px;
}

.course-features i {
  color: #10b981;
  font-size: 16px;
  flex-shrink: 0;
}

.course-card-footer {
  padding: 0 2rem 2rem;
  margin-top: auto;
}

.course-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
  border: 2px solid rgba(14, 165, 233, 0.4);
  border-radius: 12px;
  color: #10b981;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.course-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.course-btn:hover::before {
  left: 0;
}

.course-btn:hover {
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.course-btn i {
  transition: transform 0.3s ease;
}

.course-btn:hover i {
  transform: translateX(5px);
}

/* Responsive Features */
@media (max-width: 992px) {
  .features {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 3rem;
  }
}

@media (max-width: 768px) {
  .features {
    padding: 60px 0;
  }
  
  .course-card-header {
    padding: 1.5rem 1.5rem 1rem;
  }
  
  .course-card-body {
    padding: 0 1.5rem 1.5rem;
  }
  
  .course-card-footer {
    padding: 0 1.5rem 1.5rem;
  }
  
  .course-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .course-title {
    font-size: 20px;
  }
}

.features .icon-box {
  display: flex;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(14, 165, 233, 0.1);
  position: relative;
  overflow: hidden;
}

.features .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.05), transparent);
  transition: left 0.6s;
}

.features .icon-box:hover::before {
  left: 100%;
}

.features .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-primary);
  border-color: var(--accent-color);
}

.features .icon-box h4 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 15px 0;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.features .icon-box i {
  font-size: 48px;
  line-height: 48px;
  color: var(--accent-color);
  margin-right: 20px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.3));
  position: relative;
  z-index: 2;
}

.features .icon-box:hover i {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(14, 165, 233, 0.6));
}

.features .icon-box p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.feature-details {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.feature-details::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(14, 165, 233, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.feature-details .features-item {
  color: rgba(255, 255, 255, 0.9);
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  border-radius: 25px;
  padding: 3rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-primary);
  border: 1px solid rgba(14, 165, 233, 0.1);
  transition: all 0.4s ease;
}

.feature-details .features-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-color);
}

.feature-details .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .feature-details .features-item+.features-item {
    margin-top: 40px;
  }
}

.feature-details .features-item h3 {
  font-weight: 700;
  font-size: 28px;
  color: var(--heading-color);
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-details .features-item ul {
  list-style: none;
  padding: 0;
}

.feature-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.feature-details .features-item ul li:last-child {
  padding-bottom: 0;
}

.feature-details .features-item ul i {
  font-size: 24px;
  padding-right: 8px;
  color: var(--accent-color);
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.3));
}

.feature-details .features-item:hover ul i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px rgba(14, 165, 233, 0.6));
}

.feature-details .features-item p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# 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 (Completely Redesigned)
--------------------------------------------------------------*/
.testimonials {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0f3460 0%, #16213e 50%, #0a0e27 100%);
}

.testimonials-background {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 15% 20%, rgba(78, 205, 196, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(255, 107, 107, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

/* New Testimonial Item Styles */
.testimonial-item {
  background: rgba(22, 33, 62, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0ea5e9, #10b981, #06b6d4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.testimonial-item:hover::before {
  transform: scaleX(1);
}

.testimonial-item:hover {
  transform: translateY(-8px);
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 20px 50px rgba(14, 165, 233, 0.2);
}

.testimonial-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(16, 185, 129, 0.2));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #10b981;
  opacity: 0.5;
}

.testimonial-content-wrapper {
  position: relative;
  z-index: 2;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.testimonial-rating i {
  color: #06b6d4;
  font-size: 18px;
  filter: drop-shadow(0 2px 4px rgba(254, 202, 87, 0.3));
}

.testimonial-text {
  color: rgba(232, 232, 232, 0.9);
  font-size: 16px;
  line-height: 1.8;
  margin: 0 0 2rem 0;
  font-style: italic;
  position: relative;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(78, 205, 196, 0.2);
}

.testimonial-avatar-wrapper {
  position: relative;
  flex-shrink: 0;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #10b981;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
  transition: all 0.3s ease;
}

.testimonial-item:hover .testimonial-avatar {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-verified {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #10b981, #0ea5e9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #16213e;
}

.testimonial-verified i {
  color: white;
  font-size: 12px;
}

.testimonial-author-info {
  flex-grow: 1;
}

.testimonial-name {
  font-size: 18px;
  font-weight: 700;
  color: #10b981;
  margin: 0 0 0.25rem 0;
}

.testimonial-role {
  font-size: 14px;
  color: rgba(232, 232, 232, 0.8);
  margin: 0 0 0.25rem 0;
  font-weight: 500;
}

.testimonial-company {
  font-size: 13px;
  color: rgba(232, 232, 232, 0.6);
  margin: 0;
}

.testimonial-course {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 20px;
  color: #10b981;
  font-size: 13px;
  font-weight: 500;
}

.testimonial-course i {
  font-size: 14px;
}

/* Success Stats */
.success-stats {
  margin-top: 4rem;
}

.stat-card {
  background: rgba(22, 33, 62, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(78, 205, 196, 0.5);
  box-shadow: 0 15px 40px rgba(78, 205, 196, 0.2);
}

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.stat-content {
  flex-grow: 1;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  background: linear-gradient(135deg, #10b981, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 14px;
  color: rgba(232, 232, 232, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Responsive Testimonials */
@media (max-width: 992px) {
  .testimonials {
    padding: 80px 0;
  }
  
  .success-stats {
    margin-top: 3rem;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 60px 0;
  }
  
  .testimonial-item {
    padding: 2rem 1.5rem;
  }
  
  .testimonial-quote-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
    top: 1rem;
    right: 1rem;
  }
  
  .testimonial-avatar {
    width: 50px;
    height: 50px;
  }
  
  .testimonial-name {
    font-size: 16px;
  }
  
  .stat-card {
    padding: 1.5rem;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .stat-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
}

/* Legacy testimonial styles for compatibility */
.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.9) 100%);
  box-shadow: var(--shadow-primary);
  box-sizing: content-box;
  padding: 40px 40px 40px 80px;
  margin: 30px 15px;
  min-height: 220px;
  position: relative;
  border-radius: 25px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  transition: all 0.4s ease;
  overflow: hidden;
}

.testimonials .testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.05), transparent);
  transition: left 0.6s;
}

.testimonials .testimonial-item:hover::before {
  left: 100%;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  border-radius: 15px;
  border: 4px solid var(--accent-color);
  position: absolute;
  left: -50px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-secondary);
}

.testimonials .testimonial-item:hover .testimonial-img {
  transform: scale(1.05);
  box-shadow: 0 10px 25px rgba(78, 205, 196, 0.3);
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 15px 0 8px 0;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.testimonials .testimonial-item h4 {
  color: var(--accent-color);
  font-size: 16px;
  margin: 0;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.testimonials .testimonial-item .stars {
  margin: 15px 0;
  position: relative;
  z-index: 2;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 2px;
  font-size: 18px;
  filter: drop-shadow(0 0 5px rgba(255, 193, 7, 0.3));
  transition: all 0.3s ease;
}

.testimonials .testimonial-item:hover .stars i {
  transform: scale(1.1);
  filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.5));
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 60%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 20px auto 20px auto;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

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

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

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

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

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

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Success Stories Section
--------------------------------------------------------------*/
.success-stories {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.success-stories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 20% 80%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.success-stories .success-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.9) 100%);
  padding: 50px 40px;
  border-radius: 25px;
  text-align: center;
  height: 100%;
  transition: all 0.4s ease;
  border: 2px solid rgba(78, 205, 196, 0.2);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-primary);
}

.success-stories .success-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.05), transparent);
  transition: left 0.6s;
}

.success-stories .success-card:hover::before {
  left: 100%;
}

.success-stories .success-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-color);
}

.success-stories .success-card.featured {
  border-color: var(--heading-color);
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(255, 107, 107, 0.1) 100%);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.2);
}

.success-stories .success-card.featured:hover {
  box-shadow: 0 25px 50px rgba(255, 107, 107, 0.3);
}

.success-stories .success-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.4s ease;
  box-shadow: var(--shadow-secondary);
  position: relative;
  z-index: 2;
}

.success-stories .success-card:hover .success-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 10px 25px rgba(78, 205, 196, 0.4);
}

.success-stories .success-icon i {
  font-size: 40px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.success-stories .success-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
  background: linear-gradient(45deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.success-stories .success-description {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  position: relative;
  z-index: 2;
}

.success-stories .success-author {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}

.success-stories .success-author strong {
  display: block;
  font-size: 18px;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.success-stories .success-author span {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 500;
}

.success-stories .cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.success-stories .cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  color: var(--contrast-color);
}

.success-stories .cta-button i {
  transition: transform 0.3s ease;
}

.success-stories .cta-button:hover i {
  transform: translateX(5px);
}



/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(78, 205, 196, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

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

.faq .faq-container .faq-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  position: relative;
  padding: 30px;
  margin-bottom: 25px;
  overflow: hidden;
  transition: all 0.4s ease;
  border-radius: 20px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  box-shadow: var(--shadow-secondary);
}

.faq .faq-container .faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.05), transparent);
  transition: left 0.6s;
}

.faq .faq-container .faq-item:hover::before {
  left: 100%;
}

.faq .faq-container .faq-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-primary);
  border-color: var(--accent-color);
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  margin: 0 50px 0 60px;
  transition: all 0.3s ease;
  cursor: pointer;
  color: var(--heading-color);
  position: relative;
  z-index: 2;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

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

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 30px;
  left: 30px;
  font-size: 24px;
  line-height: 0;
  transition: all 0.3s ease;
  color: var(--accent-color);
  filter: drop-shadow(0 0 8px rgba(14, 165, 233, 0.3));
  z-index: 2;
}

.faq .faq-container .faq-item:hover .faq-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 12px rgba(14, 165, 233, 0.6));
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 18px;
  line-height: 0;
  transition: all 0.3s ease;
  cursor: pointer;
  color: var(--accent-color);
  z-index: 2;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background: var(--gradient-accent);
  transition: all 0.4s ease;
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(78, 205, 196, 0.3);
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1a2e 100%);
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(78, 205, 196, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact .info-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  box-shadow: var(--shadow-primary);
  transition: all 0.4s ease;
}

.contact .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.contact .info-item i {
  font-size: 42px;
  line-height: 0;
  color: var(--accent-color);
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.3));
}

.contact .info-item:hover i {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(14, 165, 233, 0.6));
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  padding: 40px;
  height: 100%;
  border-radius: 25px;
  border: 1px solid rgba(14, 165, 233, 0.1);
  box-shadow: var(--shadow-primary);
  transition: all 0.4s ease;
}

.contact .php-email-form:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 16px;
  padding: 15px 20px;
  box-shadow: none;
  border-radius: 15px;
  color: var(--default-color);
  background-color: rgba(26, 26, 46, 0.6);
  border: 2px solid rgba(78, 205, 196, 0.2);
  transition: all 0.3s ease;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
  background-color: rgba(26, 26, 46, 0.8);
  box-shadow: 0 0 15px rgba(78, 205, 196, 0.3);
  transform: translateY(-2px);
}



.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

.contact .php-email-form button[type=submit] {
  background: var(--gradient-accent);
  color: var(--contrast-color);
  border: 0;
  padding: 15px 40px;
  transition: all 0.3s ease;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: var(--shadow-secondary);
  position: relative;
  overflow: hidden;
}

.contact .php-email-form button[type=submit]::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;
}

.contact .php-email-form button[type=submit]:hover::before {
  left: 100%;
}

.contact .php-email-form button[type=submit]:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  background: var(--background-color);
}

#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  transform: translateX(-50%);
  background: var(--surface-color);
  color: var(--default-color);
  border: none;
  padding: 20px;
  font-family: "Archivo Black", sans-serif;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 25px;
  font-size: 14px;
  max-width: 400px;
  z-index: 1000;
  display: none;
  opacity: 0; /* Start invisible */
  transform: translateY(30px); /* Slide up effect */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

#cookie-popup p {
  margin: 0;
  padding: 0;
}

#cookie-popup .popup-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cookie-popup button {
  background: var(--accent-color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

#cookie-popup button:hover {
  background: var(--heading-color);
}

#cookie-popup .popup-message {
  max-width: 80%;
}

#cookie-popup .popup-message a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

#cookie-popup .popup-message a:hover {
  color: var(--heading-color);
}

/*  New Swiper */
.feature-slider {
  position: relative;
  padding-bottom: 60px;
}

.feature-slider .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.feature-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--heading-color);
  opacity: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.feature-slider .swiper-pagination-bullet-active {
  width: 14px;
  height: 14px;
  background-color: var(--accent-color);
}

.feature_example {
  border: 2px solid var(--accent-color);
  border-radius: 25px;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.9) 100%);
  color: var(--default-color);
  padding: 2.5rem;
  box-shadow: var(--shadow-primary);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature_example::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.05), transparent);
  transition: left 0.6s;
}

.feature_example:hover::before {
  left: 100%;
}

.feature_example:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  border-color: var(--heading-color);
}


.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(26, 26, 46, 0.8) 100%);
  border-radius: 20px;
  box-shadow: var(--shadow-primary);
  padding: 2rem;
  transition: all 0.4s ease;
  border: 1px solid rgba(14, 165, 233, 0.2);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(78, 205, 196, 0.1), transparent);
  transition: left 0.6s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-color);
}

.feature-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.feature-content i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
  transition: all 0.3s ease;
  filter: drop-shadow(0 0 10px rgba(14, 165, 233, 0.3));
}

.feature-card:hover .feature-content i {
  transform: scale(1.2) rotate(5deg);
  filter: drop-shadow(0 0 15px rgba(14, 165, 233, 0.6));
}

.read-more {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-accent);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
  font-weight: 600;
  box-shadow: var(--shadow-secondary);
  position: relative;
  overflow: hidden;
}

.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;
}

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

.read-more:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

footer div a {
  display: inline-block;
  margin-right: 2rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 20px;
  position: relative;
  z-index: 2;
}

footer div a:last-child {
  margin-right: 0;
}

footer div a:hover {
  color: var(--accent-color);
  background: rgba(14, 165, 233, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(78, 205, 196, 0.2);
}

/*--------------------------------------------------------------
# New Footer Styles
--------------------------------------------------------------*/
.footer-info h3 {
  color: var(--heading-color);
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-info p {
  color: rgba(240, 246, 252, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}

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

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

.footer ul li a {
  color: rgba(240, 246, 252, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 5px 0;
}

.footer ul li a:hover {
  color: var(--accent-color);
  padding-left: 10px;
}

.footer-contact p {
  color: rgba(240, 246, 252, 0.8);
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-newsletter {
  background: rgba(22, 27, 34, 0.5);
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  text-align: center;
}

.footer-newsletter h4 {
  color: var(--heading-color);
  margin-bottom: 10px;
}

.footer-newsletter p {
  color: rgba(240, 246, 252, 0.8);
  margin-bottom: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(240, 246, 252, 0.1);
  padding-top: 20px;
  margin-top: 30px;
}

.footer-bottom .copyright p {
  color: rgba(240, 246, 252, 0.6);
  margin: 0;
}

.footer-bottom .footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-bottom .footer-links a {
  color: rgba(240, 246, 252, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/*--------------------------------------------------------------
# New FAQ Styles
--------------------------------------------------------------*/
.faq-container .faq-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 27, 34, 0.8) 100%);
  border-radius: 15px;
  margin-bottom: 20px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-container .faq-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.faq-header {
  display: flex;
  align-items: center;
  padding: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-header:hover {
  background: rgba(124, 58, 237, 0.05);
}

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

.faq-header h3 {
  flex: 1;
  margin: 0;
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
}

.faq-toggle {
  font-size: 20px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq-item.faq-active .faq-toggle {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 25px 25px 25px;
  color: rgba(240, 246, 252, 0.9);
  line-height: 1.6;
  display: none;
}

.faq-item.faq-active .faq-content {
  display: block;
}

/*--------------------------------------------------------------
# New Testimonials Styles
--------------------------------------------------------------*/
.testimonial-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 27, 34, 0.9) 100%);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  border: 1px solid rgba(124, 58, 237, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.05), transparent);
  transition: left 0.6s;
}

.testimonial-card:hover::before {
  left: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px;
  border: 3px solid var(--accent-color);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info h4 {
  color: var(--heading-color);
  margin: 0 0 5px 0;
  font-size: 18px;
  font-weight: 600;
}

.testimonial-info p {
  color: var(--accent-color);
  margin: 0 0 10px 0;
  font-size: 14px;
}

.rating {
  display: flex;
  gap: 2px;
}

.rating i {
  color: #ffc107;
  font-size: 14px;
}

.testimonial-content p {
  color: rgba(240, 246, 252, 0.9);
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
}

.testimonial-stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.testimonial-stats .stat {
  background: rgba(124, 58, 237, 0.1);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  color: var(--accent-color);
  border: 1px solid rgba(124, 58, 237, 0.3);
}

.trust-indicators {
  background: rgba(22, 27, 34, 0.5);
  padding: 40px;
  border-radius: 20px;
  margin-top: 40px;
}

.trust-stat h3 {
  color: var(--heading-color);
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
}

.trust-stat p {
  color: rgba(240, 246, 252, 0.8);
  margin: 0;
  font-size: 16px;
}

/*--------------------------------------------------------------
# New Contact Styles
--------------------------------------------------------------*/
.contact-info {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 27, 34, 0.8) 100%);
  padding: 30px;
  border-radius: 20px;
  height: 100%;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(240, 246, 252, 0.1);
}

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

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 20px;
  color: var(--contrast-color);
}

.contact-details h4 {
  color: var(--heading-color);
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}

.contact-details p {
  color: rgba(240, 246, 252, 0.8);
  margin: 0;
  line-height: 1.5;
}

.contact-form-wrapper {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 27, 34, 0.8) 100%);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.contact-form-wrapper .form-control {
  background: rgba(13, 17, 23, 0.8);
  border: 2px solid rgba(124, 58, 237, 0.2);
  color: var(--default-color);
  border-radius: 10px;
  padding: 15px 20px;
  transition: all 0.3s ease;
}

.contact-form-wrapper .form-control:focus {
  border-color: var(--accent-color);
  background: rgba(13, 17, 23, 0.9);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.3);
}

.contact-form-wrapper .form-control::placeholder {
  color: rgba(240, 246, 252, 0.6);
}

.btn-submit {
  background: var(--gradient-accent);
  color: var(--contrast-color);
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-submit::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;
}

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

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/*--------------------------------------------------------------
# New Contact Form Styles
--------------------------------------------------------------*/
.contact-form-new {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.8) 100%);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(14, 165, 233, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-form-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(14, 165, 233, 0.4);
}

.form-field-group {
  margin-bottom: 1.5rem;
}

.form-label-new {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #10b981;
  margin-bottom: 0.5rem;
}

.required-star {
  color: #ef4444;
  margin-left: 0.25rem;
}

.form-input-new,
.form-textarea-new {
  width: 100%;
  background: rgba(15, 23, 42, 0.8);
  border: 2px solid rgba(14, 165, 233, 0.2);
  color: #e2e8f0;
  border-radius: 10px;
  padding: 15px 20px;
  font-size: 16px;
  transition: all 0.3s ease;
  font-family: var(--body-font);
}

.form-input-new:focus,
.form-textarea-new:focus {
  outline: none;
  border-color: #0ea5e9;
  background: rgba(15, 23, 42, 0.9);
  box-shadow: 0 0 15px rgba(14, 165, 233, 0.3);
  transform: translateY(-2px);
}

.form-input-new::placeholder,
.form-textarea-new::placeholder {
  color: rgba(226, 232, 240, 0.6);
  font-style: italic;
}

.form-input-new.is-invalid,
.form-textarea-new.is-invalid {
  border-color: #ef4444;
  background: rgba(239, 68, 68, 0.1);
}

.form-input-new.is-valid,
.form-textarea-new.is-valid {
  border-color: #10b981;
  background: rgba(16, 185, 129, 0.1);
}

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

.invalid-feedback {
  display: none;
  color: #ef4444;
  font-size: 14px;
  margin-top: 0.5rem;
  font-weight: 500;
}

.form-input-new.is-invalid ~ .invalid-feedback,
.form-textarea-new.is-invalid ~ .invalid-feedback {
  display: block;
}

.form-submit-button {
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  width: 100%;
  justify-content: center;
}

.form-submit-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;
}

.form-submit-button:hover::before {
  left: 100%;
}

.form-submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
  color: white;
}

.form-submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.form-submit-button svg {
  transition: transform 0.3s ease;
}

.form-submit-button:hover svg {
  transform: translateY(-2px);
}

.form-status {
  margin-top: 20px;
}

.form-status .loading {
  display: none;
  color: #0ea5e9;
  font-weight: 600;
  text-align: center;
  padding: 15px;
  background: rgba(14, 165, 233, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(14, 165, 233, 0.3);
}

.form-status .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin: 0 10px -5px 0;
  border: 3px solid #0ea5e9;
  border-top-color: transparent;
  animation: form-loading 1s linear infinite;
}

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

.form-status .error-message {
  display: none;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(239, 68, 68, 0.3);
  font-weight: 600;
}

.form-status .sent-message {
  display: none;
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  text-align: center;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(16, 185, 129, 0.3);
  font-weight: 600;
}

/* Responsive New Contact Form */
@media (max-width: 768px) {
  .contact-form-new {
    padding: 25px;
  }
  
  .form-input-new,
  .form-textarea-new {
    padding: 12px 15px;
    font-size: 15px;
  }
  
  .form-submit-button {
    padding: 12px 30px;
    font-size: 15px;
  }
}

.contact-options {
  margin-top: 50px;
}

.contact-option {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 27, 34, 0.8) 100%);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(124, 58, 237, 0.2);
  transition: all 0.3s ease;
  height: 100%;
}

.contact-option:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-option i {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.contact-option h4 {
  color: var(--heading-color);
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.contact-option p {
  color: rgba(240, 246, 252, 0.8);
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn-outline {
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.form-check {
  text-align: left;
}

.form-check-input {
  margin-right: 10px;
}

.form-check-label {
  color: rgba(240, 246, 252, 0.8);
  font-size: 14px;
}

.form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
}

.form-check-label a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# New Feature Card Styles
--------------------------------------------------------------*/
.feature-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 27, 34, 0.9) 100%);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  border: 1px solid rgba(124, 58, 237, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.05), transparent);
  transition: left 0.6s;
}

.feature-card:hover::before {
  left: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.feature-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.feature-content h4 {
  color: var(--heading-color);
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.feature-content p {
  color: rgba(240, 246, 252, 0.8);
  margin-bottom: 20px;
  line-height: 1.6;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.feature-list li {
  color: rgba(240, 246, 252, 0.7);
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  list-style-type: none;
}

.feature-list li::before {
  content: '*';
  color: var(--accent-color);
  position: absolute;
  left: 0;
  font-weight: bold;
}

.feature-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.feature-link:hover {
  color: var(--heading-color);
  transform: translateX(5px);
}

.tech-stack {
  background: rgba(22, 27, 34, 0.5);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  margin-top: 40px;
}

.tech-stack h3 {
  color: var(--heading-color);
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 600;
}

.tech-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.tech-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 15px;
  background: rgba(124, 58, 237, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  transition: all 0.3s ease;
  min-width: 100px;
}

.tech-logo:hover {
  transform: translateY(-3px);
  background: rgba(124, 58, 237, 0.2);
  border-color: var(--accent-color);
}

.tech-logo i {
  font-size: 32px;
  color: var(--accent-color);
}

.tech-logo span {
  color: var(--default-color);
  font-size: 14px;
  font-weight: 500;
}

/*--------------------------------------------------------------
# New About Section Styles
--------------------------------------------------------------*/
.about-content h3 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.3;
}

.about-content p {
  color: rgba(240, 246, 252, 0.8);
  margin-bottom: 30px;
  line-height: 1.6;
  font-size: 16px;
}

.about-features {
  margin-bottom: 30px;
}

.about-features .feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.about-features .feature-item i {
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
}

.about-features .feature-item span {
  color: rgba(240, 246, 252, 0.9);
  font-size: 16px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
  flex-wrap: wrap;
}

.about-stats .stat-item {
  text-align: center;
  flex: 1;
  min-width: 80px;
}

.about-stats .stat-item h4 {
  color: var(--heading-color);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
}

.about-stats .stat-item p {
  color: rgba(240, 246, 252, 0.7);
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.about-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-accent);
  color: var(--contrast-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.mission-vision {
  margin-top: 50px;
}

.mission-card, .vision-card {
  background: linear-gradient(135deg, var(--surface-color) 0%, rgba(22, 27, 34, 0.8) 100%);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(124, 58, 237, 0.2);
  height: 100%;
  transition: all 0.3s ease;
}

.mission-card:hover, .vision-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.mission-icon, .vision-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mission-icon i, .vision-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.mission-card h4, .vision-card h4 {
  color: var(--heading-color);
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 600;
}

.mission-card p, .vision-card p {
  color: rgba(240, 246, 252, 0.8);
  margin: 0;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# New Footer Styles (Updated)
--------------------------------------------------------------*/
.footer-brand .footer-logo {
  color: var(--heading-color);
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-description {
  color: rgba(240, 246, 252, 0.8);
  line-height: 1.6;
  margin-bottom: 25px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

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

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

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

.footer-links ul li a {
  color: rgba(240, 246, 252, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 5px 0;
}

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

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

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact .contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact .contact-item strong {
  color: var(--heading-color);
  display: block;
  margin-bottom: 5px;
  font-size: 14px;
}

.footer-contact .contact-item p {
  color: rgba(240, 246, 252, 0.7);
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
}

.footer-newsletter {
  background: rgba(22, 27, 34, 0.5);
  padding: 40px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.newsletter-content h4 {
  color: var(--heading-color);
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
}

.newsletter-content p {
  color: rgba(240, 246, 252, 0.8);
  margin-bottom: 30px;
  font-size: 16px;
}

.newsletter-input-group {
  display: flex;
  max-width: 500px;
  margin: 0 auto 15px;
  background: rgba(13, 17, 23, 0.8);
  border-radius: 50px;
  overflow: hidden;
  border: 2px solid rgba(124, 58, 237, 0.2);
}

.newsletter-input-group input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 15px 25px;
  color: var(--default-color);
  font-size: 16px;
}

.newsletter-input-group input::placeholder {
  color: rgba(240, 246, 252, 0.6);
}

.newsletter-btn {
  background: var(--gradient-accent);
  color: var(--contrast-color);
  border: none;
  padding: 15px 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.newsletter-btn:hover {
  background: var(--gradient-primary);
  transform: scale(1.05);
}

.newsletter-privacy {
  color: rgba(240, 246, 252, 0.6);
  font-size: 12px;
}

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

.newsletter-privacy a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Pricing Section (Completely Redesigned)
--------------------------------------------------------------*/
.pricing {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0a0e27 0%, #16213e 50%, #0f3460 100%);
}

.pricing-background {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(78, 205, 196, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

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

/* Price Cards */
.price-card {
  background: rgba(22, 33, 62, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.price-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0ea5e9, #10b981, #06b6d4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.price-card:hover {
  transform: translateY(-10px);
  border-color: rgba(14, 165, 233, 0.5);
  box-shadow: 0 20px 50px rgba(14, 165, 233, 0.2);
}

.price-card-featured {
  border-color: rgba(78, 205, 196, 0.5);
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(78, 205, 196, 0.3);
}

.price-card-featured::before {
  transform: scaleX(1);
}

.price-featured-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, #0ea5e9, #06b6d4);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  z-index: 3;
  animation: priceBadgePulse 2s ease-in-out infinite;
}

@keyframes priceBadgePulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(255, 107, 107, 0.5);
  }
}

.price-card-header {
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  position: relative;
}

.price-plan-badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 20px;
  color: #10b981;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.price-plan-name {
  font-size: 28px;
  font-weight: 700;
  color: #e8e8e8;
  margin: 0 0 1.5rem 0;
}

.price-wrapper {
  margin-bottom: 1rem;
}

.price-main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.price-currency {
  font-size: 24px;
  font-weight: 600;
  color: rgba(232, 232, 232, 0.8);
  margin-top: 0.5rem;
}

.price-amount {
  font-size: 56px;
  font-weight: 700;
  background: linear-gradient(135deg, #10b981, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.price-period {
  font-size: 14px;
  color: rgba(232, 232, 232, 0.6);
  display: block;
  margin-top: 0.5rem;
}

.price-description {
  font-size: 14px;
  color: rgba(232, 232, 232, 0.7);
  margin: 1rem 0 0 0;
}

.price-savings {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background: rgba(254, 202, 87, 0.15);
  border: 1px solid rgba(254, 202, 87, 0.3);
  border-radius: 20px;
  color: #06b6d4;
  font-size: 12px;
  font-weight: 500;
}

.price-savings i {
  font-size: 14px;
}

.price-card-body {
  padding: 0 2rem 2rem;
  flex-grow: 1;
}

.price-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.price-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: rgba(232, 232, 232, 0.85);
  font-size: 15px;
  line-height: 1.6;
  border-bottom: 1px solid rgba(78, 205, 196, 0.1);
}

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

.price-features-list i {
  color: #10b981;
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.price-features-list li strong {
  color: #10b981;
  font-weight: 600;
}

.price-card-footer {
  padding: 0 2rem 2rem;
  text-align: center;
}

.price-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1.125rem 1.5rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
  border: 2px solid rgba(14, 165, 233, 0.4);
  border-radius: 12px;
  color: #10b981;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 1rem;
}

.price-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.price-btn:hover::before {
  left: 0;
}

.price-btn:hover {
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.price-btn i {
  transition: transform 0.3s ease;
}

.price-btn:hover i {
  transform: translateX(5px);
}

.price-btn-featured {
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  color: white;
  border-color: transparent;
}

.price-btn-featured::before {
  background: linear-gradient(135deg, #4ecdc4 0%, #ff6b6b 100%);
}

.price-note {
  font-size: 13px;
  color: rgba(232, 232, 232, 0.6);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.price-note::before {
  content: '✓';
  color: #10b981;
  font-weight: 700;
}

/* Pricing Benefits */
.pricing-benefits {
  margin-top: 4rem;
}

.benefit-item {
  background: rgba(22, 33, 62, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  transition: all 0.4s ease;
  height: 100%;
}

.benefit-item:hover {
  transform: translateY(-5px);
  border-color: rgba(78, 205, 196, 0.5);
  box-shadow: 0 15px 40px rgba(78, 205, 196, 0.2);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 32px;
  color: white;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.benefit-item h4 {
  font-size: 20px;
  font-weight: 700;
  color: #10b981;
  margin: 0 0 1rem 0;
}

.benefit-item p {
  font-size: 15px;
  color: rgba(232, 232, 232, 0.8);
  line-height: 1.7;
  margin: 0;
}

/* Pricing CTA */
.pricing-cta {
  margin-top: 4rem;
  background: rgba(22, 33, 62, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
}

.cta-content h3 {
  font-size: 32px;
  font-weight: 700;
  color: #e8e8e8;
  margin: 0 0 1rem 0;
}

.cta-content p {
  font-size: 18px;
  color: rgba(232, 232, 232, 0.8);
  margin: 0 0 2rem 0;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.125rem 2.5rem;
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  color: white;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.4s ease;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(14, 165, 233, 0.4);
  color: white;
}

.btn-cta-primary i {
  font-size: 20px;
}

/* Responsive Pricing */
@media (max-width: 992px) {
  .pricing {
    padding: 80px 0;
  }
  
  .price-card-featured {
    transform: scale(1);
  }
  
  .pricing-benefits {
    margin-top: 3rem;
  }
  
  .pricing-cta {
    margin-top: 3rem;
    padding: 2.5rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .pricing {
    padding: 60px 0;
  }
  
  .price-card-header {
    padding: 2rem 1.5rem 1.5rem;
  }
  
  .price-card-body {
    padding: 0 1.5rem 1.5rem;
  }
  
  .price-card-footer {
    padding: 0 1.5rem 1.5rem;
  }
  
  .price-amount {
    font-size: 48px;
  }
  
  .price-plan-name {
    font-size: 24px;
  }
  
  .price-featured-badge {
    top: 1rem;
    right: 1rem;
    padding: 0.375rem 0.75rem;
    font-size: 11px;
  }
  
  .benefit-item {
    padding: 1.5rem;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .cta-content h3 {
    font-size: 24px;
  }
  
  .cta-content p {
    font-size: 16px;
  }
  
  .btn-cta-primary {
    padding: 1rem 2rem;
    font-size: 15px;
  }
}

/* Legacy pricing styles for compatibility */
.pricing-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-header h3 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.price {
  margin: 1.5rem 0;
}

.price .currency {
  font-size: 1.5rem;
  vertical-align: top;
}

.price .amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
}

.price .period {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.7;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
  flex-grow: 1;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--default-color);
  border-bottom: 1px solid rgba(232, 232, 232, 0.1);
}

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

.pricing-features i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

.btn-pricing {
  display: inline-block;
  padding: 12px 30px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
}

.btn-pricing:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-secondary);
  color: white;
}

.pricing-note {
  font-size: 1.1rem;
  margin-top: 2rem;
}

/*--------------------------------------------------------------
# Comparison Section (Completely Redesigned with Green-Blue Palette)
--------------------------------------------------------------*/
.comparison {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.comparison-background {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.05) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

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

/* Comparison Cards */
.comparison-card {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.comparison-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0ea5e9 0%, #10b981 50%, #06b6d4 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

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

.comparison-card:hover {
  transform: translateY(-10px);
  border-color: rgba(14, 165, 233, 0.6);
  box-shadow: 0 20px 50px rgba(14, 165, 233, 0.3);
}

.comparison-card-header {
  padding: 2rem 2rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.comparison-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.comparison-card:hover .comparison-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(14, 165, 233, 0.5);
  background: linear-gradient(135deg, #10b981 0%, #06b6d4 100%);
}

.comparison-badge {
  padding: 0.375rem 0.875rem;
  background: linear-gradient(135deg, #0ea5e9, #10b981);
  color: white;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
  animation: comparisonBadgePulse 2s ease-in-out infinite;
}

@keyframes comparisonBadgePulse {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.4);
  }
  50% {
    box-shadow: 0 4px 25px rgba(16, 185, 129, 0.5);
  }
}

.comparison-card-body {
  padding: 0 2rem 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.comparison-course-name {
  font-size: 24px;
  font-weight: 700;
  color: #0ea5e9;
  margin: 0 0 1.5rem 0;
  line-height: 1.3;
}

.comparison-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.comparison-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

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

.comparison-detail-item i {
  color: #10b981;
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  transition: all 0.3s ease;
}

.comparison-card:hover .comparison-detail-item i {
  color: #0ea5e9;
  transform: scale(1.1);
}

.comparison-detail-item > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex-grow: 1;
}

.detail-label {
  font-size: 12px;
  color: rgba(226, 232, 240, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.detail-value {
  font-size: 14px;
  color: rgba(226, 232, 240, 0.9);
  font-weight: 500;
  line-height: 1.5;
}

.comparison-course-description {
  color: rgba(226, 232, 240, 0.8);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
}

.comparison-card-footer {
  padding: 0 2rem 2rem;
  margin-top: auto;
}

.comparison-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
  border: 2px solid rgba(14, 165, 233, 0.4);
  border-radius: 12px;
  color: #0ea5e9;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.comparison-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  transition: left 0.4s ease;
  z-index: -1;
}

.comparison-btn:hover::before {
  left: 0;
}

.comparison-btn:hover {
  color: white;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.comparison-btn i {
  transition: transform 0.3s ease;
}

.comparison-btn:hover i {
  transform: translateX(5px);
}

/* Legacy comparison table styles for compatibility */
.comparison-table {
  background: rgba(30, 41, 59, 0.7);
  border-radius: 15px;
  overflow: hidden;
  margin-top: 2rem;
  border: 1px solid rgba(14, 165, 233, 0.3);
}

.comparison-table thead {
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  color: white;
}

.comparison-table thead th {
  border: none;
  padding: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.comparison-table tbody tr {
  border-bottom: 1px solid rgba(14, 165, 233, 0.1);
  transition: background 0.3s ease;
}

.comparison-table tbody tr:hover {
  background: rgba(14, 165, 233, 0.1);
}

.comparison-table tbody td {
  padding: 1.25rem;
  color: rgba(226, 232, 240, 0.9);
  vertical-align: middle;
}

.comparison-table tbody td:first-child {
  font-weight: 600;
  color: #0ea5e9;
}

.comparison-table tbody td strong {
  color: #10b981;
}

/* Responsive Comparison */
@media (max-width: 992px) {
  .comparison {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .comparison {
    padding: 60px 0;
  }
  
  .comparison-card-header {
    padding: 1.5rem 1.5rem 1rem;
  }
  
  .comparison-card-body {
    padding: 0 1.5rem 1.5rem;
  }
  
  .comparison-card-footer {
    padding: 0 1.5rem 1.5rem;
  }
  
  .comparison-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .comparison-course-name {
    font-size: 20px;
  }
  
  .price-amount {
    font-size: 28px;
  }
}

/* Company Info Section */
.company-table {
  background: transparent;
}

.company-table td {
  padding: 0.75rem 0;
  border: none;
  vertical-align: top;
}

.company-details h4 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(240, 246, 252, 0.1);
  padding-top: 20px;
  margin-top: 30px;
}

.copyright p {
  color: rgba(240, 246, 252, 0.6);
  margin: 0;
  font-size: 14px;
}

.footer-legal {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .about-stats {
    justify-content: center;
  }
  
  .footer-legal {
    justify-content: center;
    margin-top: 15px;
  }
  
  .newsletter-input-group {
    flex-direction: column;
    border-radius: 15px;
  }
  
  .newsletter-btn {
    border-radius: 0 0 15px 15px;
  }
}

/*--------------------------------------------------------------
# Modern Header (Completely New Design)
--------------------------------------------------------------*/
.header-modern {
  background: rgba(15, 23, 42, 0.98);
  backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(14, 165, 233, 0.15);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-modern.scrolled {
  background: rgba(15, 23, 42, 0.99);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
  border-bottom-color: rgba(14, 165, 233, 0.25);
}

.header-wrapper-modern {
  position: relative;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 2rem;
}

/* Modern Logo */
.header-logo-modern {
  flex-shrink: 0;
}

.logo-modern-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo-modern-link:hover {
  transform: translateX(-3px);
}

.logo-modern-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
  transition: all 0.3s ease;
  font-size: 28px;
  color: white;
}

.logo-modern-link:hover .logo-modern-icon {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}

.logo-modern-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.logo-modern-name {
  font-size: 26px;
  font-weight: 700;
  color: #10b981;
  line-height: 1.2;
  font-family: var(--heading-font);
  letter-spacing: -0.5px;
}

.logo-modern-tagline {
  font-size: 11px;
  color: rgba(226, 232, 240, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

/* Modern Navigation */
.header-nav-modern {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-modern-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
  align-items: center;
}

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

.nav-modern-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 1.25rem;
  color: rgba(226, 232, 240, 0.9);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-modern-indicator {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #0ea5e9, #10b981);
  border-radius: 3px 3px 0 0;
  transition: transform 0.3s ease;
}

.nav-modern-link:hover,
.nav-modern-link.active {
  color: #10b981;
  background: rgba(14, 165, 233, 0.1);
}

.nav-modern-link.active .nav-modern-indicator,
.nav-modern-link:hover .nav-modern-indicator {
  transform: translateX(-50%) scaleX(1);
}

/* Modern Header Buttons */
.header-buttons-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.btn-modern-secondary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  color: rgba(226, 232, 240, 0.9);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 10px;
  transition: all 0.3s ease;
  background: rgba(14, 165, 233, 0.05);
}

.btn-modern-secondary:hover {
  color: #10b981;
  border-color: rgba(14, 165, 233, 0.5);
  background: rgba(14, 165, 233, 0.1);
  transform: translateY(-2px);
}

.btn-modern-secondary i {
  font-size: 16px;
}

.btn-modern-primary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-modern-primary::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;
}

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

.btn-modern-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
  color: white;
}

.btn-modern-primary i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.btn-modern-primary:hover i {
  transform: translateX(3px);
}

/* Modern Mobile Toggle */
.mobile-toggle-modern {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.toggle-line {
  width: 100%;
  height: 3px;
  background: #10b981;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-toggle-modern.active .toggle-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle-modern.active .toggle-line:nth-child(2) {
  opacity: 0;
}

.mobile-toggle-modern.active .toggle-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Modern Mobile Menu */
.mobile-menu-modern {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(15, 23, 42, 0.98);
  border-top: 1px solid rgba(14, 165, 233, 0.15);
}

.mobile-menu-modern.active {
  max-height: 600px;
}

.mobile-menu-content {
  padding: 2rem 0;
}

.mobile-nav-modern-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-modern-link {
  display: block;
  padding: 1rem 1.5rem;
  color: rgba(226, 232, 240, 0.9);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-nav-modern-link:hover,
.mobile-nav-modern-link.active {
  color: #10b981;
  background: rgba(14, 165, 233, 0.1);
  border-left-color: #10b981;
  padding-left: 2rem;
}

.mobile-menu-actions {
  margin-top: 1.5rem;
  padding: 0 1.5rem;
}

.btn-mobile-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1rem 1.5rem;
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-mobile-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
  color: white;
}

.btn-mobile-modern i {
  font-size: 18px;
}

/* Responsive Modern Header */
@media (max-width: 1200px) {
  .header-inner {
    padding: 1rem 0;
  }
  
  /* Hide buttons on mobile/tablet, show only burger menu */
  .header-buttons-modern .btn-modern-primary,
  .header-buttons-modern .btn-modern-secondary {
    display: none !important;
  }
  
  /* Show burger menu on mobile/tablet */
  .mobile-toggle-modern {
    display: flex !important;
  }
}

@media (min-width: 1200px) {
  /* Hide burger menu on desktop */
  .mobile-toggle-modern {
    display: none !important;
  }
  
  /* Show buttons on desktop */
  .header-buttons-modern .btn-modern-primary,
  .header-buttons-modern .btn-modern-secondary {
    display: inline-flex !important;
  }
}

@media (max-width: 768px) {
  .logo-modern-icon {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
  
  .logo-modern-name {
    font-size: 20px;
  }
  
  .logo-modern-tagline {
    font-size: 10px;
  }
}

/*--------------------------------------------------------------
# Modern Page Hero
--------------------------------------------------------------*/
.page-hero-modern {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  overflow: hidden;
}

.page-hero-modern .col-lg-8.mx-auto.text-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-hero-modern .col-lg-8.mx-auto.text-center > * {
  text-align: center;
  width: 100%;
}

.page-hero-background {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.min-vh-50 {
  min-height: 50vh;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 50px;
  color: #10b981;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.page-hero-badge i {
  font-size: 16px;
}

.page-hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #e2e8f0;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  background: linear-gradient(135deg, #e2e8f0 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero-description {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(226, 232, 240, 0.8);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-modern-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.btn-hero-modern-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(14, 165, 233, 0.4);
  color: white;
}

.btn-hero-modern-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  color: rgba(226, 232, 240, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(14, 165, 233, 0.4);
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(14, 165, 233, 0.05);
}

.btn-hero-modern-secondary:hover {
  color: #10b981;
  border-color: rgba(14, 165, 233, 0.6);
  background: rgba(14, 165, 233, 0.1);
}

/*--------------------------------------------------------------
# Modern Section Styles
--------------------------------------------------------------*/
.section-badge-modern {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: rgba(14, 165, 233, 0.15);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 50px;
  color: #10b981;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 1rem;
}

.section-title-modern {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #10b981;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-description-modern {
  font-size: 18px;
  color: rgba(226, 232, 240, 0.8);
  margin-bottom: 3rem;
}

/*--------------------------------------------------------------
# Modern About Story Section
--------------------------------------------------------------*/
.about-story-modern {
  padding: 100px 0;
}

.story-content-modern {
  padding-right: 2rem;
}

.story-text-modern {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(226, 232, 240, 0.9);
  margin-bottom: 1.5rem;
}

.story-features-modern {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.story-feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon-modern {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(16, 185, 129, 0.2));
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #10b981;
  font-size: 20px;
}

.feature-content-modern h4 {
  font-size: 18px;
  font-weight: 600;
  color: #10b981;
  margin-bottom: 0.25rem;
}

.feature-content-modern p {
  font-size: 15px;
  color: rgba(226, 232, 240, 0.8);
  margin: 0;
}

.story-image-modern {
  position: relative;
}

.story-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.story-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

.story-image-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 50px;
  color: #10b981;
  font-size: 14px;
  font-weight: 500;
}

.story-stats-modern {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat-card-modern {
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.stat-card-modern:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 10px 30px rgba(14, 165, 233, 0.2);
}

.stat-number-modern {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #0ea5e9, #10b981);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label-modern {
  font-size: 13px;
  color: rgba(226, 232, 240, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/*--------------------------------------------------------------
# Modern Mission & Vision Cards
--------------------------------------------------------------*/
.mission-vision-modern {
  padding: 100px 0;
}

.mission-card-modern,
.vision-card-modern {
  padding: 3rem;
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.mission-card-modern:hover,
.vision-card-modern:hover {
  transform: translateY(-5px);
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 20px 50px rgba(14, 165, 233, 0.2);
}

.mission-icon-modern,
.vision-icon-modern {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(16, 185, 129, 0.2));
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: #10b981;
  font-size: 28px;
}

.mission-title-modern,
.vision-title-modern {
  font-size: 24px;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 1rem;
}

.mission-text-modern,
.vision-text-modern {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(226, 232, 240, 0.9);
  margin: 0;
}

/*--------------------------------------------------------------
# Modern Values Cards
--------------------------------------------------------------*/
.values-modern {
  padding: 100px 0;
}

.value-card-modern {
  padding: 2.5rem;
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 20px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
}

.value-card-modern:hover {
  transform: translateY(-10px);
  border-color: rgba(14, 165, 233, 0.4);
  box-shadow: 0 20px 50px rgba(14, 165, 233, 0.2);
}

.value-icon-wrapper-modern {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(16, 185, 129, 0.2));
  border: 1px solid rgba(14, 165, 233, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 36px;
  transition: all 0.3s ease;
}

.value-card-modern:hover .value-icon-wrapper-modern {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.3), rgba(16, 185, 129, 0.3));
}

.value-title-modern {
  font-size: 22px;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 1rem;
}

.value-text-modern {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(226, 232, 240, 0.8);
  margin: 0;
}

/*--------------------------------------------------------------
# Modern Company Info
--------------------------------------------------------------*/
.company-info-modern {
  padding: 100px 0;
}

.company-card-modern {
  padding: 3rem;
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 20px;
  height: 100%;
}

.company-card-title {
  font-size: 28px;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(14, 165, 233, 0.2);
}

.company-details-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.company-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.company-detail-item i {
  width: 40px;
  height: 40px;
  background: rgba(14, 165, 233, 0.1);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #10b981;
  font-size: 18px;
  flex-shrink: 0;
}

.company-detail-item strong {
  display: block;
  color: #10b981;
  font-size: 16px;
  margin-bottom: 0.25rem;
}

.company-detail-item p {
  color: rgba(226, 232, 240, 0.8);
  font-size: 15px;
  margin: 0;
  line-height: 1.6;
}

.company-detail-item a {
  color: #0ea5e9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.company-detail-item a:hover {
  color: #10b981;
}

/*--------------------------------------------------------------
# Modern CTA Section
--------------------------------------------------------------*/
.cta-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(16, 185, 129, 0.1));
  position: relative;
  overflow: hidden;
}

.cta-modern::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 30% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.cta-title-modern {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: #10b981;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-text-modern {
  font-size: 18px;
  color: rgba(226, 232, 240, 0.8);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons-modern {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-modern-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.btn-cta-modern-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(14, 165, 233, 0.4);
  color: white;
}

.btn-cta-modern-secondary {
  display: inline-flex;
  align-items: center;
  padding: 1rem 2rem;
  color: rgba(226, 232, 240, 0.9);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(14, 165, 233, 0.4);
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(14, 165, 233, 0.05);
}

.btn-cta-modern-secondary:hover {
  color: #10b981;
  border-color: rgba(14, 165, 233, 0.6);
  background: rgba(14, 165, 233, 0.1);
}

/* Responsive Modern Sections */
@media (max-width: 992px) {
  .story-content-modern {
    padding-right: 0;
    margin-bottom: 3rem;
  }
  
  .story-stats-modern {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mission-card-modern,
  .vision-card-modern {
    margin-bottom: 2rem;
  }
}

@media (max-width: 768px) {
  .story-stats-modern {
    grid-template-columns: 1fr;
  }
  
  .page-hero-actions,
  .cta-buttons-modern {
    flex-direction: column;
    width: 100%;
  }
  
  .btn-hero-modern-primary,
  .btn-hero-modern-secondary,
  .btn-cta-modern-primary,
  .btn-cta-modern-secondary {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Modern Policy Pages Styles
--------------------------------------------------------------*/
.policy-content-modern {
  padding: 100px 0;
}

.policy-card-modern {
  background: rgba(30, 41, 59, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 20px;
  padding: 4rem;
}

.policy-section-modern {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(14, 165, 233, 0.1);
}

.policy-section-modern:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.policy-title-modern {
  font-size: 28px;
  font-weight: 700;
  color: #10b981;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.policy-title-modern i {
  font-size: 32px;
  color: #0ea5e9;
}

.policy-text-modern {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(226, 232, 240, 0.9);
  margin-bottom: 1rem;
}

.policy-list-modern {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.policy-list-modern li {
  padding: 0.75rem 0 0.75rem 2rem;
  color: rgba(226, 232, 240, 0.9);
  font-size: 16px;
  line-height: 1.8;
  position: relative;
}

.policy-list-modern li::before {
  content: '\f26a';
  font-family: 'bootstrap-icons';
  position: absolute;
  left: 0;
  color: #10b981;
  font-size: 18px;
}

.cookie-type-card-modern {
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(14, 165, 233, 0.15);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.cookie-type-card-modern:hover {
  border-color: rgba(14, 165, 233, 0.3);
  transform: translateX(5px);
}

.cookie-type-title-modern {
  font-size: 20px;
  font-weight: 600;
  color: #10b981;
  margin-bottom: 0.75rem;
}

.cookie-type-text-modern {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(226, 232, 240, 0.8);
  margin: 0;
}

.contact-box-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(15, 23, 42, 0.5);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: 12px;
  margin-top: 1rem;
}

.contact-box-modern i {
  font-size: 24px;
  color: #10b981;
}

.contact-box-modern strong {
  display: block;
  color: #10b981;
  font-size: 16px;
  margin-bottom: 0.25rem;
}

.contact-box-modern a {
  color: #0ea5e9;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.contact-box-modern a:hover {
  color: #10b981;
}

/* Responsive Policy Pages */
@media (max-width: 768px) {
  .policy-card-modern {
    padding: 2rem;
  }
  
  .policy-title-modern {
    font-size: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .cookie-type-card-modern {
    padding: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Modern Footer Styles
--------------------------------------------------------------*/
.footer-modern {
  background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
  color: #e8e8e8;
  font-size: 16px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(78, 205, 196, 0.2);
}

.footer-background {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(78, 205, 196, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.footer-modern .container {
  position: relative;
  z-index: 2;
}

.footer-top-modern {
  padding: 60px 0 40px;
}

.footer-brand-modern {
  margin-bottom: 30px;
}

.footer-logo-modern-wrapper {
  margin-bottom: 25px;
}

.footer-logo-modern-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.footer-logo-modern-link:hover {
  transform: translateY(-2px);
}

.footer-logo-modern-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #4ecdc4 0%, #10b981 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  margin-right: 15px;
  box-shadow: 0 4px 15px rgba(78, 205, 196, 0.3);
}

.footer-logo-modern-text {
  display: flex;
  flex-direction: column;
}

.footer-logo-modern-name {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  background: linear-gradient(135deg, #4ecdc4 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-logo-modern-tagline {
  font-size: 14px;
  color: rgba(232, 232, 232, 0.7);
  margin-top: 4px;
}

.footer-description-modern {
  color: rgba(232, 232, 232, 0.8);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 15px;
}

.footer-social-modern {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link-modern {
  width: 42px;
  height: 42px;
  background: rgba(78, 205, 196, 0.1);
  border: 1px solid rgba(78, 205, 196, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ecdc4;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 18px;
}

.social-link-modern:hover {
  background: linear-gradient(135deg, #4ecdc4 0%, #10b981 100%);
  color: #fff;
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 8px 20px rgba(78, 205, 196, 0.4);
  border-color: transparent;
}

.footer-column-modern {
  margin-bottom: 30px;
}

.footer-column-title-modern {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column-title-modern::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #4ecdc4 0%, #10b981 100%);
  border-radius: 2px;
}

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

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

.footer-links-modern li a {
  color: rgba(232, 232, 232, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  font-size: 15px;
}

.footer-links-modern li a:hover {
  color: #4ecdc4;
  padding-left: 8px;
  transform: translateX(5px);
}

.footer-contact-info-modern {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item-modern {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-info-icon-modern {
  width: 40px;
  height: 40px;
  background: rgba(78, 205, 196, 0.1);
  border: 1px solid rgba(78, 205, 196, 0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ecdc4;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-item-modern:hover .contact-info-icon-modern {
  background: linear-gradient(135deg, #4ecdc4 0%, #10b981 100%);
  color: #fff;
  transform: scale(1.1);
}

.contact-info-content-modern {
  flex: 1;
}

.contact-info-content-modern strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}

.contact-info-content-modern p {
  color: rgba(232, 232, 232, 0.7);
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

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

.contact-info-content-modern a:hover {
  color: #4ecdc4;
}

.footer-newsletter-modern {
  padding: 50px 0 40px;
  border-top: 1px solid rgba(78, 205, 196, 0.2);
  border-bottom: 1px solid rgba(78, 205, 196, 0.2);
  margin: 40px 0;
}

.newsletter-box-modern {
  background: rgba(22, 33, 62, 0.6);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(78, 205, 196, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.newsletter-content-modern h4 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #4ecdc4 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.newsletter-content-modern p {
  color: rgba(232, 232, 232, 0.8);
  font-size: 16px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.newsletter-form-modern {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-input-wrapper-modern {
  display: flex;
  gap: 0;
  background: rgba(10, 14, 39, 0.8);
  border: 2px solid rgba(78, 205, 196, 0.3);
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.newsletter-input-wrapper-modern:focus-within {
  border-color: #4ecdc4;
  box-shadow: 0 0 20px rgba(78, 205, 196, 0.3);
}

.newsletter-input-modern {
  flex: 1;
  background: transparent;
  border: none;
  padding: 16px 25px;
  color: #fff;
  font-size: 16px;
  outline: none;
}

.newsletter-input-modern::placeholder {
  color: rgba(232, 232, 232, 0.5);
}

.newsletter-btn-modern {
  background: linear-gradient(135deg, #4ecdc4 0%, #10b981 100%);
  color: #fff;
  border: none;
  padding: 16px 35px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.newsletter-btn-modern:hover {
  background: linear-gradient(135deg, #10b981 0%, #4ecdc4 100%);
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

.newsletter-privacy-modern {
  margin-top: 20px;
  color: rgba(232, 232, 232, 0.6);
  font-size: 13px;
  line-height: 1.6;
}

.newsletter-privacy-modern a {
  color: #4ecdc4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.newsletter-privacy-modern a:hover {
  color: #10b981;
  text-decoration: underline;
}

.footer-bottom-modern {
  padding: 30px 0;
  border-top: 1px solid rgba(78, 205, 196, 0.2);
}

.copyright-modern p {
  color: rgba(232, 232, 232, 0.7);
  margin: 0;
  font-size: 15px;
}

.copyright-modern strong {
  color: #fff;
  font-weight: 600;
}

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

.footer-legal-modern a {
  color: rgba(232, 232, 232, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  padding: 5px 0;
}

.footer-legal-modern a:hover {
  color: #4ecdc4;
  transform: translateY(-2px);
}

.separator-modern {
  color: rgba(232, 232, 232, 0.3);
  font-size: 15px;
}

/* Responsive Footer Modern */
@media (max-width: 992px) {
  .footer-top-modern {
    padding: 50px 0 30px;
  }
  
  .footer-brand-modern {
    margin-bottom: 40px;
  }
  
  .footer-column-modern {
    margin-bottom: 40px;
  }
  
  .newsletter-box-modern {
    padding: 30px 25px;
  }
  
  .newsletter-input-wrapper-modern {
    flex-direction: column;
    border-radius: 15px;
  }
  
  .newsletter-btn-modern {
    border-radius: 15px;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-top-modern {
    padding: 40px 0 20px;
  }
  
  .footer-logo-modern-icon {
    width: 45px;
    height: 45px;
    font-size: 24px;
  }
  
  .footer-logo-modern-name {
    font-size: 24px;
  }
  
  .footer-newsletter-modern {
    padding: 30px 0;
    margin: 30px 0;
  }
  
  .newsletter-content-modern h4 {
    font-size: 22px;
  }
  
  .footer-bottom-modern {
    padding: 25px 0;
    text-align: center;
  }
  
  .footer-legal-modern {
    justify-content: center;
    margin-top: 15px;
  }
  
  .copyright-modern {
    text-align: center;
    margin-bottom: 15px;
  }
}
