.header-featured {
  position: sticky;
  top: 0;
  width: 100%;
  background: var(--surface-primary);
  box-shadow: 0 2px 12px rgba(var(--black-rgb), 0.08);
  z-index: 1000;
  transition: all 0.3s ease;
}
.header-featured .navbar {
  padding: 1rem 0;
  position: relative;
}
.header-featured .navbar-brand {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-700);
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
  z-index: 10004;
}
.header-featured .navbar-brand:hover {
  color: var(--primary-500);
}
.header-featured .brand-text {
  display: inline-block;
  letter-spacing: -0.5px;
}
.header-featured .menu-checkbox {
  display: none;
}
.header-featured .hamburger-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  cursor: pointer;
  position: relative;
  z-index: 10003;
  transition: transform 0.3s ease;
}
.header-featured .hamburger-line {
  width: 100%;
  height: 3px;
  background: #2c3850;
  border-radius: 3px;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform-origin: center;
}
.header-featured .menu-checkbox:checked ~ .hamburger-toggle {
  transform: rotate(0deg);
}
.header-featured
  .menu-checkbox:checked
  ~ .hamburger-toggle
  .hamburger-line:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.header-featured
  .menu-checkbox:checked
  ~ .hamburger-toggle
  .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}
.header-featured
  .menu-checkbox:checked
  ~ .hamburger-toggle
  .hamburger-line:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}
