/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --default-font: "Barlow Condensed", system-ui, -apple-system, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Barlow Condensed", sans-serif;
  --nav-font: "Barlow Condensed", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
--background-color: #0a0e27;
--default-color: #e8e8e8;
--heading-color: #00d4ff;
--accent-color: #ff6b35;
--surface-color: #1a1f35;
--contrast-color: #ffffff;
--bg-color: #0f1419;
--nav-color: #00d4ff;
--nav-hover-color: #ff6b35;
--nav-mobile-background-color: #1a1f35;
--nav-dropdown-background-color: #252b3d;
--nav-dropdown-color: #e8e8e8;
--nav-dropdown-hover-color: #ff6b35;
--gradient-primary: linear-gradient(135deg, #ff6b35, #ff8c42);
--gradient-secondary: linear-gradient(135deg, #00d4ff, #0099cc);
--gradient-accent: linear-gradient(135deg, #ff6b35, #ff4757);
--gradient-dark: linear-gradient(135deg, #0a0e27, #1a1f35);
--gradient-hero: linear-gradient(135deg, #0a0e27, #1a1f35, #252b3d);
}

/* Color Presets */

.light-background {
  --background-color: #f8f9fa;
  --surface-color: #ffffff;
  --default-color: #1a1f35;
  --heading-color: #0099cc;
  --contrast-color: #0a0e27;
}

.dark-background {
  --background-color: #0a0e27;
  --default-color: #e8e8e8;
  --heading-color: #00d4ff;
  --surface-color: #1a1f35;
  --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;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(20px);
  padding: 20px 0;
  transition: all 0.5s ease;
  z-index: 997;
  position: relative;
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
}

.header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.98), rgba(26, 31, 53, 0.95));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.scrolled .header-background {
  opacity: 1;
}

.header .logo {
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease;
}

.header .logo:hover {
  transform: scale(1.05);
}

.logo-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-wrapper img {
  max-height: 45px;
  width: auto;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease;
}

.logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.4), transparent);
  border-radius: 50%;
  animation: pulse-glow 2s ease-in-out infinite;
  z-index: 1;
}

@keyframes pulse-glow {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

.logo-text h2 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--heading-font);
}

.logo-tagline {
  font-size: 11px;
  color: var(--default-color);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-top: -4px;
}

.header-cta-btn {
  background: var(--gradient-primary);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
  margin-left: 20px;
  position: relative;
  overflow: hidden;
}

.header-cta-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 ease;
}

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

.header-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: var(--contrast-color);
}

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

  .header-cta-btn {
    order: 2;
    margin: 0 15px 0 0;
    padding: 10px 20px;
    font-size: 13px;
  }

  .header .navmenu {
    order: 3;
  }
  
  .logo-tagline {
    display: none;
  }
}

.scrolled .header {
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.3);
  padding: 15px 0;
  background: rgba(10, 14, 39, 0.98);
}

/*--------------------------------------------------------------
# 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 {
    padding: 10px 16px;
    font-size: 15px;
    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: 8px;
    position: relative;
    color: var(--default-color);
  }
  
  .navmenu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
  }
  
  .navmenu a:hover::before,
  .navmenu a.active::before {
    width: calc(100% - 32px);
  }
  
  .navmenu a:hover,
  .navmenu a.active {
    color: var(--heading-color);
    background: rgba(0, 212, 255, 0.1);
  }

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

  .navmenu li a {
    border-bottom: 1px solid var(--accent-color);

    margin: 0 1rem;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    border-color: var(--default-color);
  }

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

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

/* Mobile Menu Toggle Button */
@media (max-width: 1199px) {
  .navmenu ul {
    display: none !important;
  }

  .mobile-menu-toggle {
    background: transparent;
    border: none;
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .mobile-menu-toggle:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-color);
  }

  .mobile-menu-toggle i {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: var(--gradient-dark);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.footer-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
  opacity: 0.6;
}

.footer-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footer-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,107,53,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23footer-grid)"/></svg>');
  opacity: 0.4;
}

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

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

.footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo {
  position: relative;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}

.footer-logo-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent);
  border-radius: 50%;
  animation: pulse-glow 3s ease-in-out infinite;
}

.footer-logo-text h3 {
  font-size: 28px;
  margin: 0;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--heading-font);
}

.footer-tagline {
  font-size: 12px;
  color: var(--default-color);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-top: -4px;
}

.footer-description {
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.8;
  margin-bottom: 25px;
}

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

.social-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  color: var(--default-color);
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-link:hover {
  background: var(--gradient-primary);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

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

.footer-links h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  font-family: var(--heading-font);
}

.footer-links h5 i {
  color: var(--accent-color);
  margin-right: 8px;
}

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

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

.footer-links ul li a {
  color: var(--default-color);
  opacity: 0.8;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  font-size: 14px;
}

.footer-links ul li a i {
  font-size: 12px;
  margin-right: 8px;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.footer-links ul li a:hover {
  opacity: 1;
  color: var(--heading-color);
  padding-left: 5px;
}

.footer-links ul li a:hover i {
  opacity: 1;
  color: var(--accent-color);
}

.footer-newsletter-section {
  margin-bottom: 30px;
}

.footer-newsletter-section h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  font-family: var(--heading-font);
}

.footer-newsletter-section h5 i {
  color: var(--accent-color);
  margin-right: 8px;
}

.newsletter-description {
  color: var(--default-color);
  opacity: 0.8;
  font-size: 13px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-newsletter-form {
  margin-bottom: 25px;
}

.newsletter-input-group {
  display: flex;
  gap: 0;
  background: rgba(26, 31, 53, 0.8);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 50px;
  padding: 4px;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.newsletter-input-group:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.newsletter-email-input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--default-color);
  padding: 12px 20px;
  font-size: 14px;
  outline: none;
}

.newsletter-email-input::placeholder {
  color: rgba(232, 232, 232, 0.5);
}

.newsletter-submit-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--gradient-primary);
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
}

.newsletter-submit-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.newsletter-privacy-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--default-color);
  opacity: 0.6;
}

.newsletter-privacy-note i {
  color: var(--accent-color);
  font-size: 14px;
}

.footer-contact-info {
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.footer-contact-info h6 {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  font-family: var(--heading-font);
}

.footer-contact-info h6 i {
  color: var(--accent-color);
  margin-right: 8px;
}

.footer-contact-info p {
  margin: 8px 0;
  font-size: 14px;
}

.footer-contact-info p a {
  color: var(--default-color);
  opacity: 0.8;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact-info p a:hover {
  color: var(--heading-color);
  opacity: 1;
}

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

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

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

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

.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;
  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;
  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
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .download-btn {
  color: var(--contrast-color);
  background: var(--gradient-primary);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 30px 10px 30px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.hero .download-btn+.download-btn {
  margin-left: 20px;
}

.hero .download-btn:hover {
  background: var(--gradient-secondary);
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

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

@media (max-width: 768px) {
  .hero h2 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .download-btn {
    font-size: 14px;
    padding: 8px 20px 10px 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

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

.about .read-more {
  background: var(--gradient-primary);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.2px;
  padding: 12px 32px;
  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(255, 107, 53, 0.3);
  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: var(--gradient-secondary);
  box-shadow: 0 6px 12px rgba(255, 107, 53, 0.4);
}

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


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
#features {
  background: var(--gradient-hero);
  color: var(--contrast-color);
}

.features .icon-box {
  display: flex;
  align-items: center;
  width: 30%;
  margin: 1rem;
}

.features .icon-box {
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid var(--accent-color);
  border-radius: 1rem;
  padding: 0.5rem 0;
  backdrop-filter: blur(10px);
}

.features .icon-box:hover {
  border-color: var(--default-color);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  transform: translateY(-3px);
  background: rgba(255, 107, 53, 0.2);
}

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

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.features .icon-box p {
  font-size: 15px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.feature-details .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.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: 26px;
}

.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: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

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

.feature-item-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 5px 15px;
  border: 1px solid #e0e0e0;;
  border-radius: 1rem;
  background-color: var(--background-color);
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 40px;
  color: var(--accent-color);
  margin-right: 15px;
}

.feature-text {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

.feature-item strong {
  font-size: 18px;
  color: var(--accent-color);
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

/* Styles pour le bloc Témoignages */
.testimonials-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f0fdfa, #e6fffa);
  position: relative;
}


.testimonial-card {
  background: linear-gradient(135deg, var(--surface-color), var(--bg-color));
  padding: 40px 30px;
  box-shadow: 0 8px 25px rgba(74, 144, 226, 0.2);
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  border-radius: 1rem;
  border: 1px solid var(--accent-color);
}

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

.testimonial-quote {
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-img {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid var(--accent-color);
  border-radius: 1rem;
}

.testimonial-author-name {
  font-weight: 600;
  margin-bottom: 3px;
}

.testimonial-author-title {
  font-size: 0.9rem;
  opacity: 0.7;
}

.testimonial-rating {
  display: flex;
  margin-bottom: 15px;
}

.rating-star {
  color: var(--accent-color);
  margin-right: 3px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {

  .pricing-section,
  .testimonials-section {
    padding: 70px 0;
  }

  .pricing-card.featured {
    transform: scale(1);
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 767.98px) {
  .pricing-price {
    font-size: 2rem;
  }

  .pricing-title {
    font-size: 1.3rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

.pricing .buy-btn {
  color: var(--contrast-color);
  background: var(--gradient-primary);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border: none;
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  border-radius: 0.5rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.pricing .buy-btn:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  color: var(--contrast-color);
}

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

.pricing .featured .pricing-item {
  background: var(--gradient-primary);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

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

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

.pricing .featured .buy-btn:hover {
  background: var(--gradient-secondary);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
  border-radius: 1rem
  ;
}


.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.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: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

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

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  transition: 0.3s;
}

.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 .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  ;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.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: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
  ;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

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

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  background: var(--gradient-primary);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}


#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  transform: translateX(-50%);
  background: var(--gradient-dark);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  padding: 20px;
  font-family: "Barlow Condensed", sans-serif;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
  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;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
}

#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(--gradient-primary);
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

#cookie-popup button:hover {
  background: var(--gradient-secondary);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* New Section Styles */
.section-badge {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

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

.section-description {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Hero Section */
.hero {
  padding: 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,107,53,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 107, 53, 0.2);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease-out;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 8px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-item p {
  color: var(--contrast-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

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

.hero-description {
  font-size: 1.2rem;
  color: var(--contrast-color);
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--default-color);
  margin-bottom: 8px;
}

.stat-item p {
  color: var(--contrast-color);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.hero-btn-primary {
  background: var(--gradient-primary);
  color: var(--contrast-color);
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.hero-btn-secondary {
  background: transparent;
  color: var(--contrast-color);
  border: 2px solid rgba(255, 107, 53, 0.5);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--default-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
}

.hero-visual {
  position: relative;
  height: 600px;
  z-index: 2;
}

.hero-orb-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-primary);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  animation: float 6s ease-in-out infinite;
}

.main-orb {
  width: 200px;
  height: 200px;
  font-size: 3rem;
  color: white;
  animation: pulse 4s ease-in-out infinite;
}

.orb-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  left: 10%;
  animation-delay: 1s;
  background: var(--gradient-accent);
}

.orb-2 {
  width: 60px;
  height: 60px;
  top: 20%;
  right: 15%;
  animation-delay: 2s;
  background: var(--gradient-secondary);
}

.orb-3 {
  width: 70px;
  height: 70px;
  bottom: 30%;
  left: 20%;
  animation-delay: 3s;
  background: var(--gradient-primary);
}

.orb-4 {
  width: 50px;
  height: 50px;
  bottom: 10%;
  right: 25%;
  animation-delay: 4s;
  background: var(--gradient-accent);
}

.orb-content {
  text-align: center;
  color: white;
}

.orb-content i {
  font-size: 2rem;
  margin-bottom: 5px;
}

.orb-content span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-cards {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  padding: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.2);
  animation: float 8s ease-in-out infinite;
  max-width: 200px;
  text-align: center;
}

.hero-card .card-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
  color: white;
}

.hero-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 8px;
}

.hero-card p {
  font-size: 0.8rem;
  color: var(--contrast-color);
  opacity: 0.8;
  margin: 0;
}

.card-1 {
  top: 5%;
  left: 5%;
  animation-delay: 0s;
}

.card-2 {
  top: 15%;
  right: 5%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 15%;
  left: 10%;
  animation-delay: 4s;
}

.floating-cards {
  position: relative;
  width: 100%;
  height: 100%;
}

.floating-cards .card {
  position: absolute;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 212, 255, 0.05));
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
  backdrop-filter: blur(15px);
  animation: float 6s ease-in-out infinite;
  max-width: 280px;
  min-height: 180px;
  text-align: left;
}

.floating-cards .card h4 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.floating-cards .card p {
  color: var(--contrast-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

.card-1 {
  top: 5%;
  left: 5%;
  animation-delay: 0s;
}

.card-2 {
  top: 15%;
  right: 5%;
  animation-delay: 1.5s;
}

.card-3 {
  bottom: 25%;
  left: 15%;
  animation-delay: 3s;
}

.card-4 {
  bottom: 5%;
  right: 15%;
  animation-delay: 4.5s;
}

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

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

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

/* About Section */
.about {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.about .container {
  position: relative;
  z-index: 3;
}

.about .step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.about .step-card:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-10px);
}

.about .step-card.featured {
  background: rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.4);
}

.about .step-card h4,
.about .step-card p {
  color: var(--contrast-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about .step-card .step-number {
  color: var(--default-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about .step-card .step-icon i {
  color: var(--accent-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about .step-card .step-features .step-feature {
  background: rgba(255, 107, 53, 0.2);
  color: var(--contrast-color);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.about .section-title,
.about .section-description {
  color: var(--contrast-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about .section-badge {
  background: rgba(255, 107, 53, 0.2);
  color: var(--contrast-color);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.about-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-image: url('../img/main.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.about-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 15, 0.7);
  z-index: 1;
}

.about-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(0,212,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23about-grid)"/></svg>');
  opacity: 0.6;
  animation: float 30s ease-in-out infinite;
  z-index: 2;
}

.about-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(255, 140, 66, 0.02) 0%, transparent 70%);
  animation: pulse 12s ease-in-out infinite;
  z-index: 2;
}

.about-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.1;
  animation: float 15s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 15%;
  animation-delay: 5s;
  background: var(--gradient-secondary);
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 20%;
  animation-delay: 10s;
  background: var(--gradient-accent);
}

.about-content-wrapper {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 25px;
  padding: 40px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.05);
}

.about-intro {
  margin-bottom: 40px;
  text-align: center;
}

.about-intro h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-intro p {
  color: var(--contrast-color);
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.9;
}

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

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
  transition: left 0.5s ease;
}

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

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.2);
}

.feature-icon-wrapper {
  position: relative;
  flex-shrink: 0;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.feature-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: var(--gradient-primary);
  border-radius: 25px;
  opacity: 0.2;
  filter: blur(15px);
  animation: pulse 3s ease-in-out infinite;
}

.about-feature:hover .feature-icon {
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.feature-content {
  flex: 1;
}

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

.feature-content p {
  color: var(--contrast-color);
  line-height: 1.6;
  margin-bottom: 15px;
  opacity: 0.9;
}

.feature-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.feature-tags .tag {
  background: rgba(255, 107, 53, 0.1);
  color: var(--default-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.about-visual-wrapper {
  position: relative;
  z-index: 2;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-visual {
  position: relative;
  width: 100%;
  height: 100%;
}

.spiritual-orb-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spiritual-orb {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
  animation: float 8s ease-in-out infinite;
}

.orb-inner {
  text-align: center;
  color: white;
  z-index: 2;
}

.orb-inner i {
  font-size: 3rem;
  margin-bottom: 10px;
  display: block;
}

.orb-inner span {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.orb-ring {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
  animation: float 6s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.3s ease;
}

.floating-element:hover {
  transform: scale(1.2);
  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.5);
}

.floating-element span {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

.element-1 {
  top: 5%;
  left: 20%;
  animation-delay: 0s;
  background: var(--gradient-accent);
}

.element-2 {
  top: 15%;
  right: 10%;
  animation-delay: 1s;
  background: var(--gradient-primary);
}

.element-3 {
  top: 40%;
  left: 5%;
  animation-delay: 2s;
  background: var(--gradient-secondary);
}

.element-4 {
  top: 60%;
  right: 5%;
  animation-delay: 3s;
  background: var(--gradient-accent);
}

.element-5 {
  bottom: 20%;
  left: 15%;
  animation-delay: 4s;
  background: var(--gradient-primary);
}

.element-6 {
  bottom: 5%;
  right: 20%;
  animation-delay: 5s;
  background: var(--gradient-secondary);
}

.spiritual-path {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  pointer-events: none;
}

.path-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--default-color), transparent);
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0.3;
  animation: pulse 4s ease-in-out infinite;
}

.path-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--default-color);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.dot-1 {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}

.dot-2 {
  top: 50%;
  right: 20%;
  animation-delay: 1s;
}

.dot-3 {
  bottom: 20%;
  left: 30%;
  animation-delay: 2s;
}

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

/* About Section Responsive */
@media (max-width: 768px) {
  .about {
    padding: 60px 0;
  }
  
  .about-background {
    background-attachment: scroll;
  }
  
  .about-content-wrapper {
    padding: 25px;
    margin-bottom: 30px;
  }
  
  .about-intro h3 {
    font-size: 1.5rem;
  }
  
  .about-intro p {
    font-size: 1rem;
  }
  
  .about-features {
    gap: 20px;
  }
  
  .about-feature {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .feature-icon-wrapper {
    align-self: center;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .about-visual-wrapper {
    height: 300px;
  }
  
  .spiritual-orb {
    width: 150px;
    height: 150px;
  }
  
  .orb-inner i {
    font-size: 2rem;
  }
  
  .orb-inner span {
    font-size: 0.8rem;
  }
  
  .floating-element {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .floating-element span {
    font-size: 0.6rem;
  }
  
  .spiritual-path {
    width: 200px;
    height: 200px;
  }
  
  .path-line {
    width: 150px;
  }
}

@media (max-width: 480px) {
  .about-background {
    background-attachment: scroll;
  }
  
  .about-content-wrapper {
    padding: 20px;
  }
  
  .about-intro h3 {
    font-size: 1.3rem;
  }
  
  .about-feature {
    padding: 15px;
  }
  
  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .spiritual-orb {
    width: 120px;
    height: 120px;
  }
  
  .orb-inner i {
    font-size: 1.5rem;
  }
  
  .floating-element {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }
  
  .floating-element span {
    font-size: 0.5rem;
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 1.5rem;
  color: white;
}

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

.feature-content p {
  line-height: 1.6;
}

.about-visual {
  position: relative;
  height: 400px;
}

.progress-ring {
  position: relative;
  width: 100%;
  height: 100%;
}

.ring {
  position: absolute;
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 212, 255, 0.1));
  backdrop-filter: blur(10px);
}

.ring-1 {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 20%;
  animation: rotate 20s linear infinite;
}

.ring-2 {
  width: 80px;
  height: 80px;
  top: 50%;
  right: 30%;
  animation: rotate 15s linear infinite reverse;
}

.ring-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 50%;
  animation: rotate 25s linear infinite;
}

.ring-content {
  text-align: center;
  color: var(--contrast-color);
}

.ring-content i {
  font-size: 1.5rem;
  color: var(--default-color);
  margin-bottom: 5px;
}

.ring-content span {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

/* About & How It Works Combined Section */
.about-how-it-works {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.section-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 15, 0.85) 0%,
    rgba(30, 27, 46, 0.8) 50%,
    rgba(15, 11, 26, 0.9) 100%
  );
  backdrop-filter: blur(2px);
}

.about-how-it-works .container {
  position: relative;
  z-index: 2;
}

.about-how-it-works .section-title,
.about-how-it-works .section-description,
.about-how-it-works .about-content h4,
.about-how-it-works .about-content p,
.about-how-it-works .step-card h4,
.about-how-it-works .step-card p {
  color: var(--contrast-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.about-how-it-works .section-badge {
  background: rgba(255, 107, 53, 0.2);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: var(--contrast-color);
  backdrop-filter: blur(10px);
}

.about-how-it-works .feature-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 15px;
  padding: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.about-how-it-works .feature-item:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-5px);
}

.about-how-it-works .step-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.about-how-it-works .step-card:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-10px);
}

.about-how-it-works .step-card.featured {
  background: rgba(255, 107, 53, 0.15);
  border-color: rgba(255, 107, 53, 0.4);
}

.about-how-it-works .progress-ring {
  filter: drop-shadow(0 10px 20px rgba(255, 107, 53, 0.3));
}

/* Responsive Design for Combined Section */
@media (max-width: 768px) {
  .about-how-it-works {
    padding: 60px 0;
  }
  
  .about-how-it-works .section-title {
    font-size: 2rem;
  }
  
  .about-how-it-works .feature-item {
    padding: 15px;
  }
  
  .about-how-it-works .step-card {
    margin-bottom: 20px;
  }
}

/* Features Section */
.feature-card {
  background: var(--gradient-dark);
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.1);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
  border-color: var(--default-color);
}

.feature-card .feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
}

.feature-card .feature-icon i {
  font-size: 2rem;
}

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

.feature-card p {
  color: var(--contrast-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

.feature-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background: var(--gradient-primary);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* FAQ Section */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--gradient-dark);
  border: 2px solid var(--accent-color);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.1);
}

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

.faq-header:hover {
  background: rgba(255, 107, 53, 0.1);
}

.faq-header h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin: 0;
}

.faq-header i {
  font-size: 1.2rem;
  color: var(--default-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 25px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-content {
  padding: 0 25px 25px;
  max-height: 200px;
}

.faq-content p {
  color: var(--contrast-color);
  line-height: 1.6;
  margin: 0;
}

/* How It Works Section */
.step-card {
  background: var(--gradient-dark);
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.1);
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.step-card.featured {
  border-color: var(--default-color);
  transform: scale(1.05);
}

.step-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-icon i {
  font-size: 2rem;
  color: white;
}

.step-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.step-card p {
  color: var(--contrast-color);
  line-height: 1.6;
  margin-bottom: 20px;
}

.step-features {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.step-feature {
  background: rgba(255, 107, 53, 0.2);
  color: var(--default-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Contact Section */
.contact {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="rgba(0,212,255,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grid)"/></svg>');
  opacity: 0.8;
  animation: float 25s ease-in-out infinite;
}

.contact-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(255, 140, 66, 0.03) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
}

.contact-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.contact-shapes .shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-primary);
  opacity: 0.05;
  animation: float 20s ease-in-out infinite;
}

.contact-shapes .shape-1 {
  width: 300px;
  height: 300px;
  top: 5%;
  left: 5%;
  animation-delay: 0s;
}

.contact-shapes .shape-2 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: 10%;
  animation-delay: 7s;
  background: var(--gradient-secondary);
}

.contact-shapes .shape-3 {
  width: 150px;
  height: 150px;
  bottom: 10%;
  left: 15%;
  animation-delay: 14s;
  background: var(--gradient-accent);
}

.contact-form-wrapper {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 25px;
  padding: 40px;
  backdrop-filter: blur(15px);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.08);
}

.contact-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-form-header p {
  color: var(--contrast-color);
  font-size: 1.1rem;
  opacity: 0.8;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  position: relative;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}


.input-wrapper .form-control {
  width: 100%;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 107, 53, 0.1);
  border-radius: 15px;
  color: var(--contrast-color);
  font-size: 1rem;
  font-family: var(--default-font);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.input-wrapper .form-control:focus {
  outline: none;
  border-color: var(--default-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.input-wrapper .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--default-font);
}

.form-actions {
  text-align: center;
  margin-top: 20px;
}

.submit-btn {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--heading-font);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

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

/* Contact Form Submit Button Styles */
.contact-form button[type="submit"] {
  background: var(--gradient-primary);
  color: white;
  border: none;
  padding: 18px 40px;
  border-radius: 15px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--heading-font);
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}

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

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

.contact-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
  background: var(--gradient-secondary);
}