.header-featured .navbar-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header-featured .nav-item {
  list-style: none;
}
.header-featured .nav-link {
  color: var(--text-primary);
  font-size: var(--nav-font-size);
  font-weight: 500;
  padding: 0.5rem 0;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.header-featured .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-500);
  transition: width 0.3s ease;
}
.header-featured .nav-link:hover {
  color: var(--primary-500);
}
.header-featured .nav-link:hover::after {
  width: 100%;
}
.header-featured .header-decoration {
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.header-featured .decoration-circle {
  position: absolute;
  top: -30px;
  right: -50px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary-300) 20%, transparent);
  animation: float-v160 6s ease-in-out infinite;
}
.header-featured .decoration-line {
  position: absolute;
  bottom: 0;
  right: 60px;
  width: 3px;
  height: 40%;
  background: linear-gradient(to bottom, var(--primary-300), transparent);
  opacity: 0.4;
}
@keyframes float-v160 {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.05);
  }
}
.header-featured .navbar-backdrop {
  display: none;
}
@media (max-width: 1299.98px) {
  .header-featured .hamburger-toggle {
    display: flex;
  }
  .header-featured .navbar-backdrop {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(var(--black-rgb), 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: -1;
  }
  .header-featured .menu-checkbox:checked ~ .navbar-collapse .navbar-backdrop {
    opacity: 1;
    visibility: visible;
  }
  .header-featured .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--surface-primary);
    box-shadow: -4px 0 20px rgba(var(--black-rgb), 0.15);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10;
  }
  .header-featured .menu-checkbox:checked ~ .navbar-collapse {
    right: 0;
  }
  .header-featured .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: 0;
    position: relative;
    z-index: 10;
  }
  .header-featured .nav-item {
    width: 100%;
    border-bottom: 1px solid var(--neutral-100);
  }
  .header-featured .nav-link {
    display: block;
    padding: 1rem 0;
    font-size: var(--nav-font-size);
  }
  .header-featured .nav-link::after {
    display: none;
  }
  .header-featured .header-decoration {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .header-featured .navbar-brand {
    font-size: 1.125rem;
  }
  .header-featured .navbar-collapse {
    width: 260px;
  }
  .header-featured .navbar-nav {
    padding: 4rem 1.5rem 2rem;
  }
  .header-featured .nav-link {
    font-size: var(--nav-font-size);
  }
}
.header-featured .hamburger-toggle:focus-visible {
  outline: 2px solid var(--primary-500);
  outline-offset: 4px;
  border-radius: 4px;
}
.header-featured .nav-link:focus-visible {
  outline: 2px solid var(--primary-500);
  outline-offset: 4px;
  border-radius: 4px;
  color: var(--primary-500);
}
.header-featured .navbar-brand:focus-visible {
  outline: 2px solid var(--primary-500);
  outline-offset: 4px;
  border-radius: 4px;
}
.hero-pro {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--surface-primary) 0%,
    color-mix(in srgb, var(--primary-50) 50%, var(--surface-primary) 50%) 100%
  );
  padding-top: 80px;
  padding-bottom: 100px;
}
.hero-pro__bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      color-mix(in srgb, var(--primary-100) 30%, transparent) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 70%,
      color-mix(in srgb, var(--primary-100) 20%, transparent) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 0;
}
.hero-pro__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.hero-pro__blob--1 {
  width: 500px;
  height: 500px;
  background: var(--primary-300);
  top: -150px;
  right: -100px;
  animation: hero-pro-float 20s ease-in-out infinite;
}
.hero-pro__blob--2 {
  width: 400px;
  height: 400px;
  background: var(--primary-500);
  bottom: -100px;
  left: -50px;
  animation: hero-pro-float 15s ease-in-out infinite reverse;
}
@keyframes hero-pro-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}
.hero-pro .container {
  position: relative;
  z-index: 1;
}
.hero-pro__content {
  position: relative;
  z-index: 2;
}
.hero-pro__badge-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-pro__badge-dot {
  width: 12px;
  height: 12px;
  background: var(--primary-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary-500) 20%, transparent);
  animation: hero-pro-pulse 2s ease-in-out infinite;
}
@keyframes hero-pro-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}
.hero-pro__badge-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-500) 0%,
    color-mix(in srgb, var(--primary-300) 50%, transparent) 100%
  );
  border-radius: 2px;
}
.hero-pro__title {
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
  background: linear-gradient(
    135deg,
    var(--text-primary) 0%,
    color-mix(in srgb, var(--primary-700) 80%, var(--text-primary) 20%) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-pro__subtitle {
  color: var(--primary-700);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.hero-pro__description {
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 540px;
}
.hero-pro__icon-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-pro__icon-item {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-primary);
  border: 2px solid color-mix(in srgb, var(--primary-300) 40%, transparent);
  border-radius: 16px;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--primary-500) 10%, transparent);
  transition: all 0.3s ease;
}
.hero-pro__icon-item i {
  font-size: 24px;
  color: var(--primary-500);
  transition: all 0.3s ease;
}
.hero-pro__icon-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary-500);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--primary-500) 20%, transparent);
}
.hero-pro__icon-item:hover i {
  color: var(--primary-700);
  transform: scale(1.1);
}
.hero-pro__image-wrapper {
  position: relative;
  z-index: 2;
}
.hero-pro__shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.hero-pro__shape--circle {
  width: 300px;
  height: 300px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary-300) 20%, transparent),
    color-mix(in srgb, var(--primary-500) 15%, transparent)
  );
  border-radius: 50%;
  top: -40px;
  right: -40px;
  animation: hero-pro-rotate 30s linear infinite;
}
.hero-pro__shape--square {
  width: 200px;
  height: 200px;
  background: linear-gradient(
    45deg,
    color-mix(in srgb, var(--primary-500) 15%, transparent),
    color-mix(in srgb, var(--primary-700) 10%, transparent)
  );
  border-radius: 32px;
  bottom: -30px;
  left: -30px;
  transform: rotate(15deg);
  animation: hero-pro-rotate-reverse 25s linear infinite;
}
@keyframes hero-pro-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes hero-pro-rotate-reverse {
  0% {
    transform: rotate(15deg);
  }
  100% {
    transform: rotate(375deg);
  }
}
.hero-pro__image-container {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 20px 40px color-mix(in srgb, var(--primary-700) 15%, transparent),
    0 0 0 1px color-mix(in srgb, var(--primary-300) 30%, transparent);
  background: var(--surface-primary);
}
.hero-pro__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
.hero-pro__image-container:hover .hero-pro__image {
  transform: scale(1.05);
}
.hero-pro__float-icon {
  position: absolute;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-primary);
  border: 3px solid var(--primary-500);
  border-radius: 50%;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--primary-700) 20%, transparent);
  z-index: 3;
}
.hero-pro__float-icon i {
  font-size: 28px;
  color: var(--primary-500);
}
.hero-pro__float-icon--1 {
  top: 20%;
  left: -32px;
  animation: hero-pro-float-1 6s ease-in-out infinite;
}
.hero-pro__float-icon--2 {
  top: 60%;
  right: -32px;
  animation: hero-pro-float-2 7s ease-in-out infinite;
}
.hero-pro__float-icon--3 {
  bottom: 15%;
  left: 10%;
  animation: hero-pro-float-3 8s ease-in-out infinite;
}
@keyframes hero-pro-float-1 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}
@keyframes hero-pro-float-2 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(-10deg);
  }
}
@keyframes hero-pro-float-3 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(5deg);
  }
}
.hero-pro__wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in srgb, var(--primary-50) 30%, transparent) 100%
  );
  clip-path: polygon(0 50%, 100% 0%, 100% 100%, 0% 100%);
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 991.98px) {
  .hero-pro {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .hero-pro__title {
    font-size: 2.5rem;
  }
  .hero-pro__subtitle {
    font-size: 1.25rem;
  }
  .hero-pro__description {
    font-size: 1rem;
  }
  .hero-pro__image-container {
    margin-top: 40px;
  }
  .hero-pro__float-icon {
    width: 48px;
    height: 48px;
  }
  .hero-pro__float-icon i {
    font-size: 20px;
  }
  .hero-pro__shape--circle {
    width: 200px;
    height: 200px;
  }
  .hero-pro__shape--square {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 767.98px) {
  .hero-pro__title {
    font-size: 2rem;
  }
  .hero-pro__subtitle {
    font-size: 1.1rem;
  }
  .hero-pro__icon-grid {
    gap: 12px;
  }
  .hero-pro__icon-item {
    width: 48px;
    height: 48px;
  }
  .hero-pro__icon-item i {
    font-size: 20px;
  }
  .hero-pro__float-icon--1,
  .hero-pro__float-icon--3 {
    left: 8px;
  }
  .hero-pro__float-icon--2 {
    right: 8px;
  }
  .hero-pro__blob--1,
  .hero-pro__blob--2 {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .hero-pro {
    padding-top: 40px;
    padding-bottom: 60px;
  }
  .hero-pro__title {
    font-size: 1.75rem;
  }
  .hero-pro__description {
    font-size: 0.95rem;
  }
  .hero-pro__wave-bottom {
    height: 50px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-pro__blob,
  .hero-pro__shape,
  .hero-pro__float-icon,
  .hero-pro__badge-dot {
    animation: none;
  }
  .hero-pro__image,
  .hero-pro__icon-item {
    transition: none;
  }
}
@media (prefers-contrast: high) {
  .hero-pro__title,
  .hero-pro__subtitle {
    -webkit-text-fill-color: unset;
    background-clip: unset;
    -webkit-background-clip: unset;
  }
  .hero-pro__icon-item {
    border-width: 3px;
  }
  .hero-pro__float-icon {
    border-width: 4px;
  }
}
.blog-section-style {
  position: relative;
  background: var(--surface-primary);
  overflow: hidden;
}
.blog-section-style .section-header {
  position: relative;
  z-index: 2;
}
.blog-section-style .decorative-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-300));
  border-radius: 2px;
}
.blog-section-style #blog-title {
  color: var(--text-primary);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.blog-section-style #blog-subtitle {
  color: var(--primary-500);
  font-weight: 600;
}
.blog-section-style #blog-desc {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}
.blog-section-style .blog-card {
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.blog-section-style .blog-card-inner {
  background: var(--light);
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 2px 8px rgba(var(--black-rgb), 0.06);
  transition: all 0.3s ease;
  border: 1px solid color-mix(in srgb, var(--neutral-300) 30%, transparent);
}
.blog-section-style .blog-card:hover .blog-card-inner {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(var(--black-rgb), 0.12);
}
.blog-section-style .blog-image-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: var(--neutral-100);
}
.blog-section-style .blog-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-section-style .blog-card:hover .blog-image {
  transform: scale(1.08);
}
.blog-section-style .blog-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(var(--black-rgb), 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}
.blog-section-style .blog-card:hover .blog-overlay {
  opacity: 1;
}
.blog-section-style .category-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: var(--primary-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(var(--black-rgb), 0.15);
  transform: scale(0);
  transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.blog-section-style .blog-card:hover .category-badge {
  transform: scale(1);
}
.blog-section-style .blog-content {
  padding: 24px;
}
.blog-section-style .blog-meta {
  display: flex;
  gap: 16px;
  align-items: center;
}
.blog-section-style .meta-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--neutral-500);
  font-size: 14px;
}
.blog-section-style .meta-icon i {
  color: var(--primary-500);
  font-size: 16px;
}
.blog-section-style .blog-title {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.4;
  transition: color 0.3s ease;
  margin-bottom: 12px;
}
.blog-section-style .blog-card:hover .blog-title {
  color: var(--primary-500);
}
.blog-section-style .blog-excerpt {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-section-style .blog-link {
  color: var(--primary-500);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  gap: 4px;
}
.blog-section-style .blog-link:hover {
  color: var(--primary-700);
  gap: 8px;
}
.blog-section-style .blog-link i {
  transition: transform 0.3s ease;
}
.blog-section-style .blog-link:hover i {
  transform: translateX(4px);
}
.blog-section-style .decorative-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blog-section-style .shape-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--primary-300) 15%, transparent) 0%,
    transparent 70%
  );
}
.blog-section-style .shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  left: -100px;
}
.blog-section-style .shape-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  right: -50px;
}
.blog-section-style .shape-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    color-mix(in srgb, var(--primary-300) 8%, transparent) 0%,
    transparent 70%
  );
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: blobMove 20s ease-in-out infinite;
}
@keyframes blobMove {
  0%,
  100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  50% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}