.contact-form button[type="submit"]:active {
  transform: translateY(0);
}

.contact-form button[type="submit"]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.3);
}

/* Loading, Error, and Success Message Styles */
.contact-form .loading,
.contact-form .error-message,
.contact-form .sent-message {
  display: none;
  padding: 10px 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  font-weight: 500;
  text-align: center;
}

.contact-form .loading {
  background: rgba(255, 107, 53, 0.1);
  color: var(--default-color);
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.contact-form .error-message {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.contact-form .sent-message {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.contact-form .loading.show,
.contact-form .error-message.show,
.contact-form .sent-message.show {
  display: block;
}

.contact-info-wrapper {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 25px;
  padding: 40px;
  backdrop-filter: blur(15px);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.05);
  height: fit-content;
}

.contact-info-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-info-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-info-header p {
  color: var(--contrast-color);
  font-size: 1rem;
  opacity: 0.8;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.05), transparent);
  transition: left 0.5s ease;
}

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

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.2);
}

.method-icon {
  position: relative;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.icon-glow {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--gradient-primary);
  border-radius: 18px;
  opacity: 0.2;
  filter: blur(10px);
  animation: pulse 3s ease-in-out infinite;
}

.contact-method:hover .method-icon {
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.method-content {
  flex: 1;
}

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

.method-content p {
  color: var(--contrast-color);
  line-height: 1.6;
  margin-bottom: 15px;
  opacity: 0.9;
}

.method-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.method-tags .tag {
  background: rgba(255, 107, 53, 0.1);
  color: var(--default-color);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.method-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 15px;
  color: var(--contrast-color);
  font-size: 0.9rem;
  opacity: 0.8;
}

.method-note i {
  color: var(--default-color);
}

.method-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--default-color);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.method-link:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.3);
  transform: translateX(5px);
}

.method-link i {
  transition: transform 0.3s ease;
}

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

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.contact-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-grid" width="15" height="15" patternUnits="userSpaceOnUse"><path d="M 15 0 L 0 0 0 15" fill="none" stroke="rgba(255,107,53,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-grid)"/></svg>');
  opacity: 0.3;
  animation: float 25s ease-in-out infinite;
}

.contact-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(0, 212, 255, 0.08) 0%, transparent 60%);
  animation: pulse 10s ease-in-out infinite;
}

.contact-form-wrapper {
  background: var(--gradient-dark);
  border: 2px solid var(--accent-color);
  border-radius: 25px;
  padding: 50px;
  backdrop-filter: blur(15px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
  position: relative;
  z-index: 2;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-form-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.contact-form-header p {
  color: var(--contrast-color);
  font-size: 1.1rem;
  opacity: 0.8;
}

.contact-form {
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: var(--contrast-color);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.input-wrapper {
  position: relative;
}


.contact-form .form-control {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 15px;
  color: var(--contrast-color);
  padding: 18px 20px;
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  width: 100%;
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--default-color);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
  color: var(--contrast-color);
  outline: none;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.form-actions {
  text-align: center;
  margin-top: 30px;
}

.submit-btn {
  background: var(--gradient-primary);
  color: var(--contrast-color);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
}

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

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

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.contact-form .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  color: var(--contrast-color);
  padding: 15px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--default-color);
  box-shadow: 0 0 0 0.2rem rgba(74, 144, 226, 0.25);
  color: var(--contrast-color);
}

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

.contact-info-wrapper {
  position: relative;
  z-index: 2;
}

.contact-info-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-info-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.contact-info-header p {
  color: var(--contrast-color);
  font-size: 1rem;
  opacity: 0.8;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-method {
  background: var(--gradient-dark);
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  padding: 25px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-method::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.1), transparent);
  transition: left 0.5s ease;
}

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

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
  border-color: var(--default-color);
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.method-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: white;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.method-content {
  flex: 1;
}

.method-content h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.method-content p {
  color: var(--contrast-color);
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 15px;
  opacity: 0.9;
}

.method-link {
  display: inline-flex;
  align-items: center;
  color: var(--default-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 25px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.method-link:hover {
  color: var(--contrast-color);
  background: var(--gradient-primary);
  transform: translateX(5px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.method-note {
  display: block;
  color: var(--contrast-color);
  font-size: 0.8rem;
  opacity: 0.7;
  margin-top: 8px;
  font-style: italic;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--gradient-dark);
  border: 2px solid var(--accent-color);
  border-radius: 15px;
  padding: 25px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.1);
}

.contact-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.5rem;
  color: white;
}

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

.contact-details p {
  color: var(--contrast-color);
  margin: 0;
  line-height: 1.4;
}

/* Testimonials Section */
.testimonial-card {
  background: var(--gradient-dark);
  border: 2px solid var(--accent-color);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
  border-color: var(--default-color);
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #fbbf24;
  font-size: 1.1rem;
}

.testimonial-text {
  color: var(--contrast-color);
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar i {
  font-size: 2.5rem;
  color: var(--default-color);
}

.author-info h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.author-info span {
  color: var(--contrast-color);
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 20px;
    margin: 30px 0;
  }
  
  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }
  
  .hero-btn-primary,
  .hero-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .hero-visual {
    height: 400px;
    margin-top: 40px;
  }
  
  .hero-orb {
    display: none;
  }
  
  .hero-card {
    position: relative;
    margin-bottom: 20px;
    max-width: 100%;
  }
  
  .card-1,
  .card-2,
  .card-3 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .contact-form-wrapper {
    padding: 30px 20px;
  }
  
  .contact-form-header h3 {
    font-size: 1.5rem;
  }
  
  .contact-method {
    flex-direction: column;
    text-align: center;
  }
  
  .method-icon {
    margin: 0 auto 15px;
  }
  
  .contact-info-header h3 {
    font-size: 1.5rem;
  }
  
  .contact-form button[type="submit"] {
    padding: 15px 30px;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .contact-form-wrapper {
    padding: 25px;
  }
  
  .contact-info-wrapper {
    padding: 25px;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .contact-form button[type="submit"] {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .contact-form-wrapper {
    padding: 20px;
  }
  
  .contact-info-wrapper {
    padding: 20px;
  }
}

#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(--accent-color);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

.footer .copyright {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
}

.about_elem {
  margin-bottom: 2rem;
}


.swiper-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    padding: 0 3%;
}

.swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.swiper-slide {
    width: 33.33%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.swiper-slide-active {
    opacity: 1;
}

.swiper-slide-next,
.swiper-slide-prev {
    opacity: 0.5;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 50%;
    font-size: 24px;
    z-index: 10;
    cursor: pointer;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


.testimonial-img {
  width: 100%;
  max-width: 350px;
  max-height: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.growth {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(0, 212, 255, 0.8)), url('assets/img/main.jpg');
  background-size: cover;
  background-position: center;
  color: var(--contrast-color);
  padding: 100px 0;
}

/*--------------------------------------------------------------
# Newsletter Styles
--------------------------------------------------------------*/

.newsletter-wrapper {
  padding: 60px 0;
  position: relative;
}

.newsletter-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 212, 255, 0.05));
  border-radius: 20px;
  padding: 50px 40px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

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

.newsletter-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(255, 107, 53, 0.1) 0%, 
    rgba(0, 212, 255, 0.05) 50%, 
    rgba(255, 107, 53, 0.1) 100%);
  border-radius: 20px;
}

.newsletter-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
  border-radius: 20px;
}

.newsletter-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

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

.newsletter-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: white;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
  transition: all 0.3s ease;
}

.newsletter-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.newsletter-icon-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: var(--gradient-primary);
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(20px);
  animation: pulse 2s infinite;
}

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

.newsletter-text h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.newsletter-text p {
  font-size: 1.1rem;
  color: var(--contrast-color);
  opacity: 0.8;
  margin-bottom: 40px;
  line-height: 1.6;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input-container {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.newsletter-input-wrapper {
  position: relative;
  flex: 1;
}


.newsletter-input {
  width: 100%;
  padding: 18px 20px;
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--contrast-color);
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--default-color);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-button {
  background: var(--gradient-primary);
  border: none;
  border-radius: 50px;
  padding: 18px 35px;
  color: white;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
  white-space: nowrap;
}

.newsletter-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
  background: var(--gradient-secondary);
}

.newsletter-button:active {
  transform: translateY(0);
}

.button-text {
  font-weight: 600;
}

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

.newsletter-button:hover .button-icon {
  transform: translateX(3px);
}

.newsletter-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.newsletter-privacy i {
  color: var(--default-color);
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .newsletter-container {
    padding: 40px 25px;
    margin: 0 15px;
  }
  
  .newsletter-text h3 {
    font-size: 2rem;
  }
  
  .newsletter-input-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .newsletter-button {
    width: 100%;
    justify-content: center;
  }
  
  .newsletter-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
}