@media (max-width: 991.98px) {
  .blog-section-style #blog-title {
    font-size: 2rem;
  }
  .blog-section-style .blog-image-wrapper {
    height: 200px;
  }
}
@media (max-width: 767.98px) {
  .blog-section-style {
    padding: 3rem 0;
  }
  .blog-section-style #blog-title {
    font-size: 1.75rem;
  }
  .blog-section-style #blog-desc {
    font-size: 1rem;
  }
  .blog-section-style .blog-image-wrapper {
    height: 220px;
  }
  .blog-section-style .blog-content {
    padding: 20px;
  }
  .blog-section-style .shape-1,
  .blog-section-style .shape-2 {
    opacity: 0.5;
  }
}
@media (max-width: 575.98px) {
  .blog-section-style .decorative-line {
    width: 50px;
  }
  .blog-section-style #blog-title {
    font-size: 1.5rem;
  }
  .blog-section-style .blog-title {
    font-size: 1.1rem;
  }
  .blog-section-style .category-badge {
    width: 36px;
    height: 36px;
    font-size: 16px;
    top: 12px;
    right: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .blog-section-style .blog-card,
  .blog-section-style .blog-image,
  .blog-section-style .blog-link,
  .blog-section-style .category-badge {
    transition: none;
  }
  .blog-section-style .shape-blob {
    animation: none;
  }
}
@media print {
  .blog-section-style .decorative-shapes {
    display: none;
  }
  .blog-section-style .blog-card-inner {
    box-shadow: none;
    border: 1px solid var(--neutral-300);
  }
}
.about-section-pro {
  position: relative;
  background: var(--surface-primary);
  overflow: hidden;
}
.about-section-pro .about-content {
  position: relative;
  z-index: 2;
}
.about-section-pro .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.about-section-pro .section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-500);
  line-height: 1.4;
  margin-bottom: 1.5rem;
}
.about-section-pro .section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.about-section-pro .features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.about-section-pro .feature-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--surface-secondary);
  border-radius: 12px;
  border-left: 4px solid var(--primary-500);
  transition: all 0.3s ease;
}
.about-section-pro .feature-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(var(--black-rgb), 0.08);
  border-left-color: var(--primary-700);
}
.about-section-pro .feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--primary-500) 15%, transparent);
  border-radius: 12px;
  color: var(--primary-500);
  font-size: 1.75rem;
  transition: all 0.3s ease;
}
.about-section-pro .feature-item:hover .feature-icon {
  background: var(--primary-500);
  color: var(--light);
  transform: scale(1.1) rotate(5deg);
}
.about-section-pro .feature-content {
  flex: 1;
}
.about-section-pro .feature-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.about-section-pro .feature-desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}
.about-section-pro .about-images-wrapper {
  position: relative;
  height: 600px;
}
.about-section-pro .shape-background {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: color-mix(in srgb, var(--primary-500) 8%, transparent);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 0;
  animation: morphShape 8s ease-in-out infinite;
}
@keyframes morphShape {
  0%,
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
}
.about-section-pro .main-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 65%;
  height: 400px;
  z-index: 2;
}
.about-section-pro .main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(var(--black-rgb), 0.12);
  transition: all 0.4s ease;
}
.about-section-pro .main-image-container:hover .main-image {
  transform: scale(1.02);
  box-shadow: 0 16px 50px rgba(var(--black-rgb), 0.18);
}
.about-section-pro .decoration-1 {
  position: absolute;
  top: -15px;
  left: -15px;
  width: 100px;
  height: 100px;
  border: 3px solid var(--primary-500);
  border-radius: 16px;
  z-index: -1;
}
.about-section-pro .secondary-image-container {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 55%;
  height: 280px;
  z-index: 3;
}
.about-section-pro .secondary-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(var(--black-rgb), 0.12);
  border: 6px solid var(--surface-primary);
  transition: all 0.4s ease;
}
.about-section-pro .secondary-image-container:hover .secondary-image {
  transform: scale(1.05);
}
.about-section-pro .decoration-2 {
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--primary-500) 20%, transparent);
  border-radius: 50%;
  z-index: -1;
}
.about-section-pro .tertiary-image-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  z-index: 4;
}
.about-section-pro .tertiary-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 8px solid var(--surface-primary);
  box-shadow: 0 8px 30px rgba(var(--black-rgb), 0.15);
  transition: all 0.4s ease;
}
.about-section-pro .tertiary-image-container:hover .tertiary-image {
  transform: rotate(5deg) scale(1.1);
}
.about-section-pro .floating-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 50px;
  height: 50px;
  background: var(--primary-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 1.5rem;
  box-shadow: 0 6px 20px rgba(var(--black-rgb), 0.2);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.about-section-pro .decorative-dots {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(
    circle,
    var(--primary-300) 2px,
    transparent 2px
  );
  background-size: 15px 15px;
  opacity: 0.4;
  z-index: 1;
}
.about-section-pro .decorative-circle {
  position: absolute;
  bottom: 40px;
  left: 10%;
  width: 60px;
  height: 60px;
  border: 4px solid var(--primary-300);
  border-radius: 50%;
  opacity: 0.5;
  z-index: 1;
}
@media (max-width: 991px) {
  .about-section-pro .section-title {
    font-size: 2rem;
  }
  .about-section-pro .section-subtitle {
    font-size: 1.25rem;
  }
  .about-section-pro .about-images-wrapper {
    height: 500px;
    margin-top: 3rem;
  }
  .about-section-pro .main-image-container {
    width: 70%;
    height: 320px;
  }
  .about-section-pro .secondary-image-container {
    width: 60%;
    height: 240px;
    bottom: 60px;
  }
  .about-section-pro .tertiary-image-container {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 767px) {
  .about-section-pro .section-title {
    font-size: 1.75rem;
  }
  .about-section-pro .section-subtitle {
    font-size: 1.15rem;
  }
  .about-section-pro .section-description {
    font-size: 1rem;
  }
  .about-section-pro .feature-item {
    padding: 1.25rem;
    gap: 1rem;
  }
  .about-section-pro .feature-icon {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
  }
  .about-section-pro .feature-name {
    font-size: 1.1rem;
  }
  .about-section-pro .feature-desc {
    font-size: 0.9rem;
  }
  .about-section-pro .about-images-wrapper {
    height: 450px;
  }
  .about-section-pro .main-image-container {
    width: 75%;
    height: 280px;
  }
  .about-section-pro .secondary-image-container {
    width: 65%;
    height: 200px;
    bottom: 50px;
  }
  .about-section-pro .tertiary-image-container {
    width: 130px;
    height: 130px;
  }
  .about-section-pro .shape-background {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 575px) {
  .about-section-pro .about-images-wrapper {
    height: 400px;
  }
  .about-section-pro .main-image-container {
    width: 85%;
    height: 240px;
  }
  .about-section-pro .secondary-image-container {
    width: 70%;
    height: 180px;
    bottom: 40px;
  }
  .about-section-pro .tertiary-image-container {
    width: 110px;
    height: 110px;
  }
  .about-section-pro .floating-badge {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}
.newsletter-section-v5 {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    var(--surface-primary) 0%,
    color-mix(in srgb, var(--primary-50) 40%, white 60%) 100%
  );
  overflow: hidden;
}
.newsletter-section-v5 .decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary-300) 20%, transparent 80%),
    transparent
  );
  pointer-events: none;
  z-index: 1;
}
.newsletter-section-v5 .decorative-circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  left: -100px;
  animation: float 20s ease-in-out infinite;
}
.newsletter-section-v5 .decorative-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  right: -80px;
  animation: float 15s ease-in-out infinite reverse;
}
.newsletter-section-v5 .decorative-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--primary-300),
    transparent
  );
  pointer-events: none;
  z-index: 1;
}
.newsletter-section-v5 .decorative-line-top {
  top: 50px;
  left: 0;
  right: 40%;
}
.newsletter-section-v5 .decorative-line-bottom {
  bottom: 80px;
  left: 40%;
  right: 0;
}
.newsletter-section-v5 .newsletter-wrapper {
  position: relative;
  z-index: 10;
  background: var(--light);
  border-radius: 24px;
  padding: 60px;
  box-shadow:
    0 10px 40px color-mix(in srgb, var(--neutral-900) 8%, transparent),
    0 0 0 1px color-mix(in srgb, var(--primary-300) 20%, transparent);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}
.newsletter-section-v5 .newsletter-wrapper:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 60px color-mix(in srgb, var(--neutral-900) 12%, transparent),
    0 0 0 1px color-mix(in srgb, var(--primary-500) 30%, transparent);
}
.newsletter-section-v5 .newsletter-content {
  position: relative;
  z-index: 2;
}
.newsletter-section-v5 .icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--primary-500) 30%, transparent);
}
.newsletter-section-v5 .icon-badge i {
  font-size: 28px;
  color: var(--light);
}
.newsletter-section-v5 .newsletter-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}
.newsletter-section-v5 .newsletter-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-700);
  margin-bottom: 20px;
  line-height: 1.4;
}
.newsletter-section-v5 .newsletter-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}
.newsletter-section-v5 .features-icons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.newsletter-section-v5 .feature-icon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: color-mix(in srgb, var(--primary-100) 60%, white 40%);
  border-radius: 12px;
  border: 2px solid var(--primary-300);
  transition: all 0.3s ease;
}
.newsletter-section-v5 .feature-icon-item i {
  font-size: 20px;
  color: var(--primary-700);
}
.newsletter-section-v5 .feature-icon-item:hover {
  background: var(--primary-500);
  border-color: var(--primary-500);
  transform: translateY(-4px);
}
.newsletter-section-v5 .feature-icon-item:hover i {
  color: var(--light);
}
.newsletter-section-v5 .newsletter-form-wrapper {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--surface-primary),
    color-mix(in srgb, var(--primary-50) 30%, white 70%)
  );
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 8px 32px color-mix(in srgb, var(--primary-500) 10%, transparent);
  z-index: 2;
}
.newsletter-section-v5 .form-decorative-blob {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary-300) 30%, transparent),
    transparent
  );
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  pointer-events: none;
  z-index: 0;
  animation: morphBlob 8s ease-in-out infinite;
}
.newsletter-section-v5 .form-group {
  margin-bottom: 20px;
}
.newsletter-section-v5 .input-wrapper {
  position: relative;
}
.newsletter-section-v5 .input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--primary-500);
  pointer-events: none;
  z-index: 2;
}
.newsletter-section-v5 .form-control {
  width: 100%;
  padding: 16px 20px 16px 50px;
  font-size: 1rem;
  border: 2px solid var(--neutral-300);
  border-radius: 12px;
  background: var(--light);
  color: var(--text-primary);
  transition: all 0.3s ease;
}
.newsletter-section-v5 .form-control:focus {
  outline: none;
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary-300) 20%, transparent);
  background: var(--light);
}
.newsletter-section-v5 .form-control::placeholder {
  color: var(--neutral-500);
}
.newsletter-section-v5 .btn-submit {
  width: 100%;
  padding: 16px 28px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--light);
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border: none;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px color-mix(in srgb, var(--primary-500) 30%, transparent);
  cursor: pointer;
}
.newsletter-section-v5 .btn-submit:hover {
  background: linear-gradient(135deg, var(--primary-700), var(--primary-500));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px
    color-mix(in srgb, var(--primary-500) 40%, transparent);
}
.newsletter-section-v5 .btn-submit:active {
  transform: translateY(0);
}
.newsletter-section-v5 .btn-icon {
  font-size: 18px;
  transition: transform 0.3s ease;
}
.newsletter-section-v5 .btn-submit:hover .btn-icon {
  transform: translateX(4px);
}
.newsletter-section-v5 .trust-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--neutral-300);
}
.newsletter-section-v5 .badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--light);
  border-radius: 10px;
  border: 1px solid var(--neutral-300);
  transition: all 0.3s ease;
}
.newsletter-section-v5 .badge-item i {
  font-size: 18px;
  color: var(--primary-500);
}
.newsletter-section-v5 .badge-item:hover {
  background: var(--primary-100);
  border-color: var(--primary-500);
  transform: scale(1.1);
}
@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}
@keyframes morphBlob {
  0%,
  100% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
  }
}
@media (max-width: 991px) {
  .newsletter-section-v5 {
    padding: 80px 0;
  }
  .newsletter-section-v5 .newsletter-wrapper {
    padding: 40px 30px;
  }
  .newsletter-section-v5 .newsletter-title {
    font-size: 2rem;
  }
  .newsletter-section-v5 .newsletter-subtitle {
    font-size: 1.125rem;
  }
  .newsletter-section-v5 .newsletter-content {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .newsletter-section-v5 {
    padding: 60px 0;
  }
  .newsletter-section-v5 .newsletter-wrapper {
    padding: 30px 20px;
    border-radius: 16px;
  }
  .newsletter-section-v5 .newsletter-title {
    font-size: 1.75rem;
  }
  .newsletter-section-v5 .newsletter-subtitle {
    font-size: 1rem;
  }
  .newsletter-section-v5 .newsletter-desc {
    font-size: 0.9375rem;
  }
  .newsletter-section-v5 .icon-badge {
    width: 56px;
    height: 56px;
  }
  .newsletter-section-v5 .icon-badge i {
    font-size: 24px;
  }
  .newsletter-section-v5 .newsletter-form-wrapper {
    padding: 30px 20px;
  }
  .newsletter-section-v5 .features-icons {
    gap: 12px;
  }
  .newsletter-section-v5 .feature-icon-item {
    width: 44px;
    height: 44px;
  }
  .newsletter-section-v5 .feature-icon-item i {
    font-size: 18px;
  }
}
@media (max-width: 575px) {
  .newsletter-section-v5 .decorative-circle-1,
  .newsletter-section-v5 .decorative-circle-2 {
    opacity: 0.5;
  }
  .newsletter-section-v5 .btn-submit {
    font-size: 1rem;
    padding: 14px 24px;
  }
}
.author-bio-section {
  padding: var(--space-6) 0;
}
.author-bio-professional-blue-01 {
  background-color: var(--bg-primary);
  color: var(--text-primary);
}
.author-bio-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
}
.author-bio-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.author-bio-decorator {
  position: absolute;
  inset: 0;
  border: 2px solid var(--primary-300);
  border-radius: var(--radius-lg);
  pointer-events: none;
  opacity: 0.5;
}
.author-bio-decorator-01 {
  transform: rotate(2deg);
  inset: -8px;
}
.author-bio-content {
  padding-left: var(--space-4);
}
.author-bio-title {
  margin-bottom: var(--space-2);
  color: var(--primary-700);
  letter-spacing: -0.01em;
}
.author-bio-name {
  margin-bottom: var(--space-1);
  font-weight: 600;
  color: var(--text-primary);
}
.author-bio-role {
  margin-bottom: var(--space-3);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.author-bio-desc {
  margin-bottom: var(--space-4);
  color: var(--text-primary);
  line-height: 1.6;
  max-width: 600px;
}
.author-bio-divider {
  width: 48px;
  height: 2px;
  background-color: var(--primary-500);
  margin-bottom: var(--space-3);
}
.author-bio-subtitle {
  color: var(--primary-600);
  letter-spacing: 0.08em;
}
@media (max-width: 768px) {
  .author-bio-content {
    padding-left: 0;
  }
  .author-bio-image-wrapper {
    aspect-ratio: 1 / 1;
    max-width: 280px;
    margin: 0 auto;
  }
}
#reading-benefits {
  padding: var(--space-6) 0;
  background: var(--bg-secondary);
}
#reading-benefits .section-head {
  max-width: 760px;
}
#reading-benefits-title {
  margin-bottom: var(--space-2);
}
#reading-benefits-subtitle {
  margin-bottom: var(--space-2);
  color: var(--text-secondary);
}
#reading-benefits-desc {
  margin-bottom: var(--space-4);
}
.benefit-card {
  height: 100%;
  border: 1px solid var(--neutral-200);
  background: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
}
.benefit-card p {
  margin: 0;
}
.contact-section-classic {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--surface-primary) 0%,
    color-mix(in srgb, var(--primary-50) 40%, var(--surface-primary) 60%) 100%
  );
  overflow: hidden;
}
.contact-section-classic .decorative-line-top {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-700));
  margin: 0 auto;
  border-radius: 2px;
}
.contact-section-classic .contact-form-card {
  position: relative;
  background: var(--light);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow:
    0 10px 40px rgba(var(--black-rgb), 0.08),
    0 2px 8px rgba(var(--black-rgb), 0.04);
  border: 1px solid color-mix(in srgb, var(--primary-300) 20%, transparent 80%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-section-classic .contact-form-card:hover {
  box-shadow:
    0 15px 50px rgba(var(--black-rgb), 0.12),
    0 5px 15px rgba(var(--black-rgb), 0.06);
  transform: translateY(-5px);
}
.contact-section-classic .card-decorative-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  opacity: 0.08;
  border-radius: 0 20px 0 100%;
}
.contact-section-classic .form-floating > .form-control {
  border: 2px solid var(--neutral-300);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: var(--surface-primary);
}
.contact-section-classic .form-floating > .form-control:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 4px
    color-mix(in srgb, var(--primary-500) 15%, transparent 85%);
  background: var(--light);
}
.contact-section-classic .form-floating > label {
  padding: 1rem 1.25rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.contact-section-classic .form-floating > textarea.form-control {
  min-height: 140px;
  resize: vertical;
}
.contact-section-classic .form-check-input {
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid var(--neutral-300);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-section-classic .form-check-input:checked {
  background-color: var(--primary-500);
  border-color: var(--primary-500);
}
.contact-section-classic .form-check-label {
  margin-left: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  cursor: pointer;
}
.contact-section-classic .btn-submit-classic {
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #365dff, #0aa0d0) !important;
  color: var(--light) !important;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 8px 20px rgba(38, 87, 255, 0.3);
}
.contact-section-classic .btn-submit-classic:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(27, 112, 216, 0.4);
}
.contact-section-classic .btn-submit-classic:active {
  transform: translateY(0);
}
.contact-section-classic .btn-submit-classic i {
  transition: transform 0.3s ease;
}
.contact-section-classic .btn-submit-classic:hover i {
  transform: translateX(5px);
}
.contact-section-classic .contact-info-sidebar {
  position: relative;
  padding: 2rem;
  background: var(--light);
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(var(--black-rgb), 0.06);
  border: 1px solid var(--neutral-300);
}
.contact-section-classic .contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: var(--surface-primary);
  border-radius: 16px;
  border: 2px solid var(--neutral-300);
  transition: all 0.3s ease;
}
.contact-section-classic .contact-info-item:hover {
  border-color: var(--primary-500);
  transform: translateX(8px);
  box-shadow: 0 4px 15px rgba(var(--black-rgb), 0.08);
}
.contact-section-classic .contact-info-item:last-of-type {
  margin-bottom: 0;
}
.contact-section-classic .info-icon-wrapper {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: var(--light);
  border-radius: 12px;
  font-size: 1.5rem;
  box-shadow: 0 4px 12px rgba(44, 80, 234, 0.25);
}
.contact-section-classic .info-content {
  flex: 1;
}
.contact-section-classic .info-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}
.contact-section-classic .info-value {
  font-size: 1.1rem;
  color: var(--text-primary);
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}
.contact-section-classic .decorative-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.contact-section-classic .decorative-shape.shape-1 {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  opacity: 0.05;
  top: -30px;
  right: -30px;
}
.contact-section-classic .decorative-shape.shape-2 {
  width: 60px;
  height: 60px;
  background: var(--primary-500);
  opacity: 0.08;
  bottom: 20px;
  left: -20px;
}
.contact-section-classic .social-icons-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--neutral-300);
}
.contact-section-classic .social-icon-item {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-primary);
  border: 2px solid var(--neutral-300);
  border-radius: 12px;
  font-size: 1.25rem;
  color: var(--primary-500);
  transition: all 0.3s ease;
  cursor: pointer;
}
.contact-section-classic .social-icon-item:hover {
  background: var(--primary-500);
  color: var(--light);
  border-color: var(--primary-500);
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(42, 87, 245, 0.3);
}
.contact-section-classic .decorative-wave-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: repeating-linear-gradient(
    90deg,
    var(--primary-500) 0px,
    transparent 2px,
    transparent 60px,
    var(--primary-500) 62px
  );
  opacity: 0.03;
}
.contact-section-classic #contact-title {
  color: var(--text-primary);
  letter-spacing: -0.5px;
}
.contact-section-classic #contact-subtitle {
  color: var(--primary-500);
  font-weight: 600;
}
.contact-section-classic #contact-desc {
  color: var(--text-secondary);
  line-height: 1.7;
}
@media (max-width: 991px) {
  .contact-section-classic .contact-form-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }
  .contact-section-classic .contact-info-sidebar {
    padding: 1.5rem;
  }
  .contact-section-classic .contact-info-item {
    padding: 1.25rem;
  }
}
@media (max-width: 767px) {
  .contact-section-classic .contact-form-card {
    padding: 1.5rem;
    border-radius: 16px;
  }
  .contact-section-classic .card-decorative-corner {
    width: 80px;
    height: 80px;
  }
  .contact-section-classic .info-icon-wrapper {
    width: 45px;
    height: 45px;
    font-size: 1.25rem;
  }
  .contact-section-classic .info-value {
    font-size: 1rem;
  }
  .contact-section-classic .social-icons-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
  }
  .contact-section-classic .social-icon-item {
    font-size: 1.1rem;
  }
}
@media (max-width: 575px) {
  .contact-section-classic {
    padding: 2rem 0;
  }
  .contact-section-classic .contact-form-card,
  .contact-section-classic .contact-info-sidebar {
    padding: 1.25rem;
  }
  .contact-section-classic .btn-submit-classic {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }
  .contact-section-classic .decorative-line-top {
    width: 60px;
    height: 3px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .contact-section-classic .contact-info-item {
    animation: fadeInUp 0.6s ease-out backwards;
  }
  .contact-section-classic .contact-info-item:nth-child(1) {
    animation-delay: 0.1s;
  }
  .contact-section-classic .contact-info-item:nth-child(2) {
    animation-delay: 0.2s;
  }
  .contact-section-classic .contact-info-item:nth-child(3) {
    animation-delay: 0.3s;
  }
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media print {
  .contact-section-classic .decorative-shape,
  .contact-section-classic .decorative-wave-bottom,
  .contact-section-classic .card-decorative-corner {
    display: none;
  }
}
.footer-special {
  position: relative;
  padding: 100px 0 40px;
  overflow: hidden;
  background:
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--primary-700) 95%, transparent) 0%,
      color-mix(in srgb, var(--primary-500) 90%, transparent) 50%,
      color-mix(in srgb, var(--neutral-900) 92%, transparent) 100%
    ),
    url("/img/footer_bg.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--light);
}
.footer-special::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 20% 50%,
    color-mix(in srgb, var(--primary-500) 15%, transparent) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.footer-special .footer-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    color-mix(in srgb, var(--neutral-900) 20%, transparent) 100%
  );
  pointer-events: none;
}
.footer-special .decorative-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}
.footer-special .decorative-shapes .shape {
  position: absolute;
  background: color-mix(in srgb, var(--primary-300) 10%, transparent);
  border-radius: 50%;
  filter: blur(40px);
  animation: float 20s infinite ease-in-out;
  pointer-events: none;
}
.footer-special .decorative-shapes .shape-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  left: -100px;
  animation-delay: 0s;
}
.footer-special .decorative-shapes .shape-2 {
  width: 300px;
  height: 300px;
  top: 50%;
  right: -150px;
  animation-delay: 7s;
}
.footer-special .decorative-shapes .shape-3 {
  width: 250px;
  height: 250px;
  bottom: -100px;
  left: 30%;
  animation-delay: 14s;
}
@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}
.footer-special .footer-brand {
  padding-right: 30px;
}
.footer-special .brand-icon-wrapper {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--primary-500) 20%, transparent);
  border: 2px solid color-mix(in srgb, var(--primary-300) 30%, transparent);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer-special .brand-icon-wrapper i {
  font-size: 28px;
  color: rgba(var(--white-rgb), 0.95);
}
.footer-special .brand-icon-wrapper:hover {
  background: color-mix(in srgb, var(--primary-500) 30%, transparent);
  transform: translateY(-3px);
}
.footer-special .brand-name {
  font-size: 28px;
  font-weight: 700;
  color: var(--light);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.footer-special .brand-description {
  color: rgba(var(--white-rgb), 0.85);
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 0;
}
.footer-special .decorative-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-300), transparent);
  border-radius: 3px;
}
.footer-special .section-icon {
  width: 48px;
  height: 48px;
  background: color-mix(in srgb, var(--primary-500) 15%, transparent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.footer-special .section-icon i {
  font-size: 22px;
  color: rgba(var(--white-rgb), 0.9);
}
.footer-links:hover .section-icon,
.footer-special .footer-contact:hover .section-icon {
  background: color-mix(in srgb, var(--primary-500) 25%, transparent);
  transform: translateY(-2px);
}
.footer-special .footer-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--light);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}
.footer-special .footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary-300);
  border-radius: 2px;
}
.footer-special .links-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-special .links-list li {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}
.footer-special .links-list li i {
  font-size: 12px;
  color: var(--primary-300);
  transition: all 0.3s ease;
}
.footer-special .links-list li a {
  color: rgba(var(--white-rgb), 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
}
.footer-special .links-list li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary-300);
  transition: width 0.3s ease;
}
.footer-special .links-list li:hover {
  transform: translateX(5px);
}
.footer-special .links-list li:hover i {
  color: var(--light);
}
.footer-special .links-list li:hover a {
  color: var(--light);
}
.footer-special .links-list li:hover a::after {
  width: 100%;
}
.footer-special .contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-special .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: color-mix(in srgb, var(--primary-700) 15%, transparent);
  border-radius: 12px;
  border: 1px solid color-mix(in srgb, var(--primary-500) 20%, transparent);
  transition: all 0.3s ease;
}
.footer-special .contact-item:hover {
  background: color-mix(in srgb, var(--primary-700) 20%, transparent);
  border-color: color-mix(in srgb, var(--primary-500) 30%, transparent);
  transform: translateY(-2px);
}
.footer-special .contact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: color-mix(in srgb, var(--primary-500) 20%, transparent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-special .contact-icon i {
  font-size: 18px;
  color: rgba(var(--white-rgb), 0.95);
}
.footer-special .contact-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-special .contact-label {
  font-size: 12px;
  color: rgba(var(--white-rgb), 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.footer-special .contact-value {
  font-size: 15px;
  color: rgba(var(--white-rgb), 0.9);
  font-weight: 500;
  line-height: 1.5;
}
.footer-special .footer-disclaimer {
  padding: 30px;
  background: color-mix(in srgb, var(--neutral-900) 20%, transparent);
  border-radius: 16px;
  border: 1px solid color-mix(in srgb, var(--primary-500) 15%, transparent);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.footer-special .disclaimer-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: color-mix(in srgb, var(--primary-500) 20%, transparent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-special .disclaimer-icon i {
  font-size: 24px;
  color: rgba(var(--white-rgb), 0.9);
}
.footer-special .footer-disclaimer p {
  margin: 0;
  color: rgba(var(--white-rgb), 0.75);
  font-size: 14px;
  line-height: 1.7;
}
.footer-special .footer-bottom {
  margin-top: 60px;
}
.footer-special .decorative-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    color-mix(in srgb, var(--primary-300) 30%, transparent),
    transparent
  );
  margin-bottom: 30px;
}
.footer-special .copyright-text {
  color: rgba(var(--white-rgb), 0.7);
  font-size: 14px;
  letter-spacing: 0.3px;
}
.footer-special .particles {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
}
.footer-special .particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(var(--white-rgb), 0.3);
  border-radius: 50%;
  animation: particle-float 15s infinite ease-in-out;
  pointer-events: none;
}
.footer-special .particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 12s;
}
.footer-special .particle:nth-child(2) {
  left: 30%;
  animation-delay: 3s;
  animation-duration: 15s;
}
.footer-special .particle:nth-child(3) {
  left: 50%;
  animation-delay: 6s;
  animation-duration: 18s;
}
.footer-special .particle:nth-child(4) {
  left: 70%;
  animation-delay: 9s;
  animation-duration: 14s;
}
.footer-special .particle:nth-child(5) {
  left: 90%;
  animation-delay: 12s;
  animation-duration: 16s;
}
@keyframes particle-float {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) scale(1);
    opacity: 0;
  }
}
@media (max-width: 991px) {
  .footer-special {
    padding: 80px 0 30px;
  }
  .footer-special .footer-brand {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .footer-special .brand-icon-wrapper {
    width: 50px;
    height: 50px;
  }
  .footer-special .brand-icon-wrapper i {
    font-size: 24px;
  }
  .footer-special .brand-name {
    font-size: 24px;
  }
  .footer-special .decorative-shapes .shape-1 {
    width: 300px;
    height: 300px;
  }
  .footer-special .decorative-shapes .shape-2 {
    width: 250px;
    height: 250px;
  }
  .footer-special .decorative-shapes .shape-3 {
    width: 200px;
    height: 200px;
  }
}
@media (max-width: 767px) {
  .footer-special {
    padding: 60px 0 30px;
    background-attachment: scroll;
  }
  .footer-special .brand-name {
    font-size: 22px;
  }
  .footer-special .footer-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .footer-special .contact-item {
    padding: 16px;
  }
  .footer-special .contact-icon {
    width: 36px;
    height: 36px;
  }
  .footer-special .contact-icon i {
    font-size: 16px;
  }
  .footer-special .footer-disclaimer {
    padding: 24px;
    flex-direction: column;
    text-align: center;
  }
  .footer-special .disclaimer-icon {
    margin: 0 auto;
  }
  .footer-special .footer-bottom {
    margin-top: 40px;
  }
  .footer-special .copyright-text {
    font-size: 13px;
  }
  .footer-special .decorative-shapes .shape {
    filter: blur(30px);
  }
}
@media (max-width: 575px) {
  .footer-special {
    padding: 50px 0 20px;
  }
  .footer-special .brand-icon-wrapper {
    width: 45px;
    height: 45px;
  }
  .footer-special .brand-icon-wrapper i {
    font-size: 20px;
  }
  .footer-special .section-icon {
    width: 42px;
    height: 42px;
  }
  .footer-special .section-icon i {
    font-size: 20px;
  }
  .footer-special .contact-value {
    font-size: 14px;
  }
  .footer-special .footer-disclaimer {
    padding: 20px;
  }
  .footer-special .disclaimer-icon {
    width: 44px;
    height: 44px;
  }
  .footer-special .disclaimer-icon i {
    font-size: 20px;
  }
  .footer-special .footer-disclaimer p {
    font-size: 13px;
  }
}