.lead  {
  color: var(--contrast-color);
  font-weight: 500;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/*--------------------------------------------------------------
# Legal Links Styles
--------------------------------------------------------------*/

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-legal p {
  color: var(--contrast-color);
  font-size: 14px;
  margin: 0;
  opacity: 0.8;
}

.legal-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.legal-links a {
  color: var(--default-color);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.legal-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.legal-links a:hover {
  color: var(--contrast-color);
  background: var(--gradient-primary);
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.legal-links a:hover::before {
  left: 100%;
}

.footer-mission {
  text-align: right;
}

.footer-mission p {
  color: var(--contrast-color);
  font-size: 14px;
  margin: 0;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.footer-mission i {
  color: var(--default-color);
  font-size: 16px;
}

/* Responsive Design for Legal Links */
@media (max-width: 768px) {
  .footer-legal {
    text-align: center;
    margin-bottom: 20px;
  }
  
  .legal-links {
    justify-content: center;
    gap: 15px;
  }
  
  .legal-links a {
    font-size: 13px;
    padding: 6px 12px;
  }
  
  .footer-mission {
    text-align: center;
  }
  
  .footer-mission p {
    justify-content: center;
  }
}

.footer-bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  position: relative;
  z-index: 1;
  background: rgba(10, 14, 39, 0.5);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.footer-copyright {
  margin: 0;
}

.footer-copyright p {
  margin: 0;
  color: var(--default-color);
  opacity: 0.8;
  font-size: 14px;
}

.footer-copyright strong {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

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

.footer-legal-links a {
  color: var(--default-color);
  opacity: 0.8;
  text-decoration: none;
  font-size: 13px;
  transition: all 0.3s ease;
  padding: 5px 10px;
  border-radius: 5px;
}

.footer-legal-links a:hover {
  color: var(--heading-color);
  opacity: 1;
  background: rgba(0, 212, 255, 0.1);
}

.footer-legal-links .separator {
  color: var(--default-color);
  opacity: 0.3;
}

.footer-company-details {
  margin: 0;
}

.footer-company-details p {
  margin: 0;
  color: var(--default-color);
  opacity: 0.7;
  font-size: 12px;
  line-height: 1.6;
}

.footer-company-details strong {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

@media (max-width: 768px) {
  .footer-top {
    padding: 60px 0 40px;
  }
  
  .footer-bottom-content {
    gap: 15px;
  }
  
  .footer-legal-links {
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-legal-links .separator {
    display: none;
  }
  
  .footer-company-details p {
    font-size: 11px;
  }
}

/*--------------------------------------------------------------
# Pricing Cards Styles
--------------------------------------------------------------*/
.pricing-card {
  background: var(--surface-color);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
  border-color: var(--accent-color);
}

.pricing-card.featured {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, var(--surface-color), rgba(0, 212, 255, 0.1));
  position: relative;
}

.pricing-card.featured .pricing-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--gradient-primary);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
}

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

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

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

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

.pricing-savings {
  color: var(--accent-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.5rem;
}

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

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--default-color);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.pricing-card .btn {
  margin-top: auto;
}

/*--------------------------------------------------------------
# Table Styles
--------------------------------------------------------------*/
.table-responsive {
  overflow-x: auto;
  border-radius: 1rem;
}

.table {
  width: 100%;
  margin-bottom: 0;
  border-collapse: separate;
  border-spacing: 0;
}

.table thead th {
  background: var(--surface-color);
  color: var(--heading-color);
  font-weight: 700;
  padding: 1.25rem;
  text-align: left;
  border-bottom: 2px solid var(--accent-color);
  font-family: var(--heading-font);
}

.table tbody tr {
  transition: all 0.3s ease;
}

.table tbody tr:hover {
  background: rgba(0, 212, 255, 0.1);
}

.table tbody td {
  padding: 1.25rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  color: var(--default-color);
  vertical-align: middle;
}

.table tbody tr:last-child td {
  border-bottom: none;
}

.table tbody td strong {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Company Info Cards
--------------------------------------------------------------*/
.company-info-card {
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
}

.company-info-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
  transform: translateY(-5px);
}

.company-info-card h4 {
  color: var(--heading-color);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.company-info-card h4 i {
  color: var(--accent-color);
  font-size: 1.3rem;
}

.company-info-card p {
  color: var(--default-color);
  margin: 0;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Help Cards
--------------------------------------------------------------*/
.help-card {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.help-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
  transform: translateY(-5px);
}

.help-card i {
  font-size: 3rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
}

.help-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.help-card p {
  color: var(--default-color);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.help-card .btn-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.help-card .btn-link:hover {
  color: var(--heading-color);
  gap: 0.75rem;
}

/*--------------------------------------------------------------
# Info Cards
--------------------------------------------------------------*/
.info-card {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
  height: 100%;
}

.info-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
  transform: translateY(-5px);
}

.info-card .info-icon {
  margin-bottom: 1.5rem;
}

.info-card h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.info-card p {
  color: var(--default-color);
  margin-bottom: 1.5rem;
}

.info-card .btn {
  margin-top: auto;
}

/*--------------------------------------------------------------
# Contact Info Cards
--------------------------------------------------------------*/
.contact-info-card {
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
}

.contact-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(0, 212, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.contact-info-icon i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.contact-info-card h4 {
  color: var(--heading-color);
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.contact-info-card p {
  color: var(--default-color);
  margin: 0;
}

/*--------------------------------------------------------------
# Footer Company Info
--------------------------------------------------------------*/
.footer-company-info p {
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

.footer-company-info strong {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Responsive adjustments for new elements */
@media (max-width: 768px) {
  .pricing-card {
    margin-bottom: 2rem;
  }
  
  .table {
    font-size: 0.9rem;
  }
  
  .table thead th,
  .table tbody td {
    padding: 0.75rem;
  }
  
  .company-info-card,
  .help-card,
  .info-card {
    margin-bottom: 1.5rem;
  }
  
  .footer-company-info {
    text-align: center;
    margin-top: 1rem;
  }
}

/*--------------------------------------------------------------
# New Hero Section Styles
--------------------------------------------------------------*/
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s ease-in-out infinite;
}

.hero-shape.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--gradient-primary);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.hero-shape.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--gradient-secondary);
  bottom: 20%;
  left: 5%;
  animation-delay: 5s;
}

.hero-shape.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--accent-color);
  top: 50%;
  right: 20%;
  animation-delay: 10s;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.badge-icon {
  color: var(--accent-color);
  font-size: 18px;
}

.badge-text {
  color: var(--default-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
  font-family: var(--heading-font);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--default-color);
  opacity: 0.8;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 25px 0;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--default-color);
}

.hero-feature i {
  color: var(--accent-color);
  font-size: 18px;
}

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.hero-code-window {
  background: rgba(26, 31, 53, 0.9);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 107, 53, 0.2);
  backdrop-filter: blur(10px);
}

.code-window-header {
  background: rgba(10, 14, 39, 0.8);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.code-dots {
  display: flex;
  gap: 8px;
}

.code-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.dot-red {
  background: #ff5f56;
}

.dot-yellow {
  background: #ffbd2e;
}

.dot-green {
  background: #27c93f;
}

.code-title {
  color: var(--default-color);
  font-size: 13px;
  opacity: 0.7;
  font-family: 'Courier New', monospace;
}

.code-content {
  padding: 25px;
  font-family: 'Courier New', monospace;
  font-size: 14px;
  line-height: 1.8;
}

.code-line {
  margin-bottom: 8px;
}

.code-keyword {
  color: #ff6b35;
}

.code-variable {
  color: #00d4ff;
}

.code-string {
  color: #ffc107;
}

.code-function {
  color: #00d4ff;
}

.code-property {
  color: #ff6b35;
}

.code-comment {
  color: #6c757d;
  font-style: italic;
}

.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 12px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  animation: float-element 6s ease-in-out infinite;
}

.floating-element i {
  color: var(--accent-color);
  font-size: 20px;
}

.floating-element span {
  color: var(--default-color);
  font-size: 13px;
  font-weight: 600;
}

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

.floating-element.element-2 {
  bottom: 20%;
  right: 5%;
  animation-delay: 2s;
}

.floating-element.element-3 {
  top: 50%;
  right: -5%;
  animation-delay: 4s;
}

@keyframes float-element {
  0%, 100% {
    transform: translateY(0) translateX(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-20px) translateX(10px);
    opacity: 1;
  }
}

/*--------------------------------------------------------------
# New Courses Section Styles
--------------------------------------------------------------*/
.courses-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.courses-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="courses-grid" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 30 0 L 0 0 0 30" fill="none" stroke="rgba(0,212,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23courses-grid)"/></svg>');
  opacity: 0.5;
}

.course-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.course-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.course-card.featured {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, var(--surface-color), rgba(255, 107, 53, 0.05));
}

.course-card-header {
  padding: 30px 30px 20px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 212, 255, 0.1));
  position: relative;
}

.course-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

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

.course-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-primary);
  color: var(--contrast-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.course-card-body {
  padding: 25px 30px;
  flex-grow: 1;
}

.course-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-family: var(--heading-font);
}

.course-subtitle {
  color: var(--default-color);
  opacity: 0.8;
  font-size: 14px;
  margin-bottom: 20px;
}

.course-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--default-color);
  opacity: 0.8;
  font-size: 13px;
}

.meta-item i {
  color: var(--accent-color);
  font-size: 14px;
}

.course-content h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

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

.course-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--default-color);
  font-size: 14px;
  line-height: 1.6;
}

.course-features li i {
  color: var(--accent-color);
  font-size: 16px;
  margin-top: 2px;
  flex-shrink: 0;
}

.course-footer {
  padding: 20px 30px;
  background: rgba(10, 14, 39, 0.5);
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.course-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.price-label {
  font-size: 12px;
  color: var(--default-color);
  opacity: 0.7;
  text-transform: uppercase;
}

.price-amount {
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

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

/*--------------------------------------------------------------
# New Pricing Section Styles
--------------------------------------------------------------*/
.pricing-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.pricing-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.pricing-card-modern {
  background: var(--surface-color);
  border-radius: 24px;
  border: 2px solid rgba(255, 107, 53, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.pricing-card-modern:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 25px 50px rgba(255, 107, 53, 0.3);
}

.pricing-card-modern.featured {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, var(--surface-color), rgba(255, 107, 53, 0.1));
  transform: scale(1.05);
}

.pricing-card-modern.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-badge-modern {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-primary);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  z-index: 2;
}

.pricing-card-top {
  padding: 40px 30px 30px;
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(0, 212, 255, 0.05));
}

.pricing-plan-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

.pricing-price-modern {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 15px;
}

.price-currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
}

.price-value {
  font-size: 56px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  font-family: var(--heading-font);
}

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

.pricing-savings-modern {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.15);
  padding: 10px 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 600;
}

.pricing-savings-modern i {
  font-size: 16px;
}

.pricing-description {
  color: var(--default-color);
  opacity: 0.8;
  font-size: 14px;
}

.pricing-card-body {
  padding: 30px;
  flex-grow: 1;
}

.pricing-features-modern {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features-modern li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
}

.pricing-features-modern li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-card-footer {
  padding: 25px 30px;
  background: rgba(10, 14, 39, 0.5);
  border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.btn-primary-modern {
  background: var(--gradient-primary);
  color: var(--contrast-color);
  border: none;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
  text-decoration: none;
  display: block;
  text-align: center;
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
  color: var(--contrast-color);
}

.btn-outline-modern {
  background: transparent;
  color: var(--default-color);
  border: 2px solid rgba(255, 107, 53, 0.3);
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
  text-align: center;
}

.btn-outline-modern:hover {
  border-color: var(--accent-color);
  background: rgba(255, 107, 53, 0.1);
  color: var(--heading-color);
}

.pricing-guarantee {
  background: rgba(255, 107, 53, 0.1);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 16px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto;
}

.guarantee-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.guarantee-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
  font-family: var(--heading-font);
}

.guarantee-content p {
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
  font-size: 14px;
}

/*--------------------------------------------------------------
# New Testimonials Section Styles
--------------------------------------------------------------*/
.testimonials-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.testimonials-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="testimonials-grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="rgba(0,212,255,0.03)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23testimonials-grid)"/></svg>');
  opacity: 0.4;
}

.testimonial-card-modern {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  border: 2px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

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

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.testimonial-rating-modern {
  display: flex;
  align-items: center;
  gap: 5px;
}

.testimonial-rating-modern i {
  color: #ffc107;
  font-size: 16px;
}

.rating-text {
  color: var(--default-color);
  font-weight: 700;
  font-size: 14px;
  margin-left: 5px;
}

.testimonial-quote-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-quote-icon i {
  font-size: 20px;
  color: var(--accent-color);
}

.testimonial-text-modern {
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-author-modern {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.author-avatar-modern {
  flex-shrink: 0;
}

.avatar-circle {
  width: 55px;
  height: 55px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--contrast-color);
  font-family: var(--heading-font);
}

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

.author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
  font-family: var(--heading-font);
}

.author-role {
  font-size: 14px;
  color: var(--default-color);
  opacity: 0.9;
  margin-bottom: 4px;
}

.author-location {
  font-size: 12px;
  color: var(--default-color);
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 5px;
}

.testimonial-course-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--accent-color);
  font-weight: 600;
}

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

.testimonials-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.stat-item-modern {
  text-align: center;
}

.stat-number-modern {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--heading-font);
}

.stat-label-modern {
  font-size: 14px;
  color: var(--default-color);
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero-stats {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .hero-code-window {
    margin-top: 30px;
  }
  
  .course-card.featured {
    transform: scale(1);
  }
  
  .pricing-card-modern.featured {
    transform: scale(1);
  }
  
  .testimonials-stats {
    gap: 30px;
  }
  
  .stat-number-modern {
    font-size: 2rem;
  }
}

/*--------------------------------------------------------------
# About Page Styles
--------------------------------------------------------------*/
.about-hero {
  padding: 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
  min-height: 75vh;
  display: flex;
  align-items: center;
}

.about-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.about-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
}

.about-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="about-hero-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,107,53,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23about-hero-grid)"/></svg>');
  opacity: 0.4;
}

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

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.about-hero-badge i {
  color: var(--accent-color);
  font-size: 18px;
}

.about-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.about-hero-description {
  font-size: 1.2rem;
  color: var(--default-color);
  margin-bottom: 40px;
  line-height: 1.6;
}

.about-hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.about-stat {
  text-align: left;
}

.about-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
  font-family: var(--heading-font);
}

.about-stat-label {
  font-size: 0.9rem;
  color: var(--default-color);
  opacity: 0.8;
}

.about-hero-visual {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.about-visual-card {
  background: rgba(26, 31, 53, 0.9);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 107, 53, 0.2);
  backdrop-filter: blur(10px);
}

.visual-card-header {
  background: rgba(10, 14, 39, 0.8);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.card-dots {
  display: flex;
  gap: 8px;
}

.visual-card-content {
  padding: 40px;
  text-align: center;
}

.visual-icon-large {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.visual-icon-large i {
  font-size: 50px;
  color: var(--contrast-color);
}

.visual-card-content h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.visual-card-content p {
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.6;
}

.mission-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  border: 2px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.mission-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.mission-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

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

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

.mission-card p {
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.7;
}

.step-card-modern {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 40px;
  border: 2px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.step-card-modern:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.step-card-modern.featured-step {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, var(--surface-color), rgba(255, 107, 53, 0.05));
}

.step-badge-modern {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-primary);
  color: var(--contrast-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.step-number-modern {
  font-size: 4rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  font-family: var(--heading-font);
  opacity: 0.3;
}

.step-icon-modern {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.step-icon-modern i {
  font-size: 40px;
  color: var(--contrast-color);
}

.step-card-modern h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.step-card-modern p {
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 20px;
}

.step-features-modern {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.step-feature-tag {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--accent-color);
  font-weight: 600;
}

.stat-card-modern {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  border: 2px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

.stat-card-modern:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.stat-icon-modern {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.stat-icon-modern i {
  font-size: 35px;
  color: var(--contrast-color);
}

.stat-number-modern {
  font-size: 3rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.stat-label-modern {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-family: var(--heading-font);
}

.stat-description-modern {
  font-size: 13px;
  color: var(--default-color);
  opacity: 0.7;
}

.company-info-card-modern {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 30px;
  border: 2px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.company-info-card-modern:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.company-info-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.company-info-icon i {
  font-size: 28px;
  color: var(--contrast-color);
}

.company-info-card-modern h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
  font-family: var(--heading-font);
}

.company-info-card-modern p {
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.7;
  margin: 0;
}

/*--------------------------------------------------------------
# Contact Page Styles
--------------------------------------------------------------*/
.contact-hero {
  padding: 80px 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.contact-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.contact-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.contact-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-hero-grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="rgba(0,212,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-hero-grid)"/></svg>');
  opacity: 0.4;
}

.contact-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.contact-hero-description {
  font-size: 1.2rem;
  color: var(--default-color);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-modern {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 40px;
  border: 2px solid rgba(255, 107, 53, 0.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-form-header-modern {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.contact-form-header-modern h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-family: var(--heading-font);
  display: flex;
  align-items: center;
}

.contact-form-header-modern h3 i {
  color: var(--accent-color);
  margin-right: 10px;
}

.contact-form-header-modern p {
  color: var(--default-color);
  opacity: 0.8;
  font-size: 15px;
}

.contact-form-new {
  margin-top: 20px;
}

.form-row-modern {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group-modern {
  margin-bottom: 25px;
}

.form-group-modern label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 14px;
  font-family: var(--heading-font);
}

.form-group-modern label i {
  color: var(--accent-color);
  font-size: 16px;
}

.form-control-modern {
  width: 100%;
  background: rgba(10, 14, 39, 0.5);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  color: var(--default-color);
  padding: 16px 20px;
  font-size: 15px;
  transition: all 0.3s ease;
  font-family: var(--default-font);
}

.form-control-modern:focus {
  background: rgba(10, 14, 39, 0.7);
  border-color: var(--accent-color);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
  color: var(--default-color);
  outline: none;
}

.form-control-modern::placeholder {
  color: rgba(232, 232, 232, 0.5);
}

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

/* Phone Input Styles */
.phone-input-wrapper {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.country-code-select {
  flex-shrink: 0;
  width: 140px;
  background: rgba(10, 14, 39, 0.5);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  color: var(--default-color);
  padding: 16px 12px;
  font-size: 15px;
  font-family: var(--default-font);
  cursor: pointer;
  transition: all 0.3s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ff6b35' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 12px;
  padding-right: 35px;
}

.country-code-select:focus {
  background: rgba(10, 14, 39, 0.7);
  border-color: var(--accent-color);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.2);
  outline: none;
}

.country-code-select option {
  background: var(--surface-color);
  color: var(--default-color);
  padding: 10px;
}

.phone-input {
  flex: 1;
}

.phone-hint {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  color: rgba(232, 232, 232, 0.6);
  font-style: italic;
}

@media (max-width: 576px) {
  .phone-input-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .country-code-select {
    width: 100%;
  }
}

.form-actions-modern {
  margin-top: 30px;
}

.loading-modern,
.error-message-modern,
.sent-message-modern {
  display: none;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  font-size: 14px;
}

.loading-modern {
  background: rgba(0, 212, 255, 0.1);
  color: var(--heading-color);
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.error-message-modern {
  background: rgba(255, 71, 87, 0.1);
  color: #ff4757;
  border: 1px solid rgba(255, 71, 87, 0.3);
}

.sent-message-modern {
  background: rgba(5, 150, 82, 0.1);
  color: #059652;
  border: 1px solid rgba(5, 150, 82, 0.3);
}

.btn-submit-modern {
  background: var(--gradient-primary);
  color: var(--contrast-color);
  border: none;
  padding: 18px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  width: 100%;
  justify-content: center;
}

.btn-submit-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.contact-info-modern {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-card-modern {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 25px;
  border: 2px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-info-card-modern:hover {
  transform: translateY(-3px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.contact-info-icon-modern {
  width: 55px;
  height: 55px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-info-content {
  flex-grow: 1;
}

.contact-info-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.contact-info-content p {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.7;
  margin-bottom: 5px;
}

.contact-info-content p a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info-content p a:hover {
  color: var(--heading-color);
}

.contact-info-note {
  display: block;
  font-size: 12px;
  color: var(--default-color);
  opacity: 0.7;
  margin-top: 5px;
}

.help-card-modern {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  border: 2px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.help-card-modern:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.help-icon-modern {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.help-icon-modern i {
  font-size: 35px;
  color: var(--contrast-color);
}

.help-card-modern h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.help-card-modern p {
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 20px;
}

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

.help-link-modern:hover {
  color: var(--heading-color);
  gap: 12px;
}

.help-link-modern i {
  transition: transform 0.3s ease;
}

.help-link-modern:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# FAQ Page Styles
--------------------------------------------------------------*/
.faq-hero {
  padding: 80px 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.faq-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.faq-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
}

.faq-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="faq-hero-grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="rgba(255,107,53,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23faq-hero-grid)"/></svg>');
  opacity: 0.4;
}

.faq-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.faq-hero-description {
  font-size: 1.2rem;
  color: var(--default-color);
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.faq-accordion-modern {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item-modern {
  background: var(--surface-color);
  border-radius: 16px;
  border: 2px solid rgba(255, 107, 53, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-modern:hover {
  border-color: rgba(255, 107, 53, 0.3);
}

.faq-item-modern.active {
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.faq-header-modern {
  padding: 25px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-header-modern:hover {
  background: rgba(255, 107, 53, 0.05);
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-grow: 1;
}

.faq-question i {
  color: var(--accent-color);
  font-size: 24px;
  flex-shrink: 0;
}

.faq-question h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  font-family: var(--heading-font);
  line-height: 1.4;
}

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

.faq-item-modern.active .faq-toggle-icon {
  transform: rotate(180deg);
}

.faq-content-modern {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 30px;
}

.faq-item-modern.active .faq-content-modern {
  max-height: 500px;
  padding: 0 30px 25px;
}

.faq-content-modern p {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
  margin: 0;
  padding-top: 15px;
}

.quick-link-card-modern {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  border: 2px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  text-align: center;
}

.quick-link-card-modern:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.quick-link-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.quick-link-icon i {
  font-size: 35px;
  color: var(--contrast-color);
}

.quick-link-card-modern h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.quick-link-card-modern p {
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.7;
  margin-bottom: 20px;
}

.quick-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 12px 24px;
  border-radius: 10px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.quick-link-btn:hover {
  background: rgba(255, 107, 53, 0.2);
  color: var(--heading-color);
  gap: 12px;
}

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

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

@media (max-width: 768px) {
  .about-hero-title,
  .contact-hero-title,
  .faq-hero-title {
    font-size: 2.5rem;
  }
  
  .about-hero-stats {
    gap: 25px;
  }
  
  .form-row-modern {
    grid-template-columns: 1fr;
  }
  
  .faq-question h4 {
    font-size: 16px;
  }
  
  .step-card-modern,
  .mission-card,
  .stat-card-modern {
    margin-bottom: 2rem;
  }
}

/*--------------------------------------------------------------
# Privacy Policy Page Styles
--------------------------------------------------------------*/
.privacy-hero,
.cookie-hero,
.terms-hero,
.thanks-hero {
  padding: 80px 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.privacy-hero-background,
.cookie-hero-background,
.terms-hero-background,
.thanks-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.privacy-hero-gradient,
.cookie-hero-gradient,
.terms-hero-gradient,
.thanks-hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.privacy-hero-pattern,
.cookie-hero-pattern,
.terms-hero-pattern,
.thanks-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="policy-hero-grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="rgba(0,212,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23policy-hero-grid)"/></svg>');
  opacity: 0.4;
}

.privacy-hero-title,
.cookie-hero-title,
.terms-hero-title,
.thanks-hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.privacy-hero-description,
.cookie-hero-description,
.terms-hero-description,
.thanks-hero-description {
  font-size: 1.2rem;
  color: var(--default-color);
  margin-bottom: 20px;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.privacy-hero-updated,
.cookie-hero-updated,
.terms-hero-updated {
  font-size: 0.95rem;
  color: var(--default-color);
  opacity: 0.7;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.privacy-content-modern,
.cookie-content-modern,
.terms-content-modern {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.privacy-section-modern,
.cookie-section-modern,
.terms-section-modern {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  border: 2px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
}

.privacy-section-modern:hover,
.cookie-section-modern:hover,
.terms-section-modern:hover {
  border-color: rgba(255, 107, 53, 0.3);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.1);
}

.privacy-section-header,
.cookie-section-header,
.terms-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.privacy-section-icon,
.cookie-section-icon,
.terms-section-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.privacy-section-icon i,
.cookie-section-icon i,
.terms-section-icon i {
  font-size: 28px;
  color: var(--contrast-color);
}

.privacy-section-header h3,
.cookie-section-header h3,
.terms-section-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  font-family: var(--heading-font);
}

.privacy-section-content,
.cookie-section-content,
.terms-section-content {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
}

.privacy-section-content p,
.cookie-section-content p,
.terms-section-content p {
  margin-bottom: 15px;
}

.privacy-section-content p:last-child,
.cookie-section-content p:last-child,
.terms-section-content p:last-child {
  margin-bottom: 0;
}

.privacy-contact-box,
.cookie-contact-box,
.terms-contact-box {
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.privacy-contact-box i,
.cookie-contact-box i,
.terms-contact-box i {
  color: var(--accent-color);
  font-size: 20px;
}

.privacy-contact-box strong,
.cookie-contact-box strong,
.terms-contact-box strong {
  color: var(--heading-color);
  margin-right: 8px;
}

.privacy-contact-box a,
.cookie-contact-box a,
.terms-contact-box a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.privacy-contact-box a:hover,
.cookie-contact-box a:hover,
.terms-contact-box a:hover {
  color: var(--heading-color);
}

.cookie-list-modern {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.cookie-list-modern li {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--default-color);
  opacity: 0.9;
}

.cookie-list-modern li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.cookie-types-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.cookie-type-card {
  background: rgba(10, 14, 39, 0.5);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 16px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.cookie-type-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
}

.cookie-type-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.cookie-type-icon i {
  font-size: 28px;
  color: var(--contrast-color);
}

.cookie-type-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.cookie-type-card p {
  font-size: 14px;
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

/*--------------------------------------------------------------
# Thanks Page Styles
--------------------------------------------------------------*/
.thanks-icon-large {
  width: 120px;
  height: 120px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  animation: scaleIn 0.5s ease-out;
}

.thanks-icon-large i {
  font-size: 60px;
  color: var(--contrast-color);
}

@keyframes scaleIn {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thanks-content-modern {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.thanks-message-box {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 40px;
  border: 2px solid rgba(255, 107, 53, 0.1);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.thanks-message-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.thanks-message-icon i {
  font-size: 40px;
  color: var(--contrast-color);
}

.thanks-message-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

.thanks-message-box p {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 15px;
}

.thanks-message-box p:last-child {
  margin-bottom: 0;
}

.thanks-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-thanks-primary,
.btn-thanks-secondary {
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-thanks-primary {
  background: var(--gradient-primary);
  color: var(--contrast-color);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.btn-thanks-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.btn-thanks-secondary {
  background: transparent;
  color: var(--accent-color);
  border-color: rgba(255, 107, 53, 0.3);
}

.btn-thanks-secondary:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.thanks-info-box {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 35px;
  border: 2px solid rgba(255, 107, 53, 0.1);
}

.thanks-info-box h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-family: var(--heading-font);
  display: flex;
  align-items: center;
  gap: 10px;
}

.thanks-info-box h4 i {
  color: var(--accent-color);
}

.thanks-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.thanks-steps li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.thanks-steps .step-number {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: var(--contrast-color);
  flex-shrink: 0;
  font-family: var(--heading-font);
}

.thanks-steps .step-content {
  flex-grow: 1;
}

.thanks-steps .step-content strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-family: var(--heading-font);
}

.thanks-steps .step-content p {
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .privacy-hero-title,
  .cookie-hero-title,
  .terms-hero-title,
  .thanks-hero-title {
    font-size: 2.5rem;
  }
  
  .privacy-section-modern,
  .cookie-section-modern,
  .terms-section-modern {
    padding: 25px;
  }
  
  .cookie-types-modern {
    grid-template-columns: 1fr;
  }
  
  .thanks-actions {
    flex-direction: column;
  }
  
  .btn-thanks-primary,
  .btn-thanks-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .thanks-steps li {
    flex-direction: column;
    text-align: center;
  }
  
  .thanks-steps .step-number {
    margin: 0 auto;
  }
}

/*--------------------------------------------------------------
# Renamed Classes - New Names
--------------------------------------------------------------*/
/* Content Block (renamed from .section) */
.content-block {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

.content-block.alternate-bg {
  background-color: var(--surface-color);
}

/* Content Label (renamed from .section-badge) */
.content-label {
  display: inline-flex;
  align-items: center;
  background: var(--gradient-primary);
  color: white;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Content Heading (renamed from .section-title) */
.content-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* Content Intro (renamed from .section-description) */
.content-intro {
  font-size: 1.1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.6;
}

/* Banner Block (renamed from .hero) */
.banner-block {
  padding: 0;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.banner-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,107,53,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.banner-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(0, 212, 255, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 50% 50%, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

.banner-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.banner-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: float 20s ease-in-out infinite;
}

.banner-shape.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--gradient-primary);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.banner-shape.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--gradient-secondary);
  bottom: 20%;
  left: 15%;
  animation-delay: 5s;
}

.banner-shape.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--gradient-accent);
  top: 50%;
  right: 30%;
  animation-delay: 10s;
}

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

.banner-label {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 107, 53, 0.2);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  animation: fadeInUp 1s ease-out;
}

.banner-label .label-icon {
  margin-right: 8px;
}

.banner-heading {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.banner-intro {
  font-size: 1.2rem;
  color: var(--contrast-color);
  margin-bottom: 40px;
  line-height: 1.6;
}

.banner-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.banner-stat {
  text-align: left;
}

.banner-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
  font-family: var(--heading-font);
}

.banner-stat .stat-label {
  font-size: 0.9rem;
  color: var(--contrast-color);
  opacity: 0.8;
}

.banner-features {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.banner-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--contrast-color);
  font-size: 14px;
}

.banner-feature i {
  color: var(--accent-color);
  font-size: 18px;
}

.banner-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.banner-btn-primary {
  background: var(--gradient-primary);
  color: var(--contrast-color);
  border: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.banner-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
}

.banner-btn-secondary {
  background: transparent;
  color: var(--contrast-color);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.banner-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--contrast-color);
}

.banner-visual {
  position: relative;
  z-index: 2;
}

.banner-code-window {
  background: rgba(10, 14, 39, 0.95);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 107, 53, 0.2);
  backdrop-filter: blur(10px);
}

/* Learning Card (renamed from .course-card) */
.learning-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 0;
  border: 2px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.learning-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.learning-card.highlighted {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, var(--surface-color), rgba(255, 107, 53, 0.05));
  transform: scale(1.05);
}

.learning-card-header {
  padding: 25px;
  background: rgba(10, 14, 39, 0.5);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.learning-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.learning-badge {
  background: var(--gradient-primary);
  color: var(--contrast-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.learning-card-body {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.learning-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
  font-family: var(--heading-font);
}

.learning-subtitle {
  color: var(--default-color);
  opacity: 0.8;
  margin-bottom: 20px;
  font-size: 14px;
}

.learning-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.learning-content {
  margin-bottom: 20px;
}

.learning-content h5 {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

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

.learning-features li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--default-color);
  opacity: 0.9;
  font-size: 14px;
}

.learning-features li i {
  color: var(--accent-color);
  margin-top: 2px;
  flex-shrink: 0;
}

.learning-footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.learning-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.learning-price .price-label {
  font-size: 12px;
  color: var(--default-color);
  opacity: 0.7;
}

.learning-price .price-amount {
  font-size: 24px;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--heading-font);
}

.learning-price .price-period {
  font-size: 12px;
  color: var(--default-color);
  opacity: 0.7;
}

/* Paths Background (renamed from .courses-background) */
.paths-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.paths-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="paths-grid" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M 30 0 L 0 0 0 30" fill="none" stroke="rgba(255,107,53,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23paths-grid)"/></svg>');
  opacity: 0.3;
}

/* Plan Card (renamed from .pricing-card-modern) */
.plan-card {
  background: var(--surface-color);
  border-radius: 24px;
  padding: 0;
  border: 2px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
}

.plan-card.highlighted {
  border-color: var(--accent-color);
  background: linear-gradient(135deg, var(--surface-color), rgba(255, 107, 53, 0.05));
  transform: scale(1.05);
}

.plan-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-primary);
  color: var(--contrast-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 5px;
}

.plan-card-top {
  padding: 35px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

.plan-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 15px;
}

.plan-price .price-currency {
  font-size: 20px;
  color: var(--default-color);
  opacity: 0.8;
}

.plan-price .price-value {
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--heading-font);
}

.plan-price .price-period {
  font-size: 16px;
  color: var(--default-color);
  opacity: 0.8;
}

.plan-savings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  padding: 10px 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  font-size: 13px;
  color: var(--accent-color);
  font-weight: 600;
}

.plan-description {
  color: var(--default-color);
  opacity: 0.8;
  font-size: 14px;
}

.plan-card-body {
  padding: 30px;
  flex-grow: 1;
}

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

.plan-features li {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--default-color);
  opacity: 0.9;
}

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

.plan-card-footer {
  padding: 25px 35px;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
}

/* Plans Background (renamed from .pricing-background) */
.plans-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.plans-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

/* Stories Block (renamed from .testimonials) */
.stories-block {
  position: relative;
}

.stories-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.stories-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stories-grid" width="25" height="25" patternUnits="userSpaceOnUse"><path d="M 25 0 L 0 0 0 25" fill="none" stroke="rgba(0,212,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23stories-grid)"/></svg>');
  opacity: 0.3;
}

.story-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 30px;
  border: 2px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.story-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.2);
}

.story-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.story-rating {
  display: flex;
  align-items: center;
  gap: 5px;
}

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

.story-rating .rating-text {
  margin-left: 8px;
  font-weight: 700;
  color: var(--heading-color);
  font-size: 14px;
}

.story-quote-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-quote-icon i {
  color: var(--accent-color);
  font-size: 20px;
}

.story-text {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.8;
  margin-bottom: 25px;
  flex-grow: 1;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.author-avatar {
  flex-shrink: 0;
}

.avatar-circle {
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 16px;
}

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

.author-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
  font-family: var(--heading-font);
}

.author-role {
  font-size: 14px;
  color: var(--default-color);
  opacity: 0.8;
  margin-bottom: 5px;
}

.author-location {
  font-size: 12px;
  color: var(--default-color);
  opacity: 0.7;
  display: flex;
  align-items: center;
  gap: 5px;
}

.story-course-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.2);
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 12px;
  color: var(--accent-color);
  font-weight: 600;
}

.stories-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.stories-stats .stat-item-modern {
  text-align: center;
}

.stories-stats .stat-number-modern {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-family: var(--heading-font);
}

.stories-stats .stat-label-modern {
  font-size: 14px;
  color: var(--default-color);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .banner-heading {
    font-size: 2.5rem;
  }
  
  .banner-stats {
    gap: 25px;
  }
  
  .content-heading {
    font-size: 2rem;
  }
  
  .learning-card.highlighted,
  .plan-card.highlighted {
    transform: scale(1);
  }
  
  .stories-stats {
    gap: 30px;
  }
}

/*--------------------------------------------------------------
# About Page Renamed Classes
--------------------------------------------------------------*/
/* Overview Block (renamed from .about-hero) */
.overview-block {
  padding: 0;
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
  min-height: 75vh;
  display: flex;
  align-items: center;
}

.overview-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.overview-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(0, 212, 255, 0.15) 0%, transparent 50%);
}

.overview-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="overview-grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(255,107,53,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23overview-grid)"/></svg>');
  opacity: 0.4;
}

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

.overview-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  margin-bottom: 25px;
  backdrop-filter: blur(10px);
}

.overview-heading {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.overview-intro {
  font-size: 1.2rem;
  color: var(--default-color);
  margin-bottom: 40px;
  line-height: 1.6;
}

.overview-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.overview-stat {
  text-align: left;
}

.overview-stat .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 5px;
  font-family: var(--heading-font);
}

.overview-stat .stat-label {
  font-size: 0.9rem;
  color: var(--default-color);
  opacity: 0.8;
}

.overview-visual {
  position: relative;
  z-index: 2;
}

.overview-card {
  background: rgba(26, 31, 53, 0.8);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}

.card-header {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 20px;
}

.card-content {
  text-align: center;
}

.card-icon-large {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.overview-card h3 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.overview-card p {
  color: var(--default-color);
  line-height: 1.6;
}

/* Value Card (renamed from .mission-card) */
.value-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.value-icon {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--accent-color), var(--heading-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.value-card h4 {
  font-size: 1.5rem;
  color: var(--heading-color);
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.value-card p {
  color: var(--default-color);
  line-height: 1.6;
  opacity: 0.9;
}

/* Process Card (renamed from .step-card-modern) */
.process-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.process-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.process-card.highlighted-process {
  background: linear-gradient(135deg, var(--surface-color), rgba(0, 212, 255, 0.1));
  border: 1px solid var(--heading-color);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
}

.process-number {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0, 212, 255, 0.1);
  line-height: 1;
}

.process-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-accent);
  color: var(--contrast-color);
  padding: 5px 15px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(255, 107, 53, 0.3);
}

.process-icon {
  font-size: 4rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  background: linear-gradient(45deg, var(--accent-color), var(--heading-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
}

.process-card h4 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
  font-family: var(--heading-font);
}

.process-card p {
  color: var(--default-color);
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.process-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
  position: relative;
  z-index: 1;
}

.process-tag {
  background: rgba(0, 212, 255, 0.1);
  color: var(--heading-color);
  padding: 8px 15px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
}

/* Achievement Card (renamed from .stat-card-modern) */
.achievement-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.achievement-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.achievement-icon {
  font-size: 3.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
  background: linear-gradient(45deg, var(--accent-color), var(--heading-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.achievement-number {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
  font-family: var(--heading-font);
}

.achievement-label {
  color: var(--default-color);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.achievement-description {
  color: var(--default-color);
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Legal Card (renamed from .company-info-card-modern) */
.legal-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.legal-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.legal-icon {
  font-size: 1.8rem;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.legal-card h4 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-family: var(--heading-font);
}

.legal-card p {
  color: var(--default-color);
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Mobile Menu - New Separate Component
--------------------------------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
}

.mobile-menu.active {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
}

.mobile-menu-content {
  position: relative;
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: var(--surface-color);
  box-shadow: 2px 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
  background: var(--gradient-dark);
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-menu-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.mobile-menu-logo h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
  font-family: var(--heading-font);
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--default-color);
  font-size: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--accent-color);
}

.mobile-menu-nav {
  flex: 1;
  padding: 20px 0;
  overflow-y: auto;
}

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

.mobile-menu-nav li {
  margin: 0;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 25px;
  color: var(--default-color);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
}

.mobile-menu-nav a:hover,
.mobile-menu-nav a.active {
  background: rgba(255, 107, 53, 0.1);
  border-left-color: var(--accent-color);
  color: var(--accent-color);
  padding-left: 30px;
}

.mobile-menu-nav a i {
  font-size: 20px;
  width: 24px;
  text-align: center;
}

.mobile-menu-footer {
  padding: 25px;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  background: rgba(10, 14, 39, 0.5);
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 24px;
  background: var(--gradient-primary);
  color: var(--contrast-color);
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.mobile-menu-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.4);
  color: var(--contrast-color);
}

.mobile-menu-cta i {
  font-size: 18px;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Mobile Menu Toggle Button */
@media (max-width: 1199px) {
  .mobile-menu-toggle {
    background: transparent;
    border: none;
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    padding: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .mobile-menu-toggle:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent-color);
  }

  .mobile-menu-toggle i {
    font-size: 24px;
  }
}

@media (min-width: 1200px) {
  .mobile-menu-toggle {
    display: none !important;
  }
}