:root {
  --primary-50: #f7fee7;
  --primary-50-rgb: 247, 254, 231;
  --primary-100: #ecfccb;
  --primary-100-rgb: 236, 252, 203;
  --primary-300: #bef264;
  --primary-300-rgb: 190, 242, 100;
  --primary-500: #65a30d;
  --primary-500-rgb: 101, 163, 13;
  --primary-700: #4d7c0f;
  --primary-700-rgb: 77, 124, 15;
  --primary-200: #d5f798;
  --primary-200-rgb: 213, 247, 152;
  --primary-400: #92cb39;
  --primary-400-rgb: 146, 203, 57;
  --primary-600: #59900e;
  --primary-600-rgb: 89, 144, 14;
  --primary-800: #41690d;
  --primary-800-rgb: 65, 105, 13;
  --primary-900: #36570b;
  --primary-900-rgb: 54, 87, 11;
  --primary-950: #233907;
  --primary-950-rgb: 35, 57, 7;

  --primary-rgb: 101, 163, 13;
  --neutral-50: #fafaf9;
  --neutral-50-rgb: 250, 250, 249;
  --neutral-100: #f5f5f4;
  --neutral-100-rgb: 245, 245, 244;
  --neutral-300: #d6d3d1;
  --neutral-300-rgb: 214, 211, 209;
  --neutral-500: #78716c;
  --neutral-500-rgb: 120, 113, 108;
  --neutral-700: #44403c;
  --neutral-700-rgb: 68, 64, 60;
  --neutral-900: #1c1917;
  --neutral-900-rgb: 28, 25, 23;
  --neutral-200: #e6e4e3;
  --neutral-200-rgb: 230, 228, 227;
  --neutral-400: #a7a29f;
  --neutral-400-rgb: 167, 162, 159;
  --neutral-600: #5e5954;
  --neutral-600-rgb: 94, 89, 84;
  --neutral-800: #3a3633;
  --neutral-800-rgb: 58, 54, 51;
  --neutral-950: #1f1d1b;
  --neutral-950-rgb: 31, 29, 27;

  --surface-primary: var(--neutral-50);
  --surface-secondary: var(--neutral-100);
  --surface-accent: var(--primary-50);
  --text-primary: var(--neutral-900);
  --text-secondary: var(--neutral-700);
  --text-accent: var(--primary-700);
  --button-primary-bg: var(--primary-500);
  --button-primary-text: #ffffff;
  --button-primary-text-rgb: 255, 255, 255;
  --button-secondary-bg: var(--neutral-100);
  --button-secondary-text: var(--neutral-900);
  --border-light: var(--neutral-300);
  --border-medium: var(--neutral-500);
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-elevated: 0 10px 25px rgba(0, 0, 0, 0.1);
  --shadow-button-hover: 0 6px 12px rgba(101, 163, 13, 0.3);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
  --transition-slow: 0.3s ease;
  --white-rgb: 255, 255, 255;
  --black-rgb: 0, 0, 0;
  --transparent-rgb: 0, 0, 0;
  --overlay-light-rgb: 255, 255, 255;
  --overlay-dark-rgb: 0, 0, 0;
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 1.875rem);
  --text-3xl: clamp(1.875rem, 1.6rem + 1.375vw, 2.25rem);
  --text-4xl: clamp(2.25rem, 1.9rem + 1.75vw, 3rem);
  --text-5xl: clamp(3rem, 2.5rem + 2.5vw, 3.75rem);
  --text-6xl: clamp(3.75rem, 3rem + 3.75vw, 4.5rem);
  --text-7xl: clamp(4.5rem, 3.5rem + 5vw, 6rem);
  --text-8xl: clamp(6rem, 4.5rem + 7.5vw, 8rem);
  --text-9xl: clamp(8rem, 6rem + 10vw, 12rem);
  --font-light: 300;
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  --leading-loose: 2;
  --leading-extra_loose: 2.5;
  --tracking-tighter: -0.05em;
  --tracking-tight: -0.025em;
  --tracking-normal: 0;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;
  --tracking-widest: 0.1em;
  --font-primary: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-secondary: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-monospace: 'JetBrains Mono', 'SF Mono', Monaco, 'Cascadia Code', 'Roboto Mono', Consolas, 'Courier New', monospace;
  --text-body: var(--text-primary);
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-7: 1.75rem;
  --space-8: 2rem;
  --space-9: 2.25rem;
  --space-10: 2.5rem;
  --space-11: 2.75rem;
  --space-12: 3rem;
  --space-14: 3.5rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-28: 7rem;
  --space-32: 8rem;
  --space-36: 9rem;
  --space-40: 10rem;
  --space-44: 11rem;
  --space-48: 12rem;
  --space-52: 13rem;
  --space-56: 14rem;
  --space-60: 15rem;
  --space-64: 16rem;
  --space-72: 18rem;
  --space-80: 20rem;
  --space-96: 24rem;
  --space-px: 1px;
  --space-0.5: 0.125rem;
  --space-1.5: 0.375rem;
  --space-2.5: 0.625rem;
  --space-3.5: 0.875rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  --space-4xl: 8rem;
  --space-5xl: 12rem;
  --space-6xl: 16rem;
  --section-py: clamp(3rem, 5vw, 5rem);
  --section-y-mobile: 3rem;
  --section-y-tablet: 4rem;
  --section-y-desktop: 5rem;
  --section-y-hero: clamp(4rem, 10vw, 8rem);
  --section-x: clamp(1rem, 3vw, 2rem);
  --section-gap: clamp(1.5rem, 3vw, 2.5rem);
  --card-padding: 1.5rem;
  --card-gap: 1rem;
  --button-padding-x: 1.5rem;
  --button-padding-y: 0.75rem;
  --form-gap: 1rem;
}


/* ===== EFFECTS & ELEVATION (Theme-Independent) ===== */
:root {
  /* Shadows */
  --shadow-none: none;
  --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  
  /* Border Radius */
  --radius-none: 0;
  --radius-xs: 0.125rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-all: all 0.3s ease;
  
  /* Opacity */
  --opacity-disabled: 0.5;
  --opacity-loading: 0.7;
  --opacity-overlay: 0.8;
}

/* ===== SECTION BASE STYLES ===== */
section {
  padding-top: var(--section-y-mobile);
  padding-bottom: var(--section-y-mobile);
  padding-left: var(--section-x);
  padding-right: var(--section-x);
}

@media (min-width: 768px) {
  section {
    padding-top: var(--section-y-tablet);
    padding-bottom: var(--section-y-tablet);
  }
}

@media (min-width: 1024px) {
  section {
    padding-top: var(--section-y-desktop);
    padding-bottom: var(--section-y-desktop);
  }
}

/* Hero section special spacing */
section[id="hero"] {
  padding-top: var(--section-y-hero);
  padding-bottom: var(--section-y-hero);
}

/* ===== RESPONSIVE BEHAVIOR ===== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (prefers-contrast: high) {
  :root {
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  :root {
    --shadow-sm: none;
    --shadow-md: none;
    --shadow-lg: none;
    --shadow-xl: none;
  }
  
  section {
    padding-top: 1rem;
    padding-bottom: 1rem;
    break-inside: avoid;
  }
}

/* ===== BASE STYLES - ADDITIVE TO BOOTSTRAP ===== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  overflow-x: hidden;
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
*:focus {
  outline: 2px solid var(--border-interactive);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

*:focus:not(:focus-visible) {
  outline: none;
}

*:focus-visible {
  outline: 2px solid var(--border-interactive);
  outline-offset: 2px;
}


/* ===== FONT FAMILY UTILITIES ===== */
.page_font_primary {
  font-family: var(--font-primary);
}

.agency_font_secondary {
  font-family: var(--font-secondary);
}

.brand_font_mono {
  font-family: var(--font-mono);
}

/* ===== SEMANTIC TYPOGRAPHY CLASSES ===== */

/* Display Styles - For major headings and hero text */
.fresh_display_1 {
  font-family: var(--font-secondary);
  font-size: var(--text-6xl);
  font-weight: var(--font-extrabold);
  line-height: var(--leading-none);
  letter-spacing: var(--tracking-tighter);
}

.business_display_2 {
  font-family: var(--font-secondary);
  font-size: var(--text-5xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.modern_display_3 {
  font-family: var(--font-secondary);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

/* Heading Styles - For section titles and content hierarchy */
.smart_heading_1 {
  font-family: var(--font-secondary);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.section_heading_2 {
  font-family: var(--font-secondary);
  font-size: var(--text-3xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

.content_heading_3 {
  font-family: var(--font-secondary);
  font-size: var(--text-2xl);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-normal);
}

.bright_heading_4 {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-normal);
}

.custom_heading_5 {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-semibold);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
}

.company_heading_6 {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
}

/* Body Text Styles */
.app_body_large {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-normal);
  line-height: var(--leading-relaxed);
  letter-spacing: var(--tracking-normal);
}

.digital_body_base {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-relaxed);
  letter-spacing: var(--tracking-normal);
}

.layout_body_small {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
}

/* Utility Text Styles */
.style_caption {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-wide);
  color: var(--text-muted);
}

.container_overline {
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Code Styles */
.theme_code_inline {
  font-family: var(--font-mono);
  font-size: 0.875em;
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  background-color: var(--bg-muted);
  color: var(--text-primary);
  padding: 0.125rem 0.25rem;
  border-radius: var(--radius-sm);
}

.minimal_code_block {
  font-family: var(--font-mono);
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
  line-height: var(--leading-relaxed);
  background-color: var(--bg-muted);
  color: var(--text-primary);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  overflow-x: auto;
}

/* ===== SECTION-SPECIFIC TYPOGRAPHY ===== */

/* Hero Section Typography */
.elite_hero_title {
  font-family: var(--font-secondary);
  font-size: var(--text-6xl);
  font-weight: var(--font-extrabold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tighter);
  color: var(--text-primary);
  margin-bottom: var(--space-6);
}

.top_hero_subtitle {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
  color: var(--text-secondary);
  margin-bottom: var(--space-8);
}

/* Section Typography */
.new_section_title {
  font-family: var(--font-secondary);
  font-size: var(--text-4xl);
  font-weight: var(--font-bold);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.unique_section_subtitle {
  font-family: var(--font-primary);
  font-size: var(--text-lg);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
  color: var(--text-secondary);
  margin-bottom: var(--space-3);
}

.studio_section_description {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-relaxed);
  letter-spacing: var(--tracking-normal);
  color: var(--text-primary);
  margin-bottom: var(--space-8);
  max-width: 65ch; /* Optimal reading width */
}

/* Card Typography */
.best_card_title {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-semibold);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-normal);
  color: var(--text-primary);
  margin-bottom: var(--space-3);
}

.site_card_text {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
  color: var(--text-primary);
}

/* Navigation Typography */
.base_nav_link {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
  color: var(--text-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.base_nav_link:hover,
.base_nav_link:focus {
  color: var(--text-link);
  text-decoration: none;
}

/* Button Typography */
.prime_button_text {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-medium);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
}

/* Footer Typography */
.premium_footer_text {
  font-family: var(--font-primary);
  font-size: var(--text-sm);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  letter-spacing: var(--tracking-normal);
  color: var(--text-muted);
}

/* ===== RESPONSIVE TYPOGRAPHY ===== */
@media (max-width: 768px) {
  .elite_hero_title {
    font-size: var(--text-4xl);
  }
  
  .new_section_title {
    font-size: var(--text-3xl);
  }
  
  .fresh_display_1 {
    font-size: var(--text-5xl);
  }
  
  .business_display_2 {
    font-size: var(--text-4xl);
  }
}

@media (max-width: 480px) {
  .elite_hero_title {
    font-size: var(--text-3xl);
  }
  
  .new_section_title {
    font-size: var(--text-2xl);
  }
  
  .fresh_display_1 {
    font-size: var(--text-4xl);
  }
}

/* ===== LINK STYLES - ADDITIVE TO BOOTSTRAP ===== */
a:not([class]) {
  color: var(--text-link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: all var(--transition-fast);
}

a:not([class]):hover,
a:not([class]):focus {
  color: var(--text-link-hover);
  text-decoration-thickness: 2px;
}

a:not([class]):visited {
  color: var(--text-link);
}

/* ===== TEXT UTILITIES ===== */
.light_text_gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.bold_text_shadow_sm {
  text-shadow: var(--shadow-xs);
}

.pro_text_shadow_md {
  text-shadow: var(--shadow-sm);
}

.design_text_balance {
  text-wrap: balance;
}

.creative_text_pretty {
  text-wrap: pretty;
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */
@media (prefers-reduced-motion: reduce) {
  .base_nav_link,
  a:not([class]) {
    transition: none;
  }
}

@media (prefers-contrast: high) {
  .style_caption,
  .container_overline,
  .premium_footer_text {
    color: var(--text-secondary);
  }
  
  .top_hero_subtitle,
  .unique_section_subtitle {
    color: var(--text-primary);
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  .elite_hero_title,
  .new_section_title,
  .smart_heading_1,
  .section_heading_2 {
    break-after: avoid;
    page-break-after: avoid;
  }
  
  .light_text_gradient {
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
  }
}

/**
 * Font System - Global Application Rules
 * Applies dynamically selected font pairs to page elements
 * 
 * Font CSS variables are injected during build:
 * --font-primary: Body/paragraph font
 * --font-accent: Heading/title font
 * --font-heading: Alias for accent
 * --font-body: Alias for primary
 */

/* ========================================
   BASE TYPOGRAPHY
   ======================================== */

body {
  font-family: var(--font-primary);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   HEADINGS
   ======================================== */

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-accent);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5em;
}

h1, .h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
}

h2, .h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
}

h3, .h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

h4, .h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
}

h5, .h5 {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-weight: 500;
}

h6, .h6 {
  font-size: 1rem;
  font-weight: 500;
}

/* ========================================
   BODY TEXT & PARAGRAPHS
   ======================================== */

p {
  font-family: var(--font-body);
  margin-bottom: 1em;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.7;
}

/* ========================================
   SPECIAL TEXT ELEMENTS
   ======================================== */

.text-accent,
.hero-title,
.section-title,
.card-title {
  font-family: var(--font-accent);
}

.subtitle,
.section-subtitle {
  font-family: var(--font-primary);
  font-weight: 500;
}

blockquote {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.125rem;
  border-left: 3px solid currentColor;
  padding-left: 1.5rem;
  margin: 1.5rem 0;
}

/* ========================================
   NAVIGATION
   ======================================== */

.navbar,
.nav-link,
.navbar-brand {
  font-family: var(--font-primary);
  font-weight: 500;
}

/* ========================================
   BUTTONS
   ======================================== */

.btn,
button {
  font-family: var(--font-primary);
  font-weight: 600;
  letter-spacing: 0.025em;
}

/* ========================================
   FORMS
   ======================================== */

input,
textarea,
select,
.form-control,
.form-label {
  font-family: var(--font-primary);
}

.form-label {
  font-weight: 500;
}

/* ========================================
   CARDS & COMPONENTS
   ======================================== */

.card {
  font-family: var(--font-primary);
}

.card-header,
.card-title {
  font-family: var(--font-accent);
  font-weight: 600;
}

/* ========================================
   BADGES & LABELS
   ======================================== */

.badge,
.label,
.tag {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 0.875rem;
}

/* ========================================
   FOOTER
   ======================================== */

footer,
.footer {
  font-family: var(--font-primary);
  font-size: 0.9rem;
}

footer h1, footer h2, footer h3,
footer h4, footer h5, footer h6,
.footer h1, .footer h2, .footer h3,
.footer h4, .footer h5, .footer h6 {
  font-family: var(--font-accent);
}

/* ========================================
   CODE & PREFORMATTED TEXT
   ======================================== */

code,
pre,
kbd,
samp {
  font-family: var(--font-mono);
  font-size: 0.9em;
}

/* ========================================
   UTILITIES
   ======================================== */

.font-primary {
  font-family: var(--font-primary) !important;
}

.font-accent {
  font-family: var(--font-accent) !important;
}

.font-heading {
  font-family: var(--font-heading) !important;
}

.font-body {
  font-family: var(--font-body) !important;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 768px) {
  body {
    font-size: 0.95rem;
  }
  
  .lead {
    font-size: 1.125rem;
  }
}

/* ========================================
   PRINT STYLES
   ======================================== */

@media print {
  body {
    font-family: var(--font-primary);
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-accent);
    page-break-after: avoid;
  }
}


/* ===== LAYOUT UTILITIES ===== */
.core_section_wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.web_content_center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.main_content_between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dark_content_start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.clean_content_end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.ui_stack {
  display: flex;
  flex-direction: column;
}

.dark78_stack_center {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fresh96_full_height {
  min-height: 100vh;
}

.best80_section_height {
  min-height: 80vh;
}

.pro59_hero_height {
  min-height: 90vh;
}

/* ===== SPACING UTILITIES ===== */

/* Margin utilities */
.best39_m_0 { margin: 0; }
.main42_m_1 { margin: var(--space-1); }
.theme49_m_2 { margin: var(--space-2); }
.modern67_m_3 { margin: var(--space-3); }
.top25_m_4 { margin: var(--space-4); }
.site84_m_6 { margin: var(--space-6); }
.app30_m_8 { margin: var(--space-8); }
.pro20_m_12 { margin: var(--space-12); }
.creative42_m_16 { margin: var(--space-16); }

.base84_mx_auto { margin-left: auto; margin-right: auto; }
.app74_my_auto { margin-top: auto; margin-bottom: auto; }

.creative39_mt_0 { margin-top: 0; }
.prime23_mt_4 { margin-top: var(--space-4); }
.custom43_mt_8 { margin-top: var(--space-8); }
.studio50_mt_12 { margin-top: var(--space-12); }

.ui79_mb_0 { margin-bottom: 0; }
.creative15_mb_4 { margin-bottom: var(--space-4); }
.top89_mb_8 { margin-bottom: var(--space-8); }
.best5_mb_12 { margin-bottom: var(--space-12); }

/* Padding utilities */
.top35_p_0 { padding: 0; }
.modern12_p_1 { padding: var(--space-1); }
.digital53_p_2 { padding: var(--space-2); }
.creative28_p_3 { padding: var(--space-3); }
.best58_p_4 { padding: var(--space-4); }
.new81_p_6 { padding: var(--space-6); }
.design96_p_8 { padding: var(--space-8); }

.layout19_px_4 { padding-left: var(--space-4); padding-right: var(--space-4); }
.top96_px_6 { padding-left: var(--space-6); padding-right: var(--space-6); }
.prime25_px_8 { padding-left: var(--space-8); padding-right: var(--space-8); }

.container68_py_4 { padding-top: var(--space-4); padding-bottom: var(--space-4); }
.creative2_py_6 { padding-top: var(--space-6); padding-bottom: var(--space-6); }
.best72_py_8 { padding-top: var(--space-8); padding-bottom: var(--space-8); }

/* Gap utilities for flex/grid */
.smart71_gap_1 { gap: var(--space-1); }
.pro74_gap_2 { gap: var(--space-2); }
.ui44_gap_3 { gap: var(--space-3); }
.theme9_gap_4 { gap: var(--space-4); }
.dark4_gap_6 { gap: var(--space-6); }
.custom44_gap_8 { gap: var(--space-8); }

/* ===== VISUAL EFFECTS ===== */

/* Shadow utilities */
.page69_shadow_none { box-shadow: var(--shadow-none); }
.main52_shadow_xs { box-shadow: var(--shadow-xs); }
.digital50_shadow_sm { box-shadow: var(--shadow-sm); }
.dark28_shadow_md { box-shadow: var(--shadow-md); }
.bold71_shadow_lg { box-shadow: var(--shadow-lg); }
.digital73_shadow_xl { box-shadow: var(--shadow-xl); }
.smart70_shadow_2xl { box-shadow: var(--shadow-2xl); }
.unique71_shadow_inner { box-shadow: var(--shadow-inner); }
.main24_shadow_colored { box-shadow: var(--shadow-colored); }

/* Border radius utilities */
.web36_radius_none { border-radius: var(--radius-none); }
.dark29_radius_xs { border-radius: var(--radius-xs); }
.design25_radius_sm { border-radius: var(--radius-sm); }
.app77_radius_md { border-radius: var(--radius-md); }
.pro46_radius_lg { border-radius: var(--radius-lg); }
.page75_radius_xl { border-radius: var(--radius-xl); }
.fresh54_radius_2xl { border-radius: var(--radius-2xl); }
.main40_radius_3xl { border-radius: var(--radius-3xl); }
.style11_radius_full { border-radius: var(--radius-full); }

/* Gradient utilities */
.custom52_gradient_primary {
  background: var(--gradient-primary);
}

.new46_gradient_secondary {
  background: var(--gradient-secondary);
}

.business75_gradient_hero {
  background: var(--gradient-hero);
}

.custom46_gradient_card {
  background: var(--gradient-card);
}

.business56_gradient_overlay {
  position: relative;
}

.business56_gradient_overlay::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay-dark);
  pointer-events: none;
  z-index: 1;
}

.business56_gradient_overlay > * {
  position: relative;
  z-index: 2;
}

/* ===== INTERACTIVE STATES ===== */

/* Hover effects */
.custom77_hover_lift {
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.custom77_hover_lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.container26_hover_scale {
  transition: transform var(--transition-normal);
}

.container26_hover_scale:hover {
  transform: scale(1.02);
}

.main94_hover_shadow {
  transition: box-shadow var(--transition-normal);
}

.main94_hover_shadow:hover {
  box-shadow: var(--shadow-xl);
}

.design64_hover_fade {
  transition: opacity var(--transition-normal);
}

.design64_hover_fade:hover {
  opacity: var(--opacity-loading);
}

/* Focus states */
.content30_focus_ring {
  transition: box-shadow var(--transition-fast);
}

.content30_focus_ring:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--state-focus);
}

/* ===== SECTION-SPECIFIC UTILITIES ===== */

/* Hero section utilities */
.best98_hero_background {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.unique15_hero_content {
  position: relative;
  z-index: 2;
}

/* Services grid */
.bold79_services_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-6);
}

/* Team grid */
.theme95_team_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-4);
}

/* Features grid */
.modern69_features_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-6);
}

/* Gallery grid */
.site22_gallery_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-3);
}

/* Pricing grid */
.app58_pricing_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--space-6);
}

/* Timeline layout */
.premium13_timeline {
  position: relative;
}

.premium13_timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-light);
  transform: translateX(-50%);
}

.minimal23_timeline_item {
  position: relative;
  width: 50%;
  padding: var(--space-4);
}

.minimal23_timeline_item:nth-child(odd) {
  left: 0;
  text-align: right;
  padding-right: var(--space-8);
}

.minimal23_timeline_item:nth-child(even) {
  left: 50%;
  text-align: left;
  padding-left: var(--space-8);
}

/* ===== ANIMATION UTILITIES ===== */
.brand90_fade_in {
  opacity: 0;
  animation: tc-fadeIn var(--transition-slow) ease-out forwards;
}

@keyframes tc-fadeIn {
  to {
    opacity: 1;
  }
}

.section18_slide_up {
  transform: translateY(20px);
  opacity: 0;
  animation: tc-slideUp var(--transition-slow) ease-out forwards;
}

@keyframes tc-slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.content63_slide_in_left {
  transform: translateX(-20px);
  opacity: 0;
  animation: tc-slideInLeft var(--transition-slow) ease-out forwards;
}

@keyframes tc-slideInLeft {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.app69_scale_in {
  transform: scale(0.95);
  opacity: 0;
  animation: tc-scaleIn var(--transition-slow) ease-out forwards;
}

@keyframes tc-scaleIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Transition utilities */
.dark99_transition_all {
  transition: var(--transition-all);
}

.new82_transition_fast {
  transition: all var(--transition-fast);
}

.agency53_transition_normal {
  transition: all var(--transition-normal);
}

.digital5_transition_slow {
  transition: all var(--transition-slow);
}

/* ===== COLOR UTILITIES ===== */
.new68_bg_primary { background-color: var(--bg-primary); }
.theme91_bg_secondary { background-color: var(--bg-secondary); }
.main79_bg_muted { background-color: var(--bg-muted); }
.pro64_bg_glass { background-color: var(--bg-glass); }

.digital3_text_primary { color: var(--text-primary); }
.dark86_text_secondary { color: var(--text-secondary); }
.bold44_text_muted { color: var(--text-muted); }
.business10_text_inverse { color: var(--text-inverse); }
.custom67_text_link { color: var(--text-link); }

.agency46_border_light { border-color: var(--border-light); }
.top87_border_medium { border-color: var(--border-medium); }
.app37_border_strong { border-color: var(--border-strong); }
.prime15_border_interactive { border-color: var(--border-interactive); }

/* ===== RESPONSIVE UTILITIES ===== */
@media (max-width: 768px) {
  .bold79_services_grid,
  .modern69_features_grid,
  .theme95_team_grid,
  .app58_pricing_grid {
    grid-template-columns: 1fr;
  }
  
  .site22_gallery_grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
  
  .premium13_timeline::before {
    left: 30px;
  }
  
  .minimal23_timeline_item {
    width: 100%;
    left: 0 !important;
    text-align: left;
    padding-left: var(--space-16) !important;
    padding-right: var(--space-4) !important;
  }
  
  .best80_section_height {
    min-height: 60vh;
  }
  
  .pro59_hero_height {
    min-height: 70vh;
  }
}

@media (max-width: 480px) {
  .site22_gallery_grid {
    grid-template-columns: 1fr;
  }
  
  .minimal23_timeline_item {
    padding-left: var(--space-12) !important;
  }
}

/* ===== ACCESSIBILITY UTILITIES ===== */
.creative12_sr_only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.minimal86_not_sr_only {
  position: static;
  width: auto;
  height: auto;
  padding: 0;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.agency40_skip_link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--bg-inverse);
  color: var(--text-inverse);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  text-decoration: none;
  z-index: 9999;
  transition: top var(--transition-fast);
}

.agency40_skip_link:focus {
  top: 6px;
}

/* ===== PRINT UTILITIES ===== */
@media print {
  .clean70_no_print {
    display: none !important;
  }
  
  .prime95_print_only {
    display: block !important;
  }
  
  .main52_shadow_xs,
  .digital50_shadow_sm,
  .dark28_shadow_md,
  .bold71_shadow_lg,
  .digital73_shadow_xl,
  .smart70_shadow_2xl {
    box-shadow: none !important;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .brand90_fade_in,
  .section18_slide_up,
  .content63_slide_in_left,
  .app69_scale_in {
    animation: none;
    opacity: 1;
    transform: none;
  }
  
  .custom77_hover_lift,
  .container26_hover_scale,
  .main94_hover_shadow,
  .design64_hover_fade,
  .dark99_transition_all,
  .new82_transition_fast,
  .agency53_transition_normal,
  .digital5_transition_slow {
    transition: none;
  }
}

/* ============================================
   Header Section v-102: Professional Blue
   ============================================ */

.header-custom {
  background: var(--surface-primary);
  box-shadow: 0 2px 12px color-mix(in srgb, var(--neutral-900) 8%, transparent);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

/* ============================================
   Navbar Base Styles
   ============================================ */

.header-custom .navbar {
  padding: 1.25rem 0;
  position: relative;
}

.header-custom .container {
  position: relative;
}

/* ============================================
   Brand/Logo Styling
   ============================================ */

.header-custom .navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-700);
  letter-spacing: -0.02em;
  transition: all 0.3s ease;
  position: relative;
  z-index: 10004;
}

.header-custom .navbar-brand:hover {
  color: var(--primary-500);
  transform: translateY(-2px);
}

/* ============================================
   Custom Hamburger Toggle - DARK COLOR
   ============================================ */

.header-custom .hamburger-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 2px solid color-mix(in srgb, var(--neutral-700) 20%, transparent);
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  z-index: 10003;
  transition: all 0.3s ease;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.header-custom .hamburger-toggle:hover {
  background: color-mix(in srgb, var(--primary-500) 8%, transparent);
  border-color: var(--primary-500);
}

.header-custom .hamburger-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-500) 20%, transparent);
}

/* Hamburger Lines - DARK COLOR */
.header-custom .hamburger-line {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #334155;
  border-radius: 3px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

/* Animated X Transformation */
.header-custom .hamburger-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background: var(--primary-700);
}

.header-custom .hamburger-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.header-custom .hamburger-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background: var(--primary-700);
}

/* ============================================
   Backdrop Overlay - LOW Z-INDEX
   ============================================ */

.header-custom .navbar-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: color-mix(in srgb, var(--neutral-900) 40%, transparent);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: -1;
}

/* ============================================
   Navigation Links - Identical Styles
   ============================================ */

.header-custom .navbar-nav {
  gap: 2rem;
}

.header-custom .nav-link {
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: all 0.3s ease;
}

.header-custom .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-500);
  transition: width 0.3s ease;
}

.header-custom .nav-link:hover {
  color: var(--primary-500);
}

.header-custom .nav-link:hover::after {
  width: 100%;
}

/* ============================================
   Decorative Elements
   ============================================ */

.header-custom .header-decoration {
  position: absolute;
  top: -10px;
  right: 100px;
  pointer-events: none;
  z-index: 1;
}

.header-custom .decoration-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--primary-300) 15%, transparent), transparent);
  position: absolute;
  animation: float 6s ease-in-out infinite;
}

.header-custom .decoration-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-500);
  position: absolute;
  top: 40px;
  right: 20px;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(180deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* ============================================
   Tablet & Mobile Responsive
   ============================================ */

@media (max-width: 991.98px) {
  /* Show Hamburger Toggle */
  .header-custom .hamburger-toggle {
    display: flex;
  }

  /* Mobile Menu Styles - CORRECT Z-INDEX */
  .header-custom .navbar-collapse {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--surface-primary);
    box-shadow: -4px 0 20px color-mix(in srgb, var(--neutral-900) 15%, transparent);
    padding: 6rem 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10;
    overflow-y: auto;
  }

  .header-custom .navbar-collapse.show {
    right: 0;
  }

  /* Show Backdrop When Menu Open */
  .header-custom .navbar-collapse.show ~ .navbar-backdrop {
    opacity: 1;
    visibility: visible;
  }

  /* Navigation Vertical Layout */
  .header-custom .navbar-nav {
    flex-direction: column;
    gap: 0;
  }

  .header-custom .nav-item {
    width: 100%;
    border-bottom: 1px solid color-mix(in srgb, var(--neutral-300) 50%, transparent);
  }

  .header-custom .nav-link {
    padding: 1.25rem 0;
    font-size: 1.125rem;
    display: block;
  }

  .header-custom .nav-link::after {
    display: none;
  }

  /* Decorative Elements Hidden on Mobile */
  .header-custom .header-decoration {
    display: none;
  }
}

/* ============================================
   Mobile Small Screens
   ============================================ */

@media (max-width: 575.98px) {
  .header-custom .navbar {
    padding: 1rem 0;
  }

  .header-custom .navbar-brand {
    font-size: 1.25rem;
  }

  .header-custom .navbar-collapse {
    width: 280px;
  }

  .header-custom .hamburger-toggle {
    width: 38px;
    height: 38px;
  }

  .header-custom .hamburger-line {
    width: 22px;
  }
}

/* ============================================
   Large Desktop Enhancements
   ============================================ */

@media (min-width: 1400px) {
  .header-custom .navbar {
    padding: 1.5rem 0;
  }

  .header-custom .navbar-brand {
    font-size: 1.75rem;
  }

  .header-custom .nav-link {
    font-size: 1.0625rem;
  }

  .header-custom .navbar-nav {
    gap: 2.5rem;
  }
}

/* ============================================
   Accessibility Improvements
   ============================================ */

.header-custom .hamburger-toggle:focus-visible {
  outline: 2px solid var(--primary-500);
  outline-offset: 2px;
}

.header-custom .nav-link:focus-visible {
  outline: 2px solid var(--primary-500);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
  .header-custom * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
   Hero Section v-139 - Professional Blue Theme
   ============================================ */

.hero-style {
  background: linear-gradient(
    135deg,
    var(--surface-primary) 0%,
    color-mix(in srgb, var(--primary-50) 50%, var(--surface-primary) 50%) 100%
  );
  position: relative;
  padding: 4rem 0 6rem;
}

/* Background Decorations */
.hero-style__bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero-style__circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--primary-300) 20%, transparent 80%),
    transparent 70%
  );
  opacity: 0.4;
  animation: hero-style-float 20s ease-in-out infinite;
}

.hero-style__circle--1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-style__circle--2 {
  width: 300px;
  height: 300px;
  bottom: 10%;
  left: -50px;
  animation-delay: -10s;
}

.hero-style__blob {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    ellipse at center,
    color-mix(in srgb, var(--primary-100) 15%, transparent 85%),
    transparent
  );
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  opacity: 0.3;
  animation: hero-style-morph 15s ease-in-out infinite;
}

/* Content Styles */
.hero-style__content {
  position: relative;
  z-index: 2;
}

.hero-style__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary-500) 10%, var(--surface-primary) 90%),
    var(--surface-primary)
  );
  border: 2px solid var(--primary-300);
  border-radius: 50px;
  animation: hero-style-pulse 3s ease-in-out infinite;
}

.hero-style__badge i {
  color: var(--primary-500);
  font-size: 1.25rem;
}

.hero-style__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.hero-style__subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  color: var(--primary-700);
  line-height: 1.4;
}

.hero-style__description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 600px;
}

/* Feature Icons Grid */
.hero-style__features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-style__feature-item {
  flex: 0 0 auto;
}

.hero-style__feature-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-500),
    var(--primary-700)
  );
  border-radius: 16px;
  color: var(--light);
  font-size: 1.5rem;
  box-shadow: 0 4px 12px color-mix(in srgb, var(--primary-500) 30%, transparent 70%);
  transition: all 0.3s ease;
}

.hero-style__feature-icon:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--primary-500) 40%, transparent 60%);
}

/* Image Section */
.hero-style__image-wrapper {
  position: relative;
  z-index: 2;
}

.hero-style__image {
  position: relative;
  z-index: 1;
}

.hero-style__image img {
  border: 8px solid var(--surface-primary);
  transition: transform 0.5s ease;
}

.hero-style__image:hover img {
  transform: scale(1.02);
}

/* Floating Elements */
.hero-style__float-element {
  position: absolute;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-primary);
  border: 3px solid var(--primary-300);
  border-radius: 20px;
  color: var(--primary-700);
  font-size: 1.75rem;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--neutral-900) 15%, transparent 85%);
  animation: hero-style-float-element 4s ease-in-out infinite;
  z-index: 3;
}

.hero-style__float-element--1 {
  top: 10%;
  right: -30px;
  animation-delay: 0s;
}

.hero-style__float-element--2 {
  bottom: 20%;
  left: -35px;
  animation-delay: -2s;
}

.hero-style__float-element--3 {
  top: 50%;
  right: -25px;
  animation-delay: -1s;
}

/* Decorative Shapes */
.hero-style__shape {
  position: absolute;
  z-index: 0;
  opacity: 0.5;
}

.hero-style__shape--1 {
  width: 150px;
  height: 150px;
  top: -30px;
  left: -30px;
  background: linear-gradient(
    45deg,
    transparent 30%,
    color-mix(in srgb, var(--primary-300) 30%, transparent 70%) 100%
  );
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: hero-style-rotate 20s linear infinite;
}

.hero-style__shape--2 {
  width: 120px;
  height: 120px;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(
    225deg,
    color-mix(in srgb, var(--primary-500) 25%, transparent 75%),
    transparent
  );
  border-radius: 63% 37% 54% 46% / 55% 48% 52% 45%;
  animation: hero-style-rotate 25s linear infinite reverse;
}

/* Bottom Wave */
.hero-style__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1;
}

.hero-style__wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-style__wave path {
  fill: var(--surface-primary);
  opacity: 0.3;
}

/* Animations */
@keyframes hero-style-float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.05);
  }
}

@keyframes hero-style-morph {
  0%, 100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  25% {
    border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
  }
  50% {
    border-radius: 30% 70% 50% 50% / 60% 30% 70% 40%;
  }
  75% {
    border-radius: 70% 30% 40% 60% / 40% 70% 50% 60%;
  }
}

@keyframes hero-style-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 color-mix(in srgb, var(--primary-500) 40%, transparent 60%);
  }
  50% {
    transform: scale(1.02);
    box-shadow: 0 0 0 10px transparent;
  }
}

@keyframes hero-style-float-element {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-10px) rotate(5deg);
  }
  75% {
    transform: translateY(10px) rotate(-5deg);
  }
}

@keyframes hero-style-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .hero-style {
    padding: 3rem 0 4rem;
  }

  .hero-style__title {
    font-size: 2.25rem;
  }

  .hero-style__subtitle {
    font-size: 1.5rem;
  }

  .hero-style__description {
    font-size: 1rem;
  }

  .hero-style__float-element {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .hero-style__circle--1 {
    width: 300px;
    height: 300px;
  }

  .hero-style__circle--2 {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 767.98px) {
  .hero-style {
    padding: 2rem 0 3rem;
  }

  .hero-style__badge {
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }

  .hero-style__badge i {
    font-size: 1rem;
  }

  .hero-style__title {
    font-size: 1.875rem;
  }

  .hero-style__subtitle {
    font-size: 1.25rem;
  }

  .hero-style__feature-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    border-radius: 12px;
  }

  .hero-style__float-element {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .hero-style__float-element--1,
  .hero-style__float-element--2,
  .hero-style__float-element--3 {
    display: none;
  }

  .hero-style__wave {
    height: 80px;
  }
}

@media (max-width: 575.98px) {
  .hero-style__features {
    gap: 0.75rem;
  }

  .hero-style__feature-icon {
    width: 45px;
    height: 45px;
    font-size: 1.125rem;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .hero-style__circle,
  .hero-style__blob,
  .hero-style__badge,
  .hero-style__float-element,
  .hero-style__shape {
    animation: none;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  .hero-style__badge {
    border-width: 3px;
  }

  .hero-style__feature-icon {
    border: 2px solid var(--primary-700);
  }

  .hero-style__float-element {
    border-width: 4px;
  }
}

/* ================================
   About Section v-145 - Professional Blue
   Theme: professional-blue-01
   ================================ */

.about-section-featured {
  position: relative;
  background: var(--surface-primary);
  overflow: hidden;
}

/* Content Wrapper */
.about-section-featured .content-wrapper {
  position: relative;
  z-index: 2;
}

/* Badge Wrapper */
.about-section-featured .badge-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.about-section-featured .decorative-badge {
  display: inline-block;
  width: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--primary-500),
    var(--primary-300)
  );
  border-radius: 2px;
}

/* Typography */
.about-section-featured #about-title {
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.about-section-featured #about-subtitle {
  color: var(--primary-500);
  font-weight: 500;
  font-size: 1.25rem;
}

.about-section-featured #about-desc {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* Image Grid Primary */
.about-section-featured .image-grid-primary {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 1.5rem;
  height: 500px;
}

.about-section-featured .image-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-section-featured .image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.about-section-featured .image-large {
  grid-row: 1 / 3;
}

.about-section-featured .image-small {
  align-self: end;
}

.about-section-featured .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-section-featured .image-wrapper:hover img {
  transform: scale(1.05);
}

/* Decorative Shapes on Images */
.about-section-featured .decorative-shape {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.about-section-featured .shape-1 {
  width: 120px;
  height: 120px;
  background: color-mix(in srgb, var(--primary-500) 20%, transparent);
  top: -30px;
  right: -30px;
  filter: blur(40px);
}

.about-section-featured .shape-2 {
  width: 80px;
  height: 80px;
  background: color-mix(in srgb, var(--primary-300) 30%, transparent);
  bottom: -20px;
  left: -20px;
  filter: blur(30px);
}

/* Divider Section */
.about-section-featured .divider-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}

.about-section-featured .decorative-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neutral-300),
    transparent
  );
  max-width: 200px;
}

.about-section-featured .divider-icon {
  font-size: 2rem;
  color: var(--primary-500);
}

/* Feature Cards */
.about-section-featured .features-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-section-featured .feature-card {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--surface-secondary);
  border-radius: 12px;
  border: 1px solid var(--neutral-100);
  transition: all 0.3s ease;
}

.about-section-featured .feature-card:hover {
  border-color: var(--primary-300);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateX(8px);
}

.about-section-featured .feature-icon-wrapper {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    135deg,
    var(--primary-500),
    color-mix(in srgb, var(--primary-500) 70%, var(--primary-700) 30%)
  );
  border-radius: 12px;
  color: var(--light);
  font-size: 1.5rem;
}

.about-section-featured .feature-content h3 {
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.about-section-featured .feature-content p {
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Image Stack Wrapper */
.about-section-featured .image-stack-wrapper {
  position: relative;
  height: 100%;
  min-height: 600px;
}

.about-section-featured .image-accent {
  position: relative;
  height: 100%;
  border-radius: 20px;
}

.about-section-featured .decorative-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    transparent 0%,
    color-mix(in srgb, var(--primary-700) 30%, transparent) 100%
  );
  border-radius: 20px;
  pointer-events: none;
}

.about-section-featured .floating-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  width: 80px;
  height: 80px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  animation: float-badge-v145 3s ease-in-out infinite;
  z-index: 3;
}

.about-section-featured .floating-badge i {
  font-size: 2rem;
  color: var(--primary-500);
}

@keyframes float-badge-v145 {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.about-section-featured .decorative-blob {
  position: absolute;
  top: 50%;
  left: -50px;
  width: 200px;
  height: 200px;
  background: color-mix(in srgb, var(--primary-300) 15%, transparent);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  filter: blur(60px);
  animation: blob-morph-v145 8s ease-in-out infinite;
  z-index: 1;
}

@keyframes blob-morph-v145 {
  0%, 100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  50% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
}

/* Background Decoration */
.about-section-featured .background-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.about-section-featured .deco-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    color-mix(in srgb, var(--primary-500) 8%, transparent),
    transparent 70%
  );
}

.about-section-featured .circle-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
}

.about-section-featured .circle-2 {
  width: 300px;
  height: 300px;
  bottom: 100px;
  left: -80px;
}

.about-section-featured .circle-3 {
  width: 250px;
  height: 250px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .about-section-featured .image-grid-primary {
    grid-template-columns: 1fr;
    height: auto;
    gap: 1rem;
  }

  .about-section-featured .image-large {
    grid-row: auto;
    height: 350px;
  }

  .about-section-featured .image-small {
    height: 250px;
  }

  .about-section-featured .image-stack-wrapper {
    min-height: 400px;
    margin-top: 2rem;
  }

  .about-section-featured .feature-card {
    padding: 1.5rem;
  }

  .about-section-featured .divider-section {
    gap: 1rem;
  }

  .about-section-featured .decorative-line {
    max-width: 100px;
  }
}

@media (max-width: 767.98px) {
  .about-section-featured #about-title {
    font-size: 2rem;
  }

  .about-section-featured #about-subtitle {
    font-size: 1.1rem;
  }

  .about-section-featured .feature-card {
    flex-direction: column;
    gap: 1rem;
    padding: 1.25rem;
  }

  .about-section-featured .feature-icon-wrapper {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .about-section-featured .image-stack-wrapper {
    min-height: 300px;
  }

  .about-section-featured .floating-badge {
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
  }

  .about-section-featured .floating-badge i {
    font-size: 1.5rem;
  }

  .about-section-featured .circle-1,
  .about-section-featured .circle-2,
  .about-section-featured .circle-3 {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 575.98px) {
  .about-section-featured .image-large {
    height: 280px;
  }

  .about-section-featured .image-small {
    height: 200px;
  }
}

.features-section-bold {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(
    180deg,
    var(--surface-primary) 0%,
    color-mix(in srgb, var(--primary-50) 30%, var(--surface-primary) 70%) 100%
  );
  overflow: hidden;
}

/* Section Header */
.features-section-bold .section-header {
  position: relative;
  z-index: 2;
}

.features-section-bold .section-title {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.features-section-bold .section-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-500);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.features-section-bold .section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* Feature Cards */
.features-section-bold .feature-card {
  position: relative;
  background: var(--surface-primary);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  border: 2px solid color-mix(in srgb, var(--primary-300) 20%, transparent 80%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.features-section-bold .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary-500) 5%, transparent 95%) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.features-section-bold .feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-500);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px color-mix(in srgb, var(--primary-500) 20%, transparent 80%);
}

.features-section-bold .feature-card:hover::before {
  opacity: 1;
}

/* Feature Icon */
.features-section-bold .feature-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features-section-bold .icon-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-300) 0%,
    var(--primary-500) 100%
  );
  border-radius: 20px;
  opacity: 0.1;
  transition: all 0.4s ease;
}

.features-section-bold .feature-card:hover .icon-background {
  opacity: 0.15;
  transform: rotate(10deg) scale(1.1);
}

.features-section-bold .feature-icon {
  position: relative;
  z-index: 1;
  font-size: 2.5rem;
  color: var(--primary-500);
  transition: all 0.4s ease;
}

.features-section-bold .feature-card:hover .feature-icon {
  transform: scale(1.1);
  color: var(--primary-700);
}

/* Feature Content */
.features-section-bold .feature-content {
  position: relative;
  z-index: 1;
}

.features-section-bold .feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.features-section-bold .feature-card:hover .feature-title {
  color: var(--primary-700);
}

.features-section-bold .feature-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* Feature Decoration */
.features-section-bold .feature-decoration {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 8px;
  opacity: 0.3;
  transition: opacity 0.3s ease;
}

.features-section-bold .feature-card:hover .feature-decoration {
  opacity: 0.6;
}

.features-section-bold .decoration-dot {
  width: 8px;
  height: 8px;
  background: var(--primary-500);
  border-radius: 50%;
}

/* Floating Shapes */
.features-section-bold .floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.features-section-bold .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
}

.features-section-bold .shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-500);
  top: -100px;
  right: -100px;
  animation: float 20s infinite ease-in-out;
}

.features-section-bold .shape-2 {
  width: 300px;
  height: 300px;
  background: var(--primary-300);
  bottom: -80px;
  left: -80px;
  animation: float 25s infinite ease-in-out reverse;
}

.features-section-bold .shape-3 {
  width: 200px;
  height: 200px;
  background: var(--primary-700);
  top: 50%;
  left: 10%;
  animation: float 30s infinite ease-in-out;
}

.features-section-bold .shape-4 {
  width: 150px;
  height: 150px;
  background: var(--primary-500);
  bottom: 20%;
  right: 15%;
  animation: float 22s infinite ease-in-out reverse;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -20px) rotate(90deg);
  }
  50% {
    transform: translate(0, -40px) rotate(180deg);
  }
  75% {
    transform: translate(-20px, -20px) rotate(270deg);
  }
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .features-section-bold {
    padding: 80px 0;
  }

  .features-section-bold .section-title {
    font-size: 2.25rem;
  }

  .features-section-bold .section-subtitle {
    font-size: 1.125rem;
  }

  .features-section-bold .section-description {
    font-size: 1rem;
  }

  .features-section-bold .feature-card {
    padding: 2rem;
  }

  .features-section-bold .feature-title {
    font-size: 1.375rem;
  }
}

@media (max-width: 767.98px) {
  .features-section-bold {
    padding: 60px 0;
  }

  .features-section-bold .section-title {
    font-size: 2rem;
  }

  .features-section-bold .section-subtitle {
    font-size: 1rem;
  }

  .features-section-bold .feature-card {
    padding: 1.75rem;
  }

  .features-section-bold .feature-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
  }

  .features-section-bold .feature-icon {
    font-size: 2rem;
  }

  .features-section-bold .feature-title {
    font-size: 1.25rem;
  }

  .features-section-bold .feature-description {
    font-size: 0.9375rem;
  }

  .features-section-bold .shape {
    opacity: 0.03;
  }
}

@media (max-width: 575.98px) {
  .features-section-bold .section-title {
    font-size: 1.75rem;
  }

  .features-section-bold .feature-card {
    padding: 1.5rem;
  }

  .features-section-bold .feature-decoration {
    bottom: 1.5rem;
    right: 1.5rem;
  }
}

.services-section-custom {
  position: relative;
  background: linear-gradient(to bottom, 
    var(--light), 
    color-mix(in srgb, var(--primary-50) 20%, var(--light) 80%));
  overflow: hidden;
}

/* Decorative Blobs */
.services-section-custom .blob {
  position: absolute;
  border-radius: 63% 37% 54% 46% / 45% 68% 32% 55%;
  opacity: 0.08;
  pointer-events: none;
  animation: blobFloat 20s ease-in-out infinite;
}

.services-section-custom .blob-1 {
  width: 500px;
  height: 500px;
  background: var(--primary-300);
  top: -150px;
  right: -100px;
  animation-delay: 0s;
}

.services-section-custom .blob-2 {
  width: 400px;
  height: 400px;
  background: var(--primary-500);
  bottom: 100px;
  left: -150px;
  animation-delay: 7s;
}

.services-section-custom .blob-3 {
  width: 350px;
  height: 350px;
  background: var(--primary-700);
  top: 50%;
  right: 10%;
  animation-delay: 14s;
}

@keyframes blobFloat {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -30px) rotate(90deg);
  }
  50% {
    transform: translate(-20px, 20px) rotate(180deg);
  }
  75% {
    transform: translate(20px, 30px) rotate(270deg);
  }
}

/* Header */
.services-section-custom .header-content {
  position: relative;
  z-index: 2;
}

.services-section-custom .subtitle-creative {
  color: var(--primary-700);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.services-section-custom #services-title {
  color: var(--text-primary);
  line-height: 1.2;
}

.services-section-custom .header-description {
  padding-top: 3rem;
  position: relative;
  z-index: 2;
}

.services-section-custom #services-desc {
  color: var(--text-secondary);
}

/* Asymmetric Grid */
.services-section-custom .services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 2;
}

/* Box Sizes */
.services-section-custom .box-large {
  grid-column: span 7;
}

.services-section-custom .box-medium {
  grid-column: span 6;
}

.services-section-custom .box-small {
  grid-column: span 5;
}

/* Service Box */
.services-section-custom .service-box {
  position: relative;
}

.services-section-custom .box-inner {
  background: var(--light);
  border: 3px solid var(--surface-secondary);
  border-radius: 24px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  overflow: hidden;
}

.services-section-custom .box-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    color-mix(in srgb, var(--primary-300) 40%, transparent 60%) 90deg,
    transparent 180deg
  );
  opacity: 0;
  transition: all 0.6s ease;
  animation: rotate 6s linear infinite;
  animation-play-state: paused;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.services-section-custom .box-inner:hover::before {
  opacity: 1;
  animation-play-state: running;
}

.services-section-custom .service-box:hover .box-inner {
  transform: translateY(-10px);
  border-color: var(--primary-300);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

/* Icon */
.services-section-custom .decorative-icon {
  width: 75px;
  height: 75px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.services-section-custom .service-box:hover .decorative-icon {
  transform: rotate(-10deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.services-section-custom .decorative-icon i {
  font-size: 2rem;
  color: var(--light);
}

/* Content */
.services-section-custom .box-title {
  font-size: 1.625rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.services-section-custom .box-description {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.services-section-custom .box-features {
  color: var(--text-secondary);
  font-size: 0.875rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding: 1.25rem;
  background: var(--surface-secondary);
  border-radius: 12px;
  position: relative;
  z-index: 1;
}

.services-section-custom .box-price {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-700);
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .services-section-custom .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .services-section-custom .box-large,
  .services-section-custom .box-medium,
  .services-section-custom .box-small {
    grid-column: span 1;
  }
  
  .services-section-custom .header-description {
    padding-top: 1.5rem;
  }
}

@media (max-width: 768px) {
  .services-section-custom #services-title {
    font-size: 2rem;
  }
  
  .services-section-custom .box-inner {
    padding: 2rem;
  }
  
  .services-section-custom .blob {
    opacity: 0.05;
  }
}


.priceplan-section-variant {
  position: relative;
  background: var(--surface-primary);
  overflow: hidden;
}

/* Decorative Shapes */
.priceplan-section-variant .decorative-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.priceplan-section-variant .shape-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
  opacity: 0.4;
}

.priceplan-section-variant .shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
}

.priceplan-section-variant .shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: -50px;
}

/* Section Header */
.priceplan-section-variant .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.priceplan-section-variant .section-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-500);
}

.priceplan-section-variant .section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Price Card */
.priceplan-section-variant .price-card {
  position: relative;
  background: var(--light);
  border: 2px solid var(--neutral-100);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  z-index: 1;
}

.priceplan-section-variant .price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-300);
}

.priceplan-section-variant .price-card.featured {
  border-color: var(--primary-500);
  border-width: 3px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.priceplan-section-variant .featured-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: var(--light);
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Card Header */
.priceplan-section-variant .card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.priceplan-section-variant .icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-300));
  border-radius: 50%;
  font-size: 2rem;
  color: var(--primary-700);
  transition: all 0.3s ease;
}

.priceplan-section-variant .price-card:hover .icon-wrapper {
  transform: scale(1.1) rotate(10deg);
  background: linear-gradient(135deg, var(--primary-300), var(--primary-500));
}

.priceplan-section-variant .plan-name {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

/* Card Body */
.priceplan-section-variant .price-wrapper {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--neutral-100);
}

.priceplan-section-variant .plan-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-500);
  margin: 0;
  line-height: 1;
}

.priceplan-section-variant .plan-price span {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.priceplan-section-variant .plan-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  min-height: 80px;
}

/* Features */
.priceplan-section-variant .plan-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.priceplan-section-variant .feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--text-primary);
}

.priceplan-section-variant .feature-item i {
  font-size: 1.25rem;
  color: var(--primary-500);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .priceplan-section-variant .section-title {
    font-size: 2rem;
  }

  .priceplan-section-variant .section-subtitle {
    font-size: 1.25rem;
  }

  .priceplan-section-variant .plan-price {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .priceplan-section-variant .section-title {
    font-size: 1.75rem;
  }

  .priceplan-section-variant .price-card {
    padding: 1.5rem;
  }

  .priceplan-section-variant .plan-desc {
    min-height: auto;
  }
}


/* ============================================
   Team Section v-114 - Professional Blue Theme
   ============================================ */

.team-section-minimal {
  position: relative;
  background: linear-gradient(135deg, 
    var(--surface-primary) 0%, 
    color-mix(in srgb, var(--primary-50) 30%, var(--surface-primary) 70%) 100%);
  overflow: hidden;
}

/* Section Header */
.team-section-minimal .section-header {
  position: relative;
  z-index: 2;
}

.team-section-minimal .section-title {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.team-section-minimal .section-subtitle {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  font-weight: 600;
  color: var(--primary-500);
  margin-bottom: 1rem;
}

.team-section-minimal .section-description {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 100%;
}

/* Decorative Shapes */
.team-section-minimal .decorative-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.team-section-minimal .shape-circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, 
    color-mix(in srgb, var(--primary-300) 20%, transparent 80%), 
    transparent 70%);
  animation: float 20s ease-in-out infinite;
}

.team-section-minimal .shape-circle-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.team-section-minimal .shape-circle-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -50px;
  animation-delay: 5s;
}

.team-section-minimal .shape-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--primary-100) 15%, transparent 85%), 
    color-mix(in srgb, var(--primary-300) 10%, transparent 90%));
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  filter: blur(60px);
  opacity: 0.5;
  animation: blob-morph 15s ease-in-out infinite;
}

.team-section-minimal .shape-blob-1 {
  top: 50%;
  right: 10%;
  animation-delay: 3s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

@keyframes blob-morph {
  0%, 100% { 
    border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
    transform: rotate(0deg);
  }
  50% { 
    border-radius: 55% 45% 40% 60% / 45% 55% 45% 55%;
    transform: rotate(180deg);
  }
}

/* Team Card */
.team-section-minimal .team-card {
  position: relative;
  height: 100%;
  transition: transform 0.4s ease;
}

.team-section-minimal .team-card:hover {
  transform: translateY(-10px);
}

.team-section-minimal .team-card-inner {
  position: relative;
  background: var(--surface-primary);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.team-section-minimal .team-card:hover .team-card-inner {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Team Image */
.team-section-minimal .team-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* Square aspect ratio */
  overflow: hidden;
  background: linear-gradient(135deg, 
    var(--neutral-100), 
    var(--neutral-50));
}

.team-section-minimal .team-member-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-section-minimal .team-card:hover .team-member-photo {
  transform: scale(1.08);
}

.team-section-minimal .image-gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to top, 
    color-mix(in srgb, var(--primary-700) 60%, transparent 40%), 
    transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-section-minimal .team-card:hover .image-gradient-overlay {
  opacity: 1;
}

/* Team Info */
.team-section-minimal .team-info {
  padding: 1.75rem 1.5rem;
  text-align: center;
  background: var(--surface-primary);
  position: relative;
  z-index: 1;
}

.team-section-minimal .member-name {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  transition: color 0.3s ease;
}

.team-section-minimal .team-card:hover .member-name {
  color: var(--primary-500);
}

.team-section-minimal .member-role {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.5;
  font-weight: 500;
}

/* Card Accent */
.team-section-minimal .card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--primary-500), 
    var(--primary-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.team-section-minimal .team-card:hover .card-accent {
  transform: scaleX(1);
}

/* Decorative Icon Grid */
.team-section-minimal .decorative-icon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem;
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--primary-50) 50%, var(--surface-primary) 50%), 
    var(--surface-primary));
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.team-section-minimal .icon-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: var(--surface-primary);
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.team-section-minimal .icon-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, var(--primary-500), var(--primary-300));
}

.team-section-minimal .icon-item i {
  font-size: 2rem;
  color: var(--primary-500);
  transition: color 0.3s ease;
}

.team-section-minimal .icon-item:hover i {
  color: var(--surface-primary);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .team-section-minimal .section-title {
    font-size: 2rem;
  }
  
  .team-section-minimal .section-subtitle {
    font-size: 1.25rem;
  }
  
  .team-section-minimal .shape-circle-1 {
    width: 250px;
    height: 250px;
    top: -125px;
    right: -50px;
  }
  
  .team-section-minimal .shape-circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -30px;
  }
  
  .team-section-minimal .shape-blob-1 {
    width: 300px;
    height: 300px;
  }
}

@media (max-width: 767.98px) {
  .team-section-minimal {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  
  .team-section-minimal .section-title {
    font-size: 1.75rem;
  }
  
  .team-section-minimal .team-info {
    padding: 1.25rem 1rem;
  }
  
  .team-section-minimal .member-name {
    font-size: 1.25rem;
  }
  
  .team-section-minimal .member-role {
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .team-section-minimal .section-header {
    margin-bottom: 2rem !important;
  }
  
  .team-section-minimal .team-card {
    margin-bottom: 1rem;
  }
  
  .team-section-minimal .decorative-shapes {
    opacity: 0.5;
  }
}

.reviews-section-custom {
  position: relative;
  padding: 80px 0;
  background: var(--surface-primary);
  overflow: hidden;
}

/* Header Styles */
.reviews-section-custom .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.reviews-section-custom .section-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-500);
  margin-bottom: 1.5rem;
}

.reviews-section-custom .section-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Review Card */
.reviews-section-custom .review-card {
  background: var(--light);
  border: 1px solid var(--neutral-100);
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
}

.reviews-section-custom .review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-300);
}

/* Quote Icon */
.reviews-section-custom .quote-icon {
  font-size: 3rem;
  color: var(--primary-300);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

/* Review Text */
.reviews-section-custom .review-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 2rem;
  flex-grow: 1;
}

/* Reviewer Info */
.reviews-section-custom .reviewer-info {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.reviews-section-custom .avatar-placeholder {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-300), var(--primary-500));
  flex-shrink: 0;
}

.reviews-section-custom .reviewer-details {
  flex: 1;
}

.reviews-section-custom .reviewer-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.4;
}

/* Featured Review */
.reviews-section-custom .featured-review {
  background: linear-gradient(135deg, var(--primary-50), var(--light));
  border: 2px solid var(--primary-300);
}

/* Decorative Blobs */
.reviews-section-custom .decorative-blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.03;
  pointer-events: none;
}

.reviews-section-custom .blob-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-500);
  top: -100px;
  right: -100px;
}

.reviews-section-custom .blob-2 {
  width: 300px;
  height: 300px;
  background: var(--primary-700);
  bottom: -50px;
  left: -50px;
}

/* Responsive Design */
@media (max-width: 991px) {
  .reviews-section-custom {
    padding: 60px 0;
  }

  .reviews-section-custom .section-title {
    font-size: 2rem;
  }

  .reviews-section-custom .section-subtitle {
    font-size: 1.1rem;
  }

  .reviews-section-custom .review-card {
    padding: 2rem;
  }
}

@media (max-width: 767px) {
  .reviews-section-custom {
    padding: 50px 0;
  }

  .reviews-section-custom .section-title {
    font-size: 1.75rem;
  }

  .reviews-section-custom .review-card {
    padding: 1.5rem;
  }

  .reviews-section-custom .quote-icon {
    font-size: 2.5rem;
  }

  .reviews-section-custom .avatar-placeholder {
    width: 50px;
    height: 50px;
  }
}


/* ===================================
   CASESTUDY v-035: Professional Blue Timeline
   Professional horizontal timeline layout with corporate aesthetics
   Theme: professional-blue-01
   =================================== */

.casestudy_wrap_modern {
  position: relative;
  padding: 5rem 0;
  background: var(--surface-primary);
  overflow: hidden;
}

/* ===== SECTION HEADER ===== */
.casestudy_wrap_modern .header-wrapper {
  position: relative;
  z-index: 2;
}

.casestudy_wrap_modern .professional-badge-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.casestudy_wrap_modern .professional-badge-group i {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-500);
  background: var(--surface-accent);
  border-radius: 50%;
  border: 2px solid var(--border-light);
  transition: all 0.3s ease;
}

.casestudy_wrap_modern .professional-badge-group i:hover {
  transform: translateY(-4px);
  background: var(--primary-100);
  border-color: var(--primary-500);
}

.casestudy_wrap_modern .section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.casestudy_wrap_modern .section-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-500);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.casestudy_wrap_modern .section-description {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.casestudy_wrap_modern .title-underline {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.casestudy_wrap_modern .underline-segment {
  width: 60px;
  height: 4px;
  background: var(--primary-500);
  border-radius: 2px;
}

.casestudy_wrap_modern .underline-segment:nth-child(2) {
  background: var(--primary-300);
}

.casestudy_wrap_modern .underline-segment:nth-child(3) {
  background: var(--primary-100);
}

/* ===== TIMELINE LAYOUT ===== */
.casestudy_wrap_modern .timeline-horizontal {
  position: relative;
  margin-top: 4rem;
  z-index: 2;
}

.casestudy_wrap_modern .timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.casestudy_wrap_modern .timeline-left {
  justify-content: flex-start;
}

.casestudy_wrap_modern .timeline-right {
  justify-content: flex-end;
}

/* ===== TIMELINE CONNECTOR ===== */
.casestudy_wrap_modern .timeline-connector {
  display: flex;
  align-items: center;
  margin: 0 2rem;
  position: relative;
}

.casestudy_wrap_modern .connector-dot {
  width: 20px;
  height: 20px;
  background: var(--primary-500);
  border: 4px solid var(--surface-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--primary-100);
  z-index: 3;
}

.casestudy_wrap_modern .connector-line {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-300));
}

.casestudy_wrap_modern .timeline-left .connector-line {
  margin-left: -10px;
}

.casestudy_wrap_modern .timeline-right .connector-line {
  margin-right: -10px;
}

/* ===== TIMELINE CARD ===== */
.casestudy_wrap_modern .timeline-card {
  flex: 0 0 55%;
  max-width: 600px;
  background: var(--surface-secondary);
  border: 2px solid var(--border-light);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  transition: all 0.4s ease;
}

.casestudy_wrap_modern .timeline-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-500);
}

.casestudy_wrap_modern .card-icon-box {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.casestudy_wrap_modern .card-icon-box i {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-500);
  background: var(--surface-accent);
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.casestudy_wrap_modern .timeline-card:hover .card-icon-box i {
  transform: scale(1.1);
}

.casestudy_wrap_modern .card-number {
  position: absolute;
  top: -15px;
  right: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  background: var(--primary-500);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.casestudy_wrap_modern .card-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  line-height: 1.3;
}

.casestudy_wrap_modern .card-description {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin: 0;
}

.casestudy_wrap_modern .card-decorative-corner {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  width: 60px;
  height: 60px;
  border-right: 3px solid var(--primary-100);
  border-bottom: 3px solid var(--primary-100);
  border-radius: 0 0 12px 0;
  opacity: 0.5;
}

/* ===== BACKGROUND DECORATIVE GRID ===== */
.casestudy_wrap_modern .bg-decorative-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 2rem;
  padding: 2rem;
  z-index: 1;
  opacity: 0.08;
}

.casestudy_wrap_modern .grid-dot {
  width: 100%;
  height: 100%;
  border: 2px dashed var(--primary-500);
  border-radius: 50%;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 991px) {
  .casestudy_wrap_modern .section-title {
    font-size: 2.25rem;
  }

  .casestudy_wrap_modern .timeline-card {
    flex: 0 0 65%;
  }

  .casestudy_wrap_modern .connector-line {
    width: 60px;
  }
}

@media (max-width: 767px) {
  .casestudy_wrap_modern {
    padding: 3rem 0;
  }

  .casestudy_wrap_modern .section-title {
    font-size: 1.875rem;
  }

  .casestudy_wrap_modern .section-subtitle {
    font-size: 1rem;
  }

  .casestudy_wrap_modern .section-description {
    font-size: 1rem;
  }

  .casestudy_wrap_modern .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 3rem;
  }

  .casestudy_wrap_modern .timeline-left,
  .casestudy_wrap_modern .timeline-right {
    justify-content: flex-start;
  }

  .casestudy_wrap_modern .timeline-connector {
    flex-direction: column;
    margin: 1rem 0;
    height: 60px;
  }

  .casestudy_wrap_modern .connector-line {
    width: 3px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary-500), var(--primary-300));
  }

  .casestudy_wrap_modern .timeline-left .connector-line,
  .casestudy_wrap_modern .timeline-right .connector-line {
    margin: 0;
  }

  .casestudy_wrap_modern .timeline-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .casestudy_wrap_modern .card-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 575px) {
  .casestudy_wrap_modern .timeline-card {
    padding: 2rem 1.5rem;
  }

  .casestudy_wrap_modern .professional-badge-group i {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }

  .casestudy_wrap_modern .card-icon-box i {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.25rem;
  }
}


.process {
  background: var(--surface-primary);
  position: relative;
  overflow: hidden;
}

.process #process-title {
  color: var(--text-primary);
}

.process #process-subtitle {
  color: var(--primary-500);
  font-weight: 600;
}

.process #process-desc {
  color: var(--text-secondary);
  line-height: 1.8;
}

.process .modern-process-card {
  background: var(--surface-secondary);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  height: 100%;
  border: 1px solid color-mix(in srgb, var(--neutral-300) 50%, transparent);
}

.process .modern-process-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-300);
}

.process .card-header-modern {
  background: linear-gradient(135deg, 
    var(--primary-500), 
    color-mix(in srgb, var(--primary-500) 80%, var(--primary-700))
  );
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.process .step-number-modern {
  font-size: 3rem;
  font-weight: 800;
  color: color-mix(in srgb, var(--light) 30%, transparent);
  line-height: 1;
}

.process .icon-container-modern {
  width: 70px;
  height: 70px;
  background: var(--light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.process .modern-process-card:hover .icon-container-modern {
  transform: scale(1.15) rotate(5deg);
}

.process .icon-container-modern i {
  font-size: 2rem;
  color: var(--primary-500);
}

.process .card-body-modern {
  padding: 2rem;
}

.process .card-body-modern h4 {
  color: var(--text-primary);
}

.process .card-body-modern p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

.process .card-hover-indicator {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-700));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.process .modern-process-card:hover .card-hover-indicator {
  transform: scaleX(1);
}

/* Decorative Card */
.process .card-decorative {
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--primary-500) 8%, var(--surface-secondary)),
    color-mix(in srgb, var(--primary-700) 5%, var(--surface-secondary))
  );
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed color-mix(in srgb, var(--primary-500) 30%, transparent);
}

.process .decorative-content {
  position: relative;
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process .decorative-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--primary-300);
  opacity: 0.2;
}

.process .circle-1 {
  width: 120px;
  height: 120px;
  top: 20%;
  left: 10%;
  animation: float 6s ease-in-out infinite;
}

.process .circle-2 {
  width: 80px;
  height: 80px;
  top: 60%;
  right: 15%;
  animation: float 8s ease-in-out infinite 1s;
}

.process .circle-3 {
  width: 100px;
  height: 100px;
  bottom: 15%;
  left: 20%;
  animation: float 7s ease-in-out infinite 2s;
}

.process .decorative-icon-large {
  position: relative;
  z-index: 2;
}

.process .decorative-icon-large i {
  font-size: 5rem;
  color: var(--primary-500);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.process .card-decorative:hover .decorative-icon-large i {
  opacity: 0.8;
  transform: scale(1.1);
}

/* Background Gradients */
.process .bg-gradient-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  pointer-events: none;
  filter: blur(60px);
}

.process .gradient-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-500), transparent);
  top: -200px;
  right: -200px;
}

.process .gradient-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--primary-700), transparent);
  bottom: -150px;
  left: -150px;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }
  50% {
    transform: translateY(-20px) translateX(10px);
  }
}

/* Tablet Styles */
@media (min-width: 768px) {
  .process .card-body-modern {
    padding: 2.5rem;
  }
}

/* Desktop Styles */
@media (min-width: 992px) {
  .process .modern-process-card:hover {
    transform: translateY(-15px);
  }

  .process .step-number-modern {
    font-size: 3.5rem;
  }

  .process .icon-container-modern {
    width: 80px;
    height: 80px;
  }

  .process .icon-container-modern i {
    font-size: 2.25rem;
  }
}

/* Large Desktop */
@media (min-width: 1400px) {
  .process .card-body-modern {
    padding: 3rem;
  }
}


.timeline-standard {
  position: relative;
  padding: 5rem 0;
  background: var(--surface-primary);
  overflow: hidden;
}

/* Organic decorative shapes */
.timeline-organic-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.organic-leaf-1 {
  position: absolute;
  top: 15%;
  right: 8%;
  width: 200px;
  height: 200px;
  border-radius: 0 50% 50% 50%;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
  opacity: 0.5;
  transform: rotate(45deg);
}

.organic-leaf-2 {
  position: absolute;
  bottom: 20%;
  left: 5%;
  width: 180px;
  height: 180px;
  border-radius: 50% 0 50% 50%;
  background: linear-gradient(225deg, var(--primary-100), var(--surface-accent));
  opacity: 0.4;
  transform: rotate(-30deg);
}

.organic-circle {
  position: absolute;
  top: 50%;
  right: 3%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--primary-50);
  opacity: 0.3;
}

.timeline-standard .container {
  position: relative;
  z-index: 1;
}

/* Header */
.timeline-heading {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.timeline-lead {
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--text-accent);
  margin-bottom: 1rem;
}

.timeline-intro {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto;
}

/* Vertical timeline */
.timeline-vertical-wrapper {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 2rem;
}

.timeline-center-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-300), var(--primary-500), var(--primary-300));
  transform: translateX(-50%);
  border-radius: 2px;
}

/* Timeline events */
.timeline-event-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

.timeline-left {
  justify-content: flex-start;
}

.timeline-right {
  justify-content: flex-end;
}

.timeline-left .timeline-event-card {
  margin-right: auto;
  margin-left: 0;
  padding-right: calc(50% + 40px);
  text-align: right;
}

.timeline-right .timeline-event-card {
  margin-left: auto;
  margin-right: 0;
  padding-left: calc(50% + 40px);
  text-align: left;
}

.timeline-connector {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  background: var(--primary-500);
  border: 4px solid var(--surface-primary);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 4px var(--primary-100);
  z-index: 2;
}

.timeline-event-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  width: 100%;
}

.timeline-event-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-300);
  transform: scale(1.02);
}

.timeline-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
}

.timeline-icon-circle i {
  font-size: 1.5rem;
  color: #ffffff;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.timeline-text {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
  .timeline-heading {
    font-size: 2.25rem;
  }
  
  .timeline-lead {
    font-size: 1.25rem;
  }
  
  .timeline-intro {
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .timeline-standard {
    padding: 3rem 0;
  }
  
  .timeline-heading {
    font-size: 1.875rem;
  }
  
  .timeline-center-line {
    left: 30px;
  }
  
  .timeline-left .timeline-event-card,
  .timeline-right .timeline-event-card {
    padding-left: 60px;
    padding-right: 1.5rem;
    text-align: left;
  }
  
  .timeline-connector {
    left: 30px;
  }
  
  .organic-leaf-1,
  .organic-leaf-2 {
    width: 100px;
    height: 100px;
  }
  
  .organic-circle {
    width: 80px;
    height: 80px;
  }
}


/* FIXED: Ensure vertical text layout on all screens */
@media (max-width: 1199px) {
  .timeline_main_title,
  .timeline_tagline,
  .timeline_intro_text {
    display: block !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}


.career-section-secondary {
  position: relative;
  background: var(--surface-primary);
  overflow: hidden;
}

/* Decorative Elements */
.career-section-secondary .decorative-badge {
  width: 80px;
  height: 80px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--primary-300), var(--primary-500));
  opacity: 0.15;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
}

.career-section-secondary .decorative-blob-left {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--primary-100), transparent);
  border-radius: 50%;
  top: 10%;
  left: -100px;
  opacity: 0.4;
  z-index: 0;
}

.career-section-secondary .decorative-blob-right {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-50), transparent);
  border-radius: 50%;
  bottom: 10%;
  right: -120px;
  opacity: 0.5;
  z-index: 0;
}

/* Header Styles */
.career-section-secondary #career-title {
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.career-section-secondary #career-subtitle {
  color: var(--primary-700);
  font-weight: 600;
}

.career-section-secondary #career-desc {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Timeline Structure */
.career-section-secondary .career-timeline {
  position: relative;
  padding: 2rem 0;
}

.career-section-secondary .timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.career-section-secondary .timeline-item:last-child {
  margin-bottom: 0;
}

/* Timeline Marker */
.career-section-secondary .timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}

.career-section-secondary .timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-500);
  border: 4px solid var(--surface-primary);
  box-shadow: 0 0 0 4px var(--primary-300);
  z-index: 2;
  transition: all 0.3s ease;
}

.career-section-secondary .timeline-item:hover .timeline-dot {
  transform: scale(1.3);
  box-shadow: 0 0 0 6px var(--primary-300);
}

.career-section-secondary .timeline-line {
  width: 2px;
  flex-grow: 1;
  background: linear-gradient(180deg, var(--primary-500), var(--primary-300));
  margin-top: 0.5rem;
  opacity: 0.3;
}

.career-section-secondary .timeline-item:last-child .timeline-line {
  display: none;
}

/* Timeline Content */
.career-section-secondary .timeline-content {
  flex: 1;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.career-section-secondary .timeline-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-300), var(--primary-500));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.career-section-secondary .timeline-item:hover .timeline-icon {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.career-section-secondary .timeline-icon i {
  font-size: 1.5rem;
  color: var(--light);
}

/* Timeline Card */
.career-section-secondary .timeline-card {
  flex: 1;
  background: var(--surface-secondary);
  border: 1px solid var(--neutral-100);
  border-radius: 12px;
  padding: 1.75rem;
  transition: all 0.3s ease;
  position: relative;
}

.career-section-secondary .timeline-card::before {
  content: '';
  position: absolute;
  left: -10px;
  top: 24px;
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 10px solid var(--surface-secondary);
  transition: border-right-color 0.3s ease;
}

.career-section-secondary .timeline-item:hover .timeline-card {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  border-color: var(--primary-300);
}

.career-section-secondary .timeline-card h3 {
  color: var(--text-primary);
}

.career-section-secondary .role-badge {
  display: inline-block;
  background: var(--primary-100);
  color: var(--primary-700);
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.813rem;
  font-weight: 600;
  margin-bottom: 0;
}

.career-section-secondary .timeline-card p[id*="-desc"] {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 991px) {
  .career-section-secondary .timeline-content {
    gap: 1rem;
  }

  .career-section-secondary .timeline-icon {
    width: 50px;
    height: 50px;
  }

  .career-section-secondary .timeline-icon i {
    font-size: 1.25rem;
  }

  .career-section-secondary .timeline-card {
    padding: 1.5rem;
  }
}

@media (max-width: 767px) {
  .career-section-secondary #career-title {
    font-size: 2rem;
  }

  .career-section-secondary .timeline-item {
    gap: 1rem;
  }

  .career-section-secondary .timeline-content {
    flex-direction: column;
  }

  .career-section-secondary .timeline-icon {
    width: 48px;
    height: 48px;
  }

  .career-section-secondary .timeline-card::before {
    display: none;
  }

  .career-section-secondary .decorative-blob-left,
  .career-section-secondary .decorative-blob-right {
    width: 150px;
    height: 150px;
  }
}


.coreinfo-section-special {
  position: relative;
  background: var(--surface-primary);
  overflow: hidden;
}

/* Header Styles */
.coreinfo-section-special .badge-wrapper {
  display: inline-flex;
}

.coreinfo-section-special .status-badge {
  display: inline-block;
  width: 60px;
  height: 6px;
  background: var(--primary-500);
  border-radius: 3px;
  position: relative;
}

.coreinfo-section-special .status-badge::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 6px;
  background: var(--primary-700);
  border-radius: 3px;
  animation: slide-indicator 2s ease-in-out infinite;
}

@keyframes slide-indicator {
  0%, 100% { left: 0; }
  50% { left: calc(100% - 20px); }
}

.coreinfo-section-special .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.coreinfo-section-special .section-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-500);
  line-height: 1.4;
}

.coreinfo-section-special .section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

/* Horizontal Scroll */
.coreinfo-section-special .horizontal-scroll-wrapper {
  position: relative;
  margin-top: 3rem;
  overflow: hidden;
}

.coreinfo-section-special .scroll-container {
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 2rem 1rem 3rem;
  scrollbar-width: thin;
  scrollbar-color: var(--primary-500) color-mix(in srgb, var(--neutral-300) 30%, transparent);
}

.coreinfo-section-special .scroll-container::-webkit-scrollbar {
  height: 8px;
}

.coreinfo-section-special .scroll-container::-webkit-scrollbar-track {
  background: color-mix(in srgb, var(--neutral-300) 20%, transparent);
  border-radius: 10px;
}

.coreinfo-section-special .scroll-container::-webkit-scrollbar-thumb {
  background: var(--primary-500);
  border-radius: 10px;
}

.coreinfo-section-special .scroll-container::-webkit-scrollbar-thumb:hover {
  background: var(--primary-700);
}

/* Info Cards */
.coreinfo-section-special .info-card {
  flex: 0 0 380px;
  background: var(--surface-secondary);
  border: 2px solid color-mix(in srgb, var(--primary-500) 12%, transparent);
  border-radius: 12px;
  padding: 2rem;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.coreinfo-section-special .info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 45px color-mix(in srgb, var(--primary-500) 18%, transparent);
  border-color: var(--primary-500);
}

/* Card Header Visual */
.coreinfo-section-special .card-header-visual {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.coreinfo-section-special .icon-box {
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--primary-500) 10%, transparent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.coreinfo-section-special .icon-box i {
  font-size: 1.75rem;
  color: var(--primary-500);
  transition: color 0.3s ease;
}

.coreinfo-section-special .info-card:hover .icon-box {
  background: var(--primary-500);
  transform: scale(1.1);
}

.coreinfo-section-special .info-card:hover .icon-box i {
  color: var(--light);
}

.coreinfo-section-special .line-accent {
  flex: 1;
  height: 2px;
  background: linear-gradient(
    90deg,
    var(--primary-500),
    transparent
  );
}

/* Card Content */
.coreinfo-section-special .card-body-content {
  flex: 1;
}

.coreinfo-section-special .card-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.coreinfo-section-special .card-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Card Number */
.coreinfo-section-special .card-number {
  position: absolute;
  bottom: 1rem;
  right: 1.5rem;
  font-size: 3rem;
  font-weight: 700;
  color: color-mix(in srgb, var(--primary-500) 8%, transparent);
  line-height: 1;
  transition: all 0.3s ease;
}

.coreinfo-section-special .info-card:hover .card-number {
  color: color-mix(in srgb, var(--primary-500) 15%, transparent);
  transform: scale(1.1);
}

/* Scroll Indicators */
.coreinfo-section-special .scroll-indicators {
  position: relative;
  margin-top: 2rem;
  padding: 0 1rem;
}

.coreinfo-section-special .indicator-line {
  height: 3px;
  background: color-mix(in srgb, var(--neutral-300) 25%, transparent);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.coreinfo-section-special .indicator-line::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 30%;
  background: var(--primary-500);
  border-radius: 2px;
}

/* Decorative Elements */
.coreinfo-section-special .grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(
      90deg,
      color-mix(in srgb, var(--neutral-300) 4%, transparent) 0,
      color-mix(in srgb, var(--neutral-300) 4%, transparent) 1px,
      transparent 1px,
      transparent 60px
    ),
    repeating-linear-gradient(
      0deg,
      color-mix(in srgb, var(--neutral-300) 4%, transparent) 0,
      color-mix(in srgb, var(--neutral-300) 4%, transparent) 1px,
      transparent 1px,
      transparent 60px
    );
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}

.coreinfo-section-special .corner-accent {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 3px solid color-mix(in srgb, var(--primary-500) 20%, transparent);
  pointer-events: none;
  z-index: 0;
}

.coreinfo-section-special .accent-top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
}

.coreinfo-section-special .accent-bottom-right {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
}

.coreinfo-section-special .container-fluid {
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 991px) {
  .coreinfo-section-special .section-title {
    font-size: 2rem;
  }
  
  .coreinfo-section-special .section-subtitle {
    font-size: 1.25rem;
  }
  
  .coreinfo-section-special .info-card {
    flex: 0 0 340px;
  }
}

@media (max-width: 767px) {
  .coreinfo-section-special .section-title {
    font-size: 1.75rem;
  }
  
  .coreinfo-section-special .section-subtitle {
    font-size: 1.125rem;
  }
  
  .coreinfo-section-special .info-card {
    flex: 0 0 300px;
    padding: 1.5rem;
  }
  
  .coreinfo-section-special .card-number {
    font-size: 2.5rem;
  }
}


.contact-section-custom {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--surface-primary) 0%, color-mix(in srgb, var(--primary-50) 30%, white 70%) 100%);
  overflow: hidden;
}

.contact-section-custom .section-header {
  position: relative;
  z-index: 2;
}

.contact-section-custom #contact-title {
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact-section-custom #contact-subtitle {
  color: var(--primary-500);
  font-weight: 500;
}

.contact-section-custom #contact-desc {
  color: var(--text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
}

/* Contact Form Card */
.contact-section-custom .contact-form-card {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-section-custom .contact-form-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.contact-section-custom .decorative-corner {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 3px solid var(--primary-300);
}

.contact-section-custom .decorative-corner.top-left {
  top: -3px;
  left: -3px;
  border-right: none;
  border-bottom: none;
  border-radius: 20px 0 0 0;
}

.contact-section-custom .decorative-corner.bottom-right {
  bottom: -3px;
  right: -3px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 20px 0;
}

/* Form Elements */
.contact-section-custom .form-control {
  border: 2px solid color-mix(in srgb, var(--neutral-300) 60%, transparent 40%);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-section-custom .form-control:focus {
  border-color: var(--primary-500);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--primary-300) 25%, transparent 75%);
  background-color: color-mix(in srgb, var(--primary-50) 30%, white 70%);
}

.contact-section-custom .form-floating > label {
  color: var(--text-secondary);
  font-weight: 500;
}

.contact-section-custom .message-input {
  min-height: 150px;
  resize: vertical;
}

.contact-section-custom .form-check-input {
  width: 1.25em;
  height: 1.25em;
  border: 2px solid var(--neutral-300);
  border-radius: 6px;
}

.contact-section-custom .form-check-input:checked {
  background-color: var(--primary-500);
  border-color: var(--primary-500);
}

.contact-section-custom .form-check-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-left: 0.5rem;
}

/* Submit Button - CRITICAL: Protected styles with !important */
.contact-section-custom .btn-submit {
  background: linear-gradient(135deg, #2563eb, #0284c7) !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 12px !important;
  padding: 1rem 2.5rem !important;
  font-size: 1.125rem !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-section-custom .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.contact-section-custom .btn-submit:active {
  transform: translateY(0);
}

.contact-section-custom .btn-submit i {
  transition: transform 0.3s ease;
}

.contact-section-custom .btn-submit:hover i {
  transform: translateX(5px);
}

/* Contact Info Cards */
.contact-section-custom .contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-section-custom .info-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
}

.contact-section-custom .info-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-section-custom .icon-wrapper {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: white;
  box-shadow: 0 4px 15px color-mix(in srgb, var(--primary-500) 40%, transparent 60%);
}

.contact-section-custom .info-content {
  flex: 1;
}

.contact-section-custom .info-title {
  color: var(--text-primary);
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.contact-section-custom .info-subtitle {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

/* Social Icons Decoration */
.contact-section-custom .social-icons-decoration {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid color-mix(in srgb, var(--neutral-300) 50%, transparent 50%);
}

.contact-section-custom .social-icon-item {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary-100), var(--primary-50));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary-500);
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-section-custom .social-icon-item:hover {
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 6px 20px color-mix(in srgb, var(--primary-500) 40%, transparent 60%);
}

/* Decorative Background Elements */
.contact-section-custom .decorative-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  z-index: 0;
  pointer-events: none;
}

.contact-section-custom .blob-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-300);
  top: -100px;
  left: -100px;
}

.contact-section-custom .blob-2 {
  width: 350px;
  height: 350px;
  background: var(--primary-500);
  bottom: -80px;
  right: -80px;
}

.contact-section-custom .decorative-circle {
  position: absolute;
  border: 2px solid var(--primary-300);
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.contact-section-custom .circle-1 {
  width: 250px;
  height: 250px;
  top: 15%;
  right: 10%;
}

.contact-section-custom .circle-2 {
  width: 180px;
  height: 180px;
  bottom: 20%;
  left: 5%;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .contact-section-custom {
    padding: 70px 0;
  }

  .contact-section-custom .contact-form-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }

  .contact-section-custom #contact-title {
    font-size: 2rem;
  }

  .contact-section-custom .decorative-corner {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 767.98px) {
  .contact-section-custom {
    padding: 50px 0;
  }

  .contact-section-custom .contact-form-card {
    padding: 1.5rem;
  }

  .contact-section-custom #contact-title {
    font-size: 1.75rem;
  }

  .contact-section-custom #contact-desc {
    font-size: 1rem;
  }

  .contact-section-custom .info-card {
    padding: 1.5rem;
  }

  .contact-section-custom .icon-wrapper {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .contact-section-custom .social-icon-item {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
  }

  .contact-section-custom .btn-submit {
    padding: 0.875rem 2rem !important;
    font-size: 1rem !important;
  }
}

@media (max-width: 575.98px) {
  .contact-section-custom .decorative-corner {
    display: none;
  }

  .contact-section-custom .info-title {
    font-size: 1rem;
  }

  .contact-section-custom .blob-1,
  .contact-section-custom .blob-2 {
    width: 250px;
    height: 250px;
  }
}

/* ================================
   Blog Section v-117 - Professional Blue
   ================================ */

.blog-section-custom {
  background: linear-gradient(135deg, 
    var(--surface-primary) 0%, 
    color-mix(in srgb, var(--primary-50) 30%, var(--surface-primary) 70%) 100%
  );
  position: relative;
  overflow: hidden;
}

/* Section Header */
.blog-section-custom .section-header {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.blog-section-custom .decorative-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.blog-section-custom .decorative-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-500);
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}

.blog-section-custom .decorative-dots .dot:nth-child(2) {
  animation-delay: 0.2s;
}

.blog-section-custom .decorative-dots .dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes pulse-dot {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.blog-section-custom .section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.blog-section-custom .section-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 500;
  color: var(--primary-500);
  line-height: 1.4;
}

.blog-section-custom .section-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 700px;
}

.blog-section-custom .decorative-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, 
    var(--primary-300) 0%, 
    var(--primary-500) 50%, 
    var(--primary-300) 100%
  );
  border-radius: 2px;
}

/* Blog Cards */
.blog-section-custom .blog-card {
  background: var(--surface-primary);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid color-mix(in srgb, var(--primary-100) 40%, transparent 60%);
  display: flex;
  flex-direction: column;
}

.blog-section-custom .blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: color-mix(in srgb, var(--primary-300) 60%, transparent 40%);
}

/* Blog Card Image */
.blog-section-custom .blog-card-image-wrapper {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, var(--primary-50), var(--primary-100));
}

.blog-section-custom .blog-image {
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-section-custom .blog-card:hover .blog-image {
  transform: scale(1.08);
}

.blog-section-custom .image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, 
    transparent 0%, 
    rgba(0, 0, 0, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.blog-section-custom .blog-card:hover .image-overlay {
  opacity: 1;
}

.blog-section-custom .category-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--surface-primary);
  color: var(--primary-500);
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.blog-section-custom .blog-card:hover .category-badge {
  background: var(--primary-500);
  color: var(--surface-primary);
  transform: translateY(-2px);
}

/* Blog Card Content */
.blog-section-custom .blog-card-content {
  padding: 1.75rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.blog-section-custom .blog-card-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog-section-custom .blog-card:hover .blog-card-title {
  color: var(--primary-500);
}

.blog-section-custom .blog-card-excerpt {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
  flex-grow: 1;
}

/* Blog Card Footer */
.blog-section-custom .blog-card-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid color-mix(in srgb, var(--neutral-100) 50%, transparent 50%);
}

.blog-section-custom .blog-meta {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.blog-section-custom .meta-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--primary-50) 60%, transparent 40%);
  border-radius: 8px;
  color: var(--primary-500);
  transition: all 0.3s ease;
}

.blog-section-custom .blog-card:hover .meta-icon {
  background: var(--primary-500);
  color: var(--surface-primary);
  transform: translateY(-2px);
}

.blog-section-custom .blog-read-more {
  color: var(--primary-500);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.blog-section-custom .blog-read-more:hover {
  color: var(--primary-700);
  gap: 4px;
}

.blog-section-custom .blog-read-more i {
  transition: transform 0.3s ease;
}

.blog-section-custom .blog-read-more:hover i {
  transform: translateX(4px);
}

/* Decorative Shapes */
.blog-section-custom .decorative-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.blog-section-custom .shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.blog-section-custom .shape-circle-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--primary-300), transparent);
  top: -150px;
  right: -100px;
  animation: float-shape 20s ease-in-out infinite;
}

.blog-section-custom .shape-circle-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-500), transparent);
  bottom: -100px;
  left: -80px;
  animation: float-shape 25s ease-in-out infinite reverse;
}

.blog-section-custom .shape-blob {
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, var(--primary-300), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: morph-blob 30s ease-in-out infinite;
}

@keyframes float-shape {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

@keyframes morph-blob {
  0%, 100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }
  25% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  }
  50% {
    border-radius: 30% 70% 40% 60% / 50% 60% 40% 50%;
  }
  75% {
    border-radius: 70% 30% 60% 40% / 30% 70% 50% 60%;
  }
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .blog-section-custom .blog-card-image-wrapper {
    height: 200px;
  }
  
  .blog-section-custom .section-description {
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .blog-section-custom {
    padding: 3rem 0;
  }
  
  .blog-section-custom .section-header {
    margin-bottom: 2.5rem;
  }
  
  .blog-section-custom .blog-card-image-wrapper {
    height: 180px;
  }
  
  .blog-section-custom .blog-card-content {
    padding: 1.5rem;
  }
  
  .blog-section-custom .blog-card-title {
    font-size: 1.2rem;
  }
  
  .blog-section-custom .blog-card-excerpt {
    font-size: 0.9rem;
  }
  
  .blog-section-custom .blog-read-more {
    font-size: 0.85rem;
  }
}

@media (max-width: 575.98px) {
  .blog-section-custom .blog-card-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .blog-section-custom .shape-circle-1,
  .blog-section-custom .shape-circle-2,
  .blog-section-custom .shape-blob {
    display: none;
  }
}

/* Faq section */

.faq-section-073 {
  position: relative;
  padding: 100px 0;
  background: radial-gradient(ellipse at top, 
    color-mix(in srgb, var(--primary-50) 40%, var(--surface-primary)),
    var(--surface-primary) 70%
  );
  overflow: hidden;
}

/* Section Header */
.faq-section-073 .icon-grid {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.faq-section-073 .icon-grid i {
  font-size: 2.5rem;
  color: var(--primary-500);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.faq-section-073 .icon-grid i:hover {
  opacity: 1;
  transform: scale(1.2) rotate(10deg);
}

.faq-section-073 #faq-title {
  color: var(--text-primary);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.faq-section-073 #faq-subtitle {
  color: var(--primary-700);
  font-weight: 600;
}

.faq-section-073 #faq-desc {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* FAQ Cards - Masonry Style */
.faq-section-073 .faq-card {
  border: none;
  border-radius: 20px;
  background: var(--surface-primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.faq-section-073 .faq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.faq-section-073 .faq-card:hover::before {
  transform: scaleX(1);
}

.faq-section-073 .faq-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.faq-section-073 .card-body {
  padding: 2rem;
  position: relative;
}

.faq-section-073 .number-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  color: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  box-shadow: 0 4px 16px color-mix(in srgb, var(--primary-500) 30%, transparent);
}

.faq-section-073 .card-body h3 {
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.4;
  padding-right: 3rem;
}

.faq-section-073 .card-body p {
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 0.95rem;
}

.faq-section-073 .card-footer {
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--primary-500) 8%, var(--surface-primary)),
    var(--surface-primary)
  );
  border-top: 1px solid color-mix(in srgb, var(--primary-500) 10%, transparent);
  padding: 1rem 2rem;
  text-align: center;
}

.faq-section-073 .card-footer i {
  color: var(--primary-500);
  font-size: 1.5rem;
  opacity: 0.6;
}

/* Floating Shapes */
.faq-section-073 .floating-shape {
  position: absolute;
  background: linear-gradient(135deg, 
    color-mix(in srgb, var(--primary-500) 12%, transparent),
    color-mix(in srgb, var(--primary-300) 6%, transparent)
  );
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  pointer-events: none;
  z-index: 0;
  animation: floatShape 25s ease-in-out infinite;
}

.faq-section-073 .floating-shape.shape-1 {
  width: 350px;
  height: 350px;
  top: 10%;
  right: -100px;
  opacity: 0.5;
  animation-delay: 0s;
}

.faq-section-073 .floating-shape.shape-2 {
  width: 250px;
  height: 250px;
  bottom: 20%;
  left: -80px;
  opacity: 0.4;
  animation-delay: -8s;
}

.faq-section-073 .floating-shape.shape-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  opacity: 0.3;
  animation-delay: -16s;
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  25% {
    transform: translate(30px, -40px) rotate(90deg);
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
  50% {
    transform: translate(-20px, 30px) rotate(180deg);
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
  }
  75% {
    transform: translate(40px, 20px) rotate(270deg);
    border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%;
  }
}

.faq-section-073 .container {
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .faq-section-073 {
    padding: 80px 0;
  }

  .faq-section-073 #faq-title {
    font-size: 2.5rem;
  }

  .faq-section-073 .icon-grid i {
    font-size: 2rem;
  }

  .faq-section-073 .card-body {
    padding: 1.5rem;
  }

  .faq-section-073 .card-footer {
    padding: 0.875rem 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .faq-section-073 {
    padding: 60px 0;
  }

  .faq-section-073 #faq-title {
    font-size: 2rem;
  }

  .faq-section-073 #faq-subtitle {
    font-size: 1.25rem;
  }

  .faq-section-073 .icon-grid i {
    font-size: 1.75rem;
  }

  .faq-section-073 .number-badge {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    top: 1.25rem;
    right: 1.25rem;
  }

  .faq-section-073 .card-body h3 {
    font-size: 1.05rem;
    padding-right: 2.5rem;
  }

  .faq-section-073 .floating-shape {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .faq-section-073 {
    padding: 50px 0;
  }

  .faq-section-073 .card-body {
    padding: 1.25rem;
  }

  .faq-section-073 .card-footer {
    padding: 0.75rem 1.25rem;
  }

  .faq-section-073 .card-footer i {
    font-size: 1.25rem;
  }
}


.gallery-section-standard {
  background: var(--surface-primary);
  position: relative;
  overflow: hidden;
  min-height: 600px;
}

.gallery-floating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 40px 0;
}

.gallery-stack {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.stack-left {
  align-items: flex-start;
}

.stack-center {
  align-items: center;
  transform: translateY(-40px);
}

.stack-right {
  align-items: flex-end;
}

.floating-item {
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.item-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--light);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  width: 280px;
  aspect-ratio: 4/3;
}

.frame-featured {
  width: 350px;
  aspect-ratio: 3/4;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.item-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.frame-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 3px solid var(--primary-500);
  border-radius: 16px;
  opacity: 0;
  transform: scale(0.95);
  transition: all 0.4s ease;
}

.featured-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid var(--primary-500);
  opacity: 0;
  transition: all 0.4s ease;
}

.corner-tl {
  top: 12px;
  left: 12px;
  border-right: none;
  border-bottom: none;
}

.corner-tr {
  top: 12px;
  right: 12px;
  border-left: none;
  border-bottom: none;
}

.corner-bl {
  bottom: 12px;
  left: 12px;
  border-right: none;
  border-top: none;
}

.corner-br {
  bottom: 12px;
  right: 12px;
  border-left: none;
  border-top: none;
}

.item-1, .item-6 {
  transform: rotate(-5deg);
}

.item-2, .item-7 {
  transform: rotate(3deg);
}

.item-3, .item-8 {
  transform: rotate(-3deg);
}

.item-5 {
  transform: rotate(2deg);
}

.floating-item:hover {
  transform: translateY(-20px) rotate(0deg) scale(1.05);
  z-index: 10;
}

.floating-item:hover .item-frame img {
  transform: scale(1.15);
  filter: brightness(1.1);
}

.floating-item:hover .frame-border {
  opacity: 1;
  transform: scale(1);
}

.floating-item:hover .featured-corner {
  opacity: 1;
}

.decorative-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--primary-300);
  opacity: 0.15;
  pointer-events: none;
}

.circle-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  left: 5%;
  animation: pulse 4s ease-in-out infinite;
}

.circle-2 {
  width: 150px;
  height: 150px;
  bottom: 15%;
  right: 10%;
  animation: pulse 5s ease-in-out infinite;
}

.circle-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 6s ease-in-out infinite;
}

.decorative-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--primary-300) 50%, 
    transparent 100%);
  opacity: 0.2;
  pointer-events: none;
}

.line-1 {
  width: 300px;
  top: 25%;
  right: 15%;
  transform: rotate(-30deg);
}

.line-2 {
  width: 250px;
  bottom: 30%;
  left: 10%;
  transform: rotate(20deg);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.15;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.25;
  }
}

@media (max-width: 992px) {
  .gallery-floating {
    flex-direction: column;
    gap: 30px;
  }
  
  .gallery-stack {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .stack-center {
    transform: translateY(0);
  }
  
  .item-frame {
    width: 220px;
  }
  
  .frame-featured {
    width: 280px;
  }
}

@media (max-width: 576px) {
  .item-frame {
    width: 160px;
  }
  
  .frame-featured {
    width: 200px;
  }
}


/* ================================================
   Footer v136 - Professional Blue Theme
   Background Image + Gradient Overlay
   ================================================ */

.footer-secondary {
  position: relative;
  padding: 80px 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('ZOL_assets/ZOL_images/footer_bg.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
}

.footer-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--primary-700) 85%, transparent) 0%,
    color-mix(in srgb, var(--primary-500) 75%, transparent) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.footer-secondary .container {
  z-index: 2;
}

/* ========================================
   Footer Brand & Description
   ======================================== */

.footer-brand {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

/* Decorative Icons */
.footer-decorative-icons {
  display: flex;
  gap: 1rem;
}

.footer-decorative-icons i {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s ease;
}

.footer-decorative-icons i:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

/* ========================================
   Footer Links Section
   ======================================== */

.footer-heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #ffffff;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
}

.footer-link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.footer-link:hover {
  color: #ffffff;
  padding-left: 0.5rem;
}

.footer-link:hover i {
  transform: translateX(3px);
}

/* ========================================
   Contact Information
   ======================================== */

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding: 0.5rem 0;
}

.contact-item i {
  font-size: 1.25rem;
  color: #ffffff;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.contact-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========================================
   Disclaimer Block
   ======================================== */

.footer-disclaimer-block {
  background: color-mix(in srgb, var(--neutral-900) 30%, transparent);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 3px solid #ffffff;
}

.disclaimer-icon-wrapper {
  margin-bottom: 1rem;
}

.disclaimer-icon-wrapper i {
  font-size: 2rem;
  color: #ffffff;
  opacity: 0.8;
}

.footer-disclaimer-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ========================================
   Decorative Shapes
   ======================================== */

.footer-decorative-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.shape-circle {
  position: absolute;
  border-radius: 50%;
  background: color-mix(in srgb, var(--primary-300) 15%, transparent);
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 10%;
  animation-delay: 5s;
}

.shape-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: color-mix(in srgb, var(--primary-500) 10%, transparent);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morph 15s infinite ease-in-out;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-30px) scale(1.1);
  }
}

@keyframes morph {
  0%, 100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  }
  50% {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  }
}

/* ========================================
   Copyright Section
   ======================================== */

.footer-bottom {
  margin-top: 3rem;
}

.copyright-divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  margin-bottom: 0;
}

.copyright-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  letter-spacing: 0.3px;
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 991px) {
  .footer-secondary {
    padding: 60px 0 30px;
    background-attachment: scroll;
  }

  .footer-brand {
    font-size: 1.5rem;
  }

  .footer-heading {
    font-size: 1rem;
    margin-top: 2rem;
  }

  .footer-about .footer-heading {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .footer-secondary {
    padding: 50px 0 25px;
  }

  .footer-brand {
    font-size: 1.35rem;
  }

  .footer-description {
    font-size: 0.9rem;
  }

  .footer-decorative-icons {
    justify-content: flex-start;
    margin-top: 1.5rem;
  }

  .footer-heading {
    font-size: 0.95rem;
    margin-top: 2.5rem;
  }

  .contact-item {
    margin-bottom: 1rem;
  }

  .contact-text {
    font-size: 0.9rem;
  }

  .footer-disclaimer-block {
    margin-top: 2rem;
    padding: 1.25rem;
  }

  .footer-disclaimer-text {
    font-size: 0.85rem;
  }

  .copyright-text {
    font-size: 0.85rem;
  }

  .shape-1,
  .shape-2 {
    width: 100px;
    height: 100px;
  }

  .shape-blob {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 575px) {
  .footer-secondary {
    padding: 40px 0 20px;
  }

  .footer-brand {
    font-size: 1.25rem;
  }

  .footer-heading::after {
    width: 30px;
  }

  .footer-list li {
    margin-bottom: 0.6rem;
  }

  .footer-link {
    font-size: 0.9rem;
  }

  .contact-item i {
    font-size: 1.1rem;
  }

  .disclaimer-icon-wrapper i {
    font-size: 1.75rem;
  }

  .footer-bottom {
    margin-top: 2rem;
  }
}

/* Universal section */
/* Diagonal grid layout with floating elements */

.add_wrap_classic {
  position: relative;
  padding: var(--space-section-y, 5rem) 0;
  background: var(--surface-primary, #f8fafc);
  overflow: hidden;
}

.add_wrap_classic .gradient_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(196, 181, 253, 0.08) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.add_wrap_classic .container {
  position: relative;
  z-index: 1;
}

/* Creative header */
.add_wrap_classic .add_header_creative {
  position: relative;
  padding: var(--space-8, 2rem) 0;
  margin-bottom: var(--space-12, 3rem);
}

.add_wrap_classic .floating_icon {
  position: absolute;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-100, #ede9fe) 0%, var(--primary-50, #f5f3ff) 100%);
  border: 2px solid var(--primary-300, #c4b5fd);
  border-radius: 12px;
  color: var(--primary-500, #7c3aed);
  font-size: 1.25rem;
  animation: float 6s ease-in-out infinite;
}

.add_wrap_classic .icon_1 {
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.add_wrap_classic .icon_2 {
  top: 5%;
  right: 10%;
  animation-delay: 2s;
}

.add_wrap_classic .icon_3 {
  bottom: 20%;
  left: 8%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(10deg);
  }
}

.add_wrap_classic .add_title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary, #1a1a1b);
  margin-bottom: var(--space-4, 1rem);
  line-height: 1.15;
  background: linear-gradient(135deg, var(--text-primary, #1a1a1b) 0%, var(--primary-700, #6d28d9) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.add_wrap_classic .add_subtitle {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--primary-500, #7c3aed);
  margin-bottom: var(--space-6, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  font-style: italic;
}

.add_wrap_classic .description_box {
  position: relative;
  padding: var(--space-6, 1.5rem);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg, 12px);
  border: 1px solid var(--primary-200, #ddd6fe);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.08);
}

.add_wrap_classic .add_description {
  font-size: 1.0625rem;
  color: var(--text-secondary, #475569);
  line-height: 1.75;
  margin: 0;
}

/* Diagonal grid */
.add_wrap_classic .add_diagonal_grid {
  margin-top: var(--space-10, 2.5rem);
}

.add_wrap_classic .diagonal_item {
  position: relative;
  background: #ffffff;
  padding: var(--space-6, 1.5rem);
  border-radius: var(--radius-lg, 12px);
  border: 2px solid var(--neutral-100, #f1f5f9);
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.add_wrap_classic .diagonal_item:hover {
  transform: translateY(-8px) rotate(-1deg);
  border-color: var(--primary-500, #7c3aed);
  box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
}

/* Corner accent */
.add_wrap_classic .item_corner_accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent 50%, var(--primary-50, #f5f3ff) 50%);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.add_wrap_classic .diagonal_item:hover .item_corner_accent {
  opacity: 1;
  background: linear-gradient(135deg, transparent 50%, var(--primary-100, #ede9fe) 50%);
}

/* Alternating styles */
.add_wrap_classic .item_style_a {
  transform: rotate(0.5deg);
}

.add_wrap_classic .item_style_b {
  transform: rotate(-0.5deg);
}

.add_wrap_classic .item_style_a:hover {
  transform: translateY(-8px) rotate(-0.5deg);
}

.add_wrap_classic .item_style_b:hover {
  transform: translateY(-8px) rotate(0.5deg);
}

/* Icon frames */
.add_wrap_classic .item_icon_frame {
  position: relative;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-50, #f5f3ff) 0%, var(--primary-100, #ede9fe) 100%);
  border-radius: 16px;
  color: var(--primary-500, #7c3aed);
  font-size: 2rem;
  margin-bottom: var(--space-4, 1rem);
  transition: all 0.3s ease;
  z-index: 1;
}

.add_wrap_classic .diagonal_item:hover .item_icon_frame {
  background: linear-gradient(135deg, var(--primary-500, #7c3aed) 0%, var(--primary-700, #6d28d9) 100%);
  color: #ffffff;
  transform: scale(1.1) rotate(10deg);
}

/* Content */
.add_wrap_classic .item_content {
  position: relative;
  z-index: 1;
}

.add_wrap_classic .add_elem_title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  color: var(--text-primary, #1a1a1b);
  margin-bottom: var(--space-3, 0.75rem);
  line-height: 1.3;
}

.add_wrap_classic .add_elem_desc {
  font-size: 1rem;
  color: var(--text-secondary, #475569);
  line-height: 1.65;
  margin: 0;
}

/* Highlight item */
.add_wrap_classic .item_highlight {
  position: relative;
  min-height: auto;
  padding: var(--space-8, 2rem);
  background: linear-gradient(135deg, var(--primary-50, #f5f3ff) 0%, #ffffff 50%, var(--primary-50, #f5f3ff) 100%);
  border: 3px solid var(--primary-300, #c4b5fd);
  transform: rotate(0deg);
  text-align: center;
}

.add_wrap_classic .item_highlight:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-500, #7c3aed);
}

.add_wrap_classic .highlight_glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
  pointer-events: none;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.8;
  }
}

.add_wrap_classic .icon_frame_large {
  width: 96px;
  height: 96px;
  font-size: 2.5rem;
  margin: 0 auto var(--space-6, 1.5rem);
  border-radius: 50%;
}

.add_wrap_classic .icon_ripple {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 3px solid var(--primary-300, #c4b5fd);
  border-radius: 50%;
  animation: ripple-out 2s ease-out infinite;
}

@keyframes ripple-out {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.add_wrap_classic .item_content_centered {
  max-width: 900px;
  margin: 0 auto;
}

.add_wrap_classic .item_highlight .add_elem_title {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .add_wrap_classic .floating_icon {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .add_wrap_classic {
    padding: var(--space-10, 2.5rem) 0;
  }
  
  .add_wrap_classic .add_header_creative {
    margin-bottom: var(--space-8, 2rem);
  }
  
  .add_wrap_classic .diagonal_item {
    min-height: auto;
    padding: var(--space-4, 1rem);
    transform: rotate(0deg) !important;
  }
  
  .add_wrap_classic .diagonal_item:hover {
    transform: translateY(-4px) rotate(0deg) !important;
  }
  
  .add_wrap_classic .item_highlight {
    padding: var(--space-6, 1.5rem);
  }
  
  .add_wrap_classic .item_icon_frame {
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
  }
  
  .add_wrap_classic .icon_frame_large {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }
  
  .add_wrap_classic .icon_ripple {
    width: 100px;
    height: 100px;
  }
}


/* Universal section */
/* Theme: earth-01 */

.additional-universal-section {
  position: relative;
  background: var(--light);
  overflow: hidden;
}

/* Section Header */
.section-header {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
  z-index: 1;
}

.header-icon-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.header-icon-group i {
  font-size: 2rem;
  color: var(--primary-500);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.header-icon-group i:hover {
  transform: scale(1.2) rotate(10deg);
  opacity: 1;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-500);
  line-height: 1.4;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 750px;
}

/* Accordion */
.content-accordion {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.accordion-item {
  background: var(--surface-primary);
  border: 2px solid var(--neutral-100);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item:hover {
  border-color: var(--primary-300);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transform: translateX(8px);
}

.accordion-header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  cursor: default;
}

.header-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-500) 0%, var(--primary-700) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.accordion-item:hover .header-icon {
  transform: rotate(10deg) scale(1.1);
}

.header-icon i {
  font-size: 1.75rem;
  color: var(--light);
}

.header-content {
  flex: 1;
}

.accordion-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0;
  line-height: 1.3;
}

.header-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--primary-500);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.accordion-item:hover .header-accent {
  opacity: 1;
}

.accordion-body {
  padding: 0 2rem 1.75rem 2rem;
  padding-left: calc(60px + 3.25rem);
}

.accordion-description {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Decorative Elements */
.decorative-leaf {
  position: absolute;
  font-size: 4rem;
  color: var(--primary-300);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.leaf-1 {
  top: 10%;
  left: 5%;
  transform: rotate(-20deg);
}

.leaf-2 {
  bottom: 15%;
  right: 8%;
  transform: rotate(30deg);
}

.decorative-pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--primary-50) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.25rem;
  }

  .accordion-header {
    padding: 1.5rem 1.5rem;
    gap: 1rem;
  }

  .accordion-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    padding-left: calc(60px + 2.5rem);
  }

  .header-icon {
    width: 55px;
    height: 55px;
  }

  .header-icon i {
    font-size: 1.5rem;
  }

  .accordion-title {
    font-size: 1.375rem;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .accordion-header {
    padding: 1.25rem;
    gap: 0.875rem;
  }

  .accordion-body {
    padding: 0 1.25rem 1.25rem 1.25rem;
  }

  .header-icon {
    width: 50px;
    height: 50px;
  }

  .header-icon i {
    font-size: 1.375rem;
  }

  .accordion-title {
    font-size: 1.25rem;
  }

  .accordion-description {
    font-size: 1rem;
  }

  .decorative-leaf {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .additional-universal-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .section-header {
    margin-bottom: 2rem !important;
  }

  .header-icon-group {
    gap: 0.75rem;
  }

  .header-icon-group i {
    font-size: 1.5rem;
  }

  .accordion-item {
    margin-bottom: 1rem;
  }

  .accordion-item:hover {
    transform: translateX(4px);
  }

  .accordion-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .accordion-body {
    padding-left: 1.25rem;
  }
}


/* ===================================
   v-010: Professional Blue Theme
   Layout: Card Grid with Featured Element
   =================================== */

.add_wrap.v010_professional {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--neutral-50) 0%, var(--primary-50) 100%);
  position: relative;
  overflow: hidden;
}

/* Header Section */
.add_wrap.v010_professional .add_header {
  margin-bottom: var(--space-12);
  position: relative;
  z-index: 2;
}

.add_wrap.v010_professional .add_title {
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  font-weight: 700;
  line-height: 1.2;
}

.add_wrap.v010_professional .add_subtitle {
  color: var(--primary-500);
  margin-bottom: var(--space-6);
  font-weight: 600;
}

.add_wrap.v010_professional .add_description {
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Decorative Line */
.add_wrap.v010_professional .add_decorative_line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500) 0%, var(--primary-300) 100%);
  margin: var(--space-8) auto var(--space-12);
  border-radius: 2px;
}

/* Content Grid */
.add_wrap.v010_professional .add_content_grid {
  position: relative;
  z-index: 2;
}

/* Standard Cards */
.add_wrap.v010_professional .add_card {
  height: 100%;
  padding: var(--space-8);
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.add_wrap.v010_professional .add_card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--primary-500);
  transition: height 0.3s ease;
}

.add_wrap.v010_professional .add_card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.add_wrap.v010_professional .add_card:hover::before {
  height: 100%;
}

/* Card Icon */
.add_wrap.v010_professional .add_card_icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-50);
  border-radius: 12px;
  margin-bottom: var(--space-4);
  transition: all 0.3s ease;
}

.add_wrap.v010_professional .add_card_icon i {
  font-size: 28px;
  color: var(--primary-500);
}

.add_wrap.v010_professional .add_card:hover .add_card_icon {
  background: var(--primary-500);
}

.add_wrap.v010_professional .add_card:hover .add_card_icon i {
  color: #ffffff;
}

/* Card Content */
.add_wrap.v010_professional .add_card_title {
  color: var(--text-primary);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-3);
  line-height: 1.3;
}

.add_wrap.v010_professional .add_card_desc {
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Card Variants */
.add_wrap.v010_professional .add_card_primary .add_card_icon {
  background: var(--primary-100);
}

.add_wrap.v010_professional .add_card_secondary .add_card_icon {
  background: var(--primary-50);
}

.add_wrap.v010_professional .add_card_accent .add_card_icon i {
  color: var(--primary-700);
}

.add_wrap.v010_professional .add_card_highlight {
  border-color: var(--primary-300);
}

/* Featured Card (Element 5) */
.add_wrap.v010_professional .add_featured_card {
  padding: var(--space-8);
  background: linear-gradient(135deg, #ffffff 0%, var(--primary-50) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary-300);
  transition: all 0.3s ease;
}

.add_wrap.v010_professional .add_featured_card:hover {
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.15);
}

.add_wrap.v010_professional .add_featured_icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-500);
  border-radius: 50%;
  margin: 0 auto;
}

.add_wrap.v010_professional .add_featured_icon i {
  font-size: 48px;
  color: #ffffff;
}

.add_wrap.v010_professional .add_featured_title {
  color: var(--text-primary);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-4);
  line-height: 1.3;
}

.add_wrap.v010_professional .add_featured_desc {
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.7;
}

/* Decorative Background Elements */
.add_wrap.v010_professional .add_decorative_blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  z-index: 1;
  pointer-events: none;
}

.add_wrap.v010_professional .add_decorative_blob_1 {
  width: 400px;
  height: 400px;
  background: var(--primary-500);
  top: -200px;
  right: -100px;
}

.add_wrap.v010_professional .add_decorative_blob_2 {
  width: 300px;
  height: 300px;
  background: var(--primary-300);
  bottom: -150px;
  left: -100px;
}

.add_wrap.v010_professional .add_decorative_circle {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 3px solid var(--primary-300);
  border-radius: 50%;
  top: 50%;
  left: -75px;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

/* Responsive Design */
@media (max-width: 991px) {
  .add_wrap.v010_professional .add_featured_icon {
    width: 80px;
    height: 80px;
  }

  .add_wrap.v010_professional .add_featured_icon i {
    font-size: 36px;
  }

  .add_wrap.v010_professional .add_featured_title {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .add_wrap.v010_professional .add_card {
    padding: var(--space-6);
  }

  .add_wrap.v010_professional .add_card_icon {
    width: 50px;
    height: 50px;
  }

  .add_wrap.v010_professional .add_card_icon i {
    font-size: 24px;
  }

  .add_wrap.v010_professional .add_card_title {
    font-size: 1.125rem;
  }

  .add_wrap.v010_professional .add_featured_card {
    padding: var(--space-6);
  }

  .add_wrap.v010_professional .add_featured_icon {
    width: 70px;
    height: 70px;
    margin-bottom: var(--space-4);
  }

  .add_wrap.v010_professional .add_featured_icon i {
    font-size: 32px;
  }

  .add_wrap.v010_professional .add_featured_title {
    font-size: 1.125rem;
  }

  .add_wrap.v010_professional .add_decorative_line {
    width: 60px;
    height: 3px;
  }
}


.add_wrap {
  padding: var(--section-py) 0;
  background-color: var(--neutral-100);
}

.add_wrap .add_header {
  margin-bottom: var(--space-12);
}

.add_wrap .add_title {
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.add_wrap .add_subtitle {
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

.add_wrap .add_description {
  color: var(--text-body);
  max-width: 600px;
  margin: 0 auto;
}

.add_wrap .add_process_container {
  max-width: 800px;
  margin: 0 auto;
}

.add_wrap .add_process_step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  margin-bottom: var(--space-10);
  position: relative;
}

.add_wrap .add_process_step:last-child {
  margin-bottom: 0;
}

.add_wrap .add_step_number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--neutral-100);
  font-size: 1.5rem;
  font-weight: bold;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.add_wrap .add_step_content {
  flex-grow: 1;
  background-color: var(--neutral-50);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-200);
  position: relative;
  top: var(--space-2);
}

.add_wrap .add_step_content:before {
  content: '';
  position: absolute;
  left: -12px;
  top: var(--space-6);
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 12px solid var(--neutral-200);
}

.add_wrap .add_step_content:after {
  content: '';
  position: absolute;
  left: -11px;
  top: calc(var(--space-6) + 1px);
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-right: 11px solid var(--neutral-50);
}

.add_wrap .add_step_title {
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  font-size: 1.25rem;
  font-weight: 600;
}

.add_wrap .add_step_desc {
  color: var(--text-body);
  margin-bottom: 0;
  line-height: 1.6;
}

.add_wrap .add_step_connector {
  position: absolute;
  left: 39px;
  top: 80px;
  bottom: -40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary-300), var(--primary-200));
  z-index: 1;
}

.add_wrap .add_process_step:last-child .add_step_connector {
  display: none;
}

.add_wrap .add_process_step:nth-child(even) .add_step_number {
  background: linear-gradient(135deg, var(--primary-400), var(--primary-300));
}

.add_wrap .add_process_step:nth-child(even) .add_step_content {
  background: linear-gradient(135deg, var(--neutral-50), var(--primary-50));
}

@media (max-width: 768px) {
  .add_wrap .add_process_step {
    gap: var(--space-4);
    margin-bottom: var(--space-8);
  }
  
  .add_wrap .add_step_number {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
  
  .add_wrap .add_step_content {
    padding: var(--space-4);
  }
  
  .add_wrap .add_step_content:before {
    left: -8px;
    border-right-width: 8px;
    border-top-width: 8px;
    border-bottom-width: 8px;
  }
  
  .add_wrap .add_step_content:after {
    left: -7px;
    border-right-width: 7px;
    border-top-width: 7px;
    border-bottom-width: 7px;
  }
  
  .add_wrap .add_step_connector {
    left: 29px;
    top: 60px;
    bottom: -32px;
  }
}


.add_wrap {
  padding: var(--section-py) 0;
  background-color: var(--neutral-100);
}

.add_wrap .add_header {
  margin-bottom: var(--space-12);
}

.add_wrap .add_title {
  color: var(--text-primary);
  margin-bottom: var(--space-4);
}

.add_wrap .add_subtitle {
  color: var(--text-secondary);
  margin-bottom: var(--space-6);
}

.add_wrap .add_description {
  color: var(--text-body);
  max-width: 700px;
  margin: 0 auto;
}

.add_wrap .add_feature_item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  padding: var(--space-6);
  background-color: var(--neutral-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--neutral-200);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.add_wrap .add_feature_item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.add_wrap .add_feature_highlight {
  background: linear-gradient(135deg, var(--primary-50), var(--neutral-50));
  border-color: var(--primary-200);
}

.add_wrap .add_feature_icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-lg);
  flex-shrink: 0;
  position: relative;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
}

.add_wrap .add_feature_highlight .add_feature_icon {
  background: linear-gradient(135deg, var(--primary-600), var(--primary-500));
}

.add_wrap .add_icon_check:after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--neutral-100);
  font-size: 24px;
  font-weight: bold;
}

.add_wrap .add_icon_star:after {
  content: '★';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--neutral-100);
  font-size: 24px;
}

.add_wrap .add_icon_shield:after {
  content: '🛡';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
}

.add_wrap .add_icon_target:after {
  content: '🎯';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
}

.add_wrap .add_icon_rocket:after {
  content: '🚀';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
}

.add_wrap .add_feature_content {
  flex-grow: 1;
}

.add_wrap .add_feature_title {
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  font-size: 1.25rem;
  font-weight: 600;
}

.add_wrap .add_feature_highlight .add_feature_title {
  font-size: 1.5rem;
}

.add_wrap .add_feature_desc {
  color: var(--text-body);
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .add_wrap .add_feature_item {
    flex-direction: column;
    text-align: center;
    gap: var(--space-4);
    padding: var(--space-4);
  }
  
  .add_wrap .add_feature_icon {
    width: 50px;
    height: 50px;
    margin: 0 auto;
  }
  
  .add_wrap .add_icon_check:after,
  .add_wrap .add_icon_star:after {
    font-size: 20px;
  }
  
  .add_wrap .add_icon_shield:after,
  .add_wrap .add_icon_target:after,
  .add_wrap .add_icon_rocket:after {
    font-size: 20px;
  }
}


/* Universal section */

.additional-universal-section.v-065 {
  padding: 100px 0;
  background: var(--surface-primary);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.v-065 .section-header {
  max-width: 850px;
  margin: 0 auto 70px;
}

.v-065 .badge-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.v-065 .badge-item {
  width: 40px;
  height: 8px;
  background: var(--primary-500);
  border-radius: 4px;
  transition: all 0.3s ease;
  animation: badgeGrow 2s ease-in-out infinite;
}

.v-065 .badge-item:nth-child(1) { animation-delay: 0s; }
.v-065 .badge-item:nth-child(2) { animation-delay: 0.2s; }
.v-065 .badge-item:nth-child(3) { animation-delay: 0.4s; }
.v-065 .badge-item:nth-child(4) { animation-delay: 0.6s; }
.v-065 .badge-item:nth-child(5) { animation-delay: 0.8s; }

.v-065 .section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.v-065 .section-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-500);
  line-height: 1.4;
}

.v-065 .section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 750px;
}

/* Steps Grid */
.v-065 .steps-grid {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Step Card */
.v-065 .step-card {
  display: flex;
  gap: 30px;
  background: white;
  border: 2px solid var(--neutral-100);
  border-radius: 16px;
  padding: 35px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.v-065 .step-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 16px;
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.v-065 .step-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}

.v-065 .step-card:hover::before {
  opacity: 1;
}

/* Step Left - Number Section */
.v-065 .step-left {
  flex-shrink: 0;
}

.v-065 .step-number-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.v-065 .step-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
}

.v-065 .step-number::before {
  content: '';
  position: absolute;
  inset: -4px;
  border: 3px solid var(--primary-300);
  border-radius: 18px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.v-065 .step-card:hover .step-number {
  transform: scale(1.1) rotate(-5deg);
}

.v-065 .step-card:hover .step-number::before {
  opacity: 1;
}

.v-065 .step-number span {
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  line-height: 1;
}

.v-065 .step-connector {
  width: 3px;
  height: 60px;
  background: linear-gradient(180deg, var(--primary-500), var(--primary-300));
  border-radius: 2px;
}

.v-065 .step-final .step-connector {
  display: none;
}

/* Step Right - Content Section */
.v-065 .step-right {
  flex: 1;
  display: flex;
  gap: 25px;
}

.v-065 .step-icon-badge {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: color-mix(in srgb, var(--primary-500) 12%, white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.v-065 .step-icon-badge i {
  font-size: 28px;
  color: var(--primary-500);
  transition: all 0.4s ease;
}

.v-065 .step-card:hover .step-icon-badge {
  background: var(--primary-500);
  transform: rotate(360deg);
}

.v-065 .step-card:hover .step-icon-badge i {
  color: white;
}

/* Step Content */
.v-065 .step-content {
  flex: 1;
}

.v-065 .step-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  margin-bottom: 15px;
}

.v-065 .step-description {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Decorative Background */
.v-065 .decorative-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.v-065 .grid-overlay {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(var(--neutral-100) 1px, transparent 1px),
    linear-gradient(90deg, var(--neutral-100) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.3;
}

.v-065 .corner-accent {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 3px solid var(--primary-300);
  opacity: 0.2;
}

.v-065 .corner-top-left {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 20px;
}

.v-065 .corner-bottom-right {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 20px;
}

/* Animations */
@keyframes badgeGrow {
  0%, 100% {
    transform: scaleX(1);
  }
  50% {
    transform: scaleX(1.3);
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .v-065 {
    padding: 80px 0;
  }

  .v-065 .section-title {
    font-size: 2.25rem;
  }

  .v-065 .section-subtitle {
    font-size: 1.25rem;
  }

  .v-065 .step-card {
    padding: 30px;
    gap: 25px;
  }

  .v-065 .step-right {
    gap: 20px;
  }

  .v-065 .step-number {
    width: 70px;
    height: 70px;
  }

  .v-065 .step-number span {
    font-size: 2rem;
  }

  .v-065 .step-title {
    font-size: 1.375rem;
  }
}

@media (max-width: 767px) {
  .v-065 {
    padding: 60px 0;
  }

  .v-065 .section-title {
    font-size: 1.875rem;
  }

  .v-065 .section-subtitle {
    font-size: 1.125rem;
  }

  .v-065 .badge-item {
    width: 30px;
    height: 6px;
  }

  .v-065 .step-card {
    flex-direction: column;
    padding: 25px 20px;
    gap: 20px;
  }

  .v-065 .step-left {
    display: flex;
    justify-content: center;
  }

  .v-065 .step-number-wrapper {
    flex-direction: row;
    gap: 20px;
  }

  .v-065 .step-connector {
    width: 60px;
    height: 3px;
  }

  .v-065 .step-number {
    width: 60px;
    height: 60px;
  }

  .v-065 .step-number span {
    font-size: 1.75rem;
  }

  .v-065 .step-right {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .v-065 .step-icon-badge {
    margin: 0 auto;
  }

  .v-065 .step-title {
    font-size: 1.25rem;
  }
}


/* Universal section */
/* Theme: modern-green-01 */

.additional-universal-section {
  position: relative;
  background: var(--light);
  overflow: hidden;
}

/* Section Header */
.section-header {
  position: relative;
  max-width: 850px;
  margin: 0 auto;
}

.header-accent-line {
  width: 80px;
  height: 4px;
  background: var(--primary-500);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.section-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary-500);
  line-height: 1.4;
}

.section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 750px;
}

/* Content Items */
.content-wrapper {
  position: relative;
  z-index: 1;
}

.content-item {
  position: relative;
  padding: 1.5rem 0;
}

.content-text {
  position: relative;
  padding: 2rem;
  background: var(--surface-primary);
  border-radius: 12px;
  border-left: 4px solid var(--primary-500);
  transition: all 0.3s ease;
}

.content-item:hover .content-text {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.item-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-100);
  line-height: 1;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.content-item:hover .item-number {
  color: var(--primary-300);
}

.item-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.item-description {
  font-size: 1.0625rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Visual Placeholder */
.content-visual {
  position: relative;
  padding: 1rem;
}

.visual-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--primary-50) 0%, var(--surface-secondary) 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--primary-100);
  transition: all 0.3s ease;
}

.content-item:hover .visual-placeholder {
  transform: scale(1.05);
  border-color: var(--primary-300);
}

.visual-placeholder i {
  font-size: 4rem;
  color: var(--primary-500);
  opacity: 0.7;
}

/* Decorative Elements */
.decorative-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--primary-100);
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 5%;
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 3%;
}

.decorative-line {
  position: absolute;
  background: var(--primary-100);
  opacity: 0.2;
  pointer-events: none;
  z-index: 0;
}

.line-1 {
  width: 2px;
  height: 60%;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .section-title {
    font-size: 2.25rem;
  }

  .section-subtitle {
    font-size: 1.25rem;
  }

  .item-title {
    font-size: 1.5rem;
  }

  .content-text {
    padding: 1.5rem;
  }

  .item-number {
    font-size: 2.5rem;
  }

  .visual-placeholder i {
    font-size: 3rem;
  }

  .line-1 {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1.125rem;
  }

  .section-description {
    font-size: 1rem;
  }

  .content-item {
    padding: 1rem 0;
  }

  .content-text {
    padding: 1.25rem;
  }

  .item-title {
    font-size: 1.375rem;
  }

  .item-description {
    font-size: 1rem;
  }

  .decorative-circle {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .additional-universal-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .section-header {
    margin-bottom: 2rem !important;
  }

  .item-number {
    font-size: 2rem;
  }

  .visual-placeholder {
    aspect-ratio: 16/9;
  }

  .visual-placeholder i {
    font-size: 2.5rem;
  }
}


.additional-universal-bold {
  background: var(--surface-primary);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.additional-universal-bold .header-line {
  width: 80px;
  height: 3px;
  background: var(--primary-500);
  margin: 0 auto 1.5rem;
}

.additional-universal-bold .section-header h1 {
  color: var(--text-primary);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.additional-universal-bold .section-header h2 {
  color: var(--text-secondary);
  font-weight: 600;
  letter-spacing: 1px;
}

.additional-universal-bold .section-header p {
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto;
}

/* Features Grid */
.additional-universal-bold .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

/* Feature Box */
.additional-universal-bold .feature-box {
  transition: transform 0.3s ease;
}

.additional-universal-bold .feature-box:hover {
  transform: translateY(-8px);
}

/* Feature Frame */
.additional-universal-bold .feature-frame {
  background: var(--surface-secondary);
  border: 2px solid var(--neutral-300);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.4s ease;
}

.additional-universal-bold .feature-box:hover .feature-frame {
  border-color: var(--primary-500);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Corner Accents */
.additional-universal-bold .corner-accent {
  position: absolute;
  width: 16px;
  height: 16px;
  border: 3px solid var(--primary-500);
  transition: all 0.4s ease;
}

.additional-universal-bold .corner-accent.top-left {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
}

.additional-universal-bold .corner-accent.top-right {
  top: -2px;
  right: -2px;
  border-left: none;
  border-bottom: none;
}

.additional-universal-bold .corner-accent.bottom-left {
  bottom: -2px;
  left: -2px;
  border-right: none;
  border-top: none;
}

.additional-universal-bold .corner-accent.bottom-right {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
}

.additional-universal-bold .feature-box:hover .corner-accent {
  width: 24px;
  height: 24px;
  border-color: var(--primary-700);
}

/* Feature Icon */
.additional-universal-bold .feature-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  transition: all 0.4s ease;
}

.additional-universal-bold .feature-box:hover .feature-icon {
  transform: rotate(45deg) scale(1.1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Feature Content */
.additional-universal-bold .feature-content {
  text-align: center;
}

.additional-universal-bold .feature-content h3 {
  color: var(--text-primary);
  line-height: 1.4;
  letter-spacing: 0.5px;
}

.additional-universal-bold .feature-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Grid Pattern Background */
.additional-universal-bold .grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(var(--neutral-300) 1px, transparent 1px),
    linear-gradient(90deg, var(--neutral-300) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 991px) {
  .additional-universal-bold .section-header h1 {
    font-size: 2rem;
  }

  .additional-universal-bold .features-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .additional-universal-bold .feature-frame {
    padding: 2rem 1.5rem;
  }

  .additional-universal-bold .feature-icon {
    width: 64px;
    height: 64px;
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .additional-universal-bold .section-header h1 {
    font-size: 1.75rem;
  }

  .additional-universal-bold .section-header h2 {
    font-size: 1.1rem;
  }

  .additional-universal-bold .features-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .additional-universal-bold .feature-frame {
    padding: 1.75rem 1.25rem;
  }

  .additional-universal-bold .feature-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }

  .additional-universal-bold .feature-content h3 {
    font-size: 1.1rem;
  }

  .additional-universal-bold .corner-accent {
    width: 12px;
    height: 12px;
  }

  .additional-universal-bold .feature-box:hover .corner-accent {
    width: 16px;
    height: 16px;
  }
}


/* Universal section */

.additional-universal-section.v-043 {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--surface-primary) 0%, color-mix(in srgb, var(--primary-50) 40%, var(--surface-primary) 60%) 100%);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.additional-universal-section.v-043 .section-header {
  position: relative;
  z-index: 2;
}

.additional-universal-section.v-043 .decorative-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-300));
  margin: 0 auto 24px;
  border-radius: 2px;
}

.additional-universal-section.v-043 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.additional-universal-section.v-043 .section-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-500);
  margin-bottom: 20px;
  line-height: 1.3;
}

.additional-universal-section.v-043 .section-description {
  font-size: 1.125rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

/* Content Cards */
.additional-universal-section.v-043 .content-card {
  background: var(--surface-primary);
  border-radius: 16px;
  padding: 32px;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--primary-300) 20%, transparent 80%);
}

.additional-universal-section.v-043 .content-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-300);
}

.additional-universal-section.v-043 .card-icon-wrapper {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.additional-universal-section.v-043 .content-card:hover .card-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.additional-universal-section.v-043 .card-icon-wrapper i {
  font-size: 32px;
  color: var(--light);
}

.additional-universal-section.v-043 .card-title {
  font-size: 1.375rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.additional-universal-section.v-043 .card-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

.additional-universal-section.v-043 .card-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-500), var(--primary-300));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.additional-universal-section.v-043 .content-card:hover .card-accent {
  transform: scaleX(1);
}

/* Featured Card */
.additional-universal-section.v-043 .content-card.featured {
  background: linear-gradient(135deg, var(--primary-50), var(--surface-primary));
  border: 2px solid var(--primary-300);
}

.additional-universal-section.v-043 .featured-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.additional-universal-section.v-043 .featured-icon-wrapper i {
  font-size: 40px;
  color: var(--light);
}

/* Decorative Shapes */
.additional-universal-section.v-043 .decorative-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.additional-universal-section.v-043 .shape-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, color-mix(in srgb, var(--primary-300) 15%, transparent 85%), transparent);
}

.additional-universal-section.v-043 .shape-circle.shape-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  right: -50px;
}

.additional-universal-section.v-043 .shape-circle.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  left: -50px;
}

.additional-universal-section.v-043 .blob-shape {
  position: absolute;
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, color-mix(in srgb, var(--primary-100) 10%, transparent 90%) 0%, transparent 70%);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .additional-universal-section.v-043 {
    padding: 60px 0;
  }

  .additional-universal-section.v-043 .section-title {
    font-size: 2rem;
  }

  .additional-universal-section.v-043 .section-subtitle {
    font-size: 1.25rem;
  }

  .additional-universal-section.v-043 .featured-icon-wrapper {
    width: 64px;
    height: 64px;
  }

  .additional-universal-section.v-043 .featured-icon-wrapper i {
    font-size: 32px;
  }
}

@media (max-width: 767.98px) {
  .additional-universal-section.v-043 {
    padding: 40px 0;
  }

  .additional-universal-section.v-043 .section-title {
    font-size: 1.75rem;
  }

  .additional-universal-section.v-043 .section-subtitle {
    font-size: 1.125rem;
  }

  .additional-universal-section.v-043 .content-card {
    padding: 24px;
  }

  .additional-universal-section.v-043 .card-icon-wrapper {
    width: 56px;
    height: 56px;
  }

  .additional-universal-section.v-043 .card-icon-wrapper i {
    font-size: 28px;
  }
}


/* Universal section */
/* Theme: creative-purple-01 */

.add_wrap {
  padding: var(--section-py) 0;
  background: linear-gradient(to bottom, white 0%, var(--neutral-50) 100%);
  position: relative;
}

/* Header Styles */
.add_header {
  margin-bottom: var(--space-10, var(--space-8));
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.add_title {
  font-family: var(--new_section_title);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-4);
  line-height: 1.15;
}

.add_subtitle {
  font-family: var(--app_body_large);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--primary-500);
  margin-bottom: var(--space-3);
  line-height: 1.4;
}

.add_description {
  font-family: var(--digital_body_base);
  font-size: 1.0625rem;
  color: var(--text-body);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Elements Grid */
.add_elements_grid {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.add_row_element {
  position: relative;
}

.add_row_element::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: calc(100% + 40px);
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
  pointer-events: none;
}

.add_row_element:hover::before {
  opacity: 1;
}

.add_row_element > * {
  position: relative;
  z-index: 1;
}

/* Image Placeholder */
.add_image_placeholder {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--primary-500), var(--primary-600, var(--primary-500)));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
  overflow: hidden;
  position: relative;
}

.add_image_placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

/* Content Styles */
.add_content {
  padding: var(--space-4);
}

.add_elem_title {
  font-family: var(--app_body_large);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-3);
  line-height: 1.3;
  position: relative;
  padding-left: var(--space-4);
}

.add_elem_title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 4px;
  height: 1.5em;
  background: var(--primary-500);
  border-radius: 2px;
}

.add_elem_desc {
  font-family: var(--digital_body_base);
  font-size: 1rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.7;
  padding-left: var(--space-4);
}

/* Responsive Design */
@media (max-width: 768px) {
  .add_wrap {
    padding: var(--space-8) 0;
  }
  
  .add_elements_grid {
    gap: var(--space-6);
  }
  
  .add_row_element::before {
    display: none;
  }
  
  .add_image_placeholder {
    aspect-ratio: 16 / 9;
    font-size: 3rem;
    margin-bottom: var(--space-4);
  }
  
  .add_content {
    padding: var(--space-2);
  }
  
  .add_elem_title,
  .add_elem_desc {
    padding-left: var(--space-3);
  }
  
  .add_elem_title::before {
    width: 3px;
  }
}


div.website-livechat-widget div.website-livechat-header,
.website-livechat-widget .website-livechat-header {
    padding: 16px 20px !important;
    border-bottom: 2px solid #34495e !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: #34495e !important;
    color: #ffffff !important;
    margin: 0 !important;
}

div.website-livechat-widget h5.website-livechat-title,
div.website-livechat-widget .website-livechat-title,
.website-livechat-widget .website-livechat-title,
.website-livechat-title {
    font-size: 17px !important;
    font-weight: 600 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #ffffff !important;
    background: transparent !important;
    text-transform: none !important;
    letter-spacing: 0.3px !important;
    text-shadow: none !important;
    line-height: 1.2 !important;
    font-family: inherit !important;
}

div.website-livechat-widget button.website-livechat-toggle,
div.website-livechat-widget .website-livechat-toggle,
.website-livechat-widget .website-livechat-toggle {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,0.5) !important;
    color: #ffffff !important;
    font-size: 16px !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    padding: 6px 8px !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
    outline: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    text-decoration: none !important;
}

div.website-livechat-widget button.website-livechat-toggle:hover,
.website-livechat-widget .website-livechat-toggle:hover {
    background: rgba(255,255,255,0.1) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

div.website-livechat-widget button.website-livechat-toggle i,
div.website-livechat-widget .website-livechat-toggle i,
.website-livechat-widget .website-livechat-toggle i {
    color: #ffffff !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    font-family: "Font Awesome 6 Free" !important;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

div.website-livechat-widget div.website-livechat-content,
.website-livechat-widget .website-livechat-content {
    padding: 16px 20px 20px !important;
    max-height: 380px !important;
    overflow-y: auto !important;
    background: #ffffff !important;
    color: #2c3e50 !important;
    margin: 0 !important;
}

div.website-livechat-widget div.website-livechat-content.hidden,
.website-livechat-widget .website-livechat-content.hidden {
    display: none !important;
}

div.website-livechat-widget div.website-faq-item,
.website-livechat-widget .website-faq-item {
    margin-bottom: 14px !important;
    padding-bottom: 14px !important;
    border-bottom: 1px solid #e0e0e0 !important;
    background: transparent !important;
    color: #2c3e50 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
}

div.website-livechat-widget div.website-faq-item:last-child,
.website-livechat-widget .website-faq-item:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

div.website-livechat-widget div.website-faq-question,
.website-livechat-widget .website-faq-question {
    font-size: 14px !important;
    font-weight: 600 !important;
    margin-bottom: 6px !important;
    margin-top: 0 !important;
    color: #34495e !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-transform: none !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    text-align: left !important;
    line-height: 1.5 !important;
    font-family: inherit !important;
    text-decoration: none !important;
}

div.website-livechat-widget div.website-faq-question:hover,
.website-livechat-widget .website-faq-question:hover {
    color: #007bff !important;
    background: transparent !important;
}

div.website-livechat-widget div.website-faq-question span,
.website-livechat-widget .website-faq-question span {
    color: #34495e !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    line-height: 1.5 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

div.website-livechat-widget div.website-faq-answer,
.website-livechat-widget .website-faq-answer {
    font-size: 13px !important;
    line-height: 1.6 !important;
    color: #666666 !important;
    display: none !important;
    padding-top: 6px !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    text-align: left !important;
    font-family: inherit !important;
}

div.website-livechat-widget div.website-faq-answer.show,
.website-livechat-widget .website-faq-answer.show {
    display: block !important;
    color: #666666 !important;
}

div.website-livechat-widget i.website-faq-icon,
.website-livechat-widget .website-faq-icon {
    transition: transform 0.3s ease !important;
    font-size: 12px !important;
    color: #7f8c8d !important;
    font-weight: 900 !important;
    font-family: "Font Awesome 6 Free" !important;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

div.website-livechat-widget i.website-faq-icon.rotated,
.website-livechat-widget .website-faq-icon.rotated {
    transform: rotate(180deg) !important;
    color: #007bff !important;
}

@media (max-width: 768px) {
    div.website-livechat-widget,
    .website-livechat-widget {
        display: none !important;
    }
}


.website-maps-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

.website-maps-title {
    text-align: center !important;
    font-size: 30px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    color: #ffffff !important;
    font-family: inherit !important;
}

.website-maps-subtitle {
    text-align: center !important;
    font-size: 16px !important;
    color: #cccccc !important;
    margin-bottom: 40px !important;
    font-family: inherit !important;
}

.website-google-map {
    width: 100% !important;
    height: 420px !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5) !important;
    border: 2px solid #333333 !important;
}

@media (max-width: 768px) {
    .website-google-maps-section {
        padding: 40px 0 !important;
    }
    
    .website-maps-title {
        font-size: 24px !important;
    }
    
    .website-google-map {
        height: 300px !important;
    }
}


.website-cta-container {
    max-width: 750px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.website-cta-title {
    font-size: 28px !important;
    font-weight: 600 !important;
    margin-bottom: 12px !important;
    color: #333333 !important;
    font-family: inherit !important;
}

.website-cta-subtitle {
    font-size: 17px !important;
    margin-bottom: 32px !important;
    color: #555555 !important;
    font-family: inherit !important;
}

.website-cta-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 16px 30px !important;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 25px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    border: none !important;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1) !important;
}

.website-cta-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 30px rgba(0,0,0,0.2) !important;
    color: white !important;
    text-decoration: none !important;
}

.website-cta-phone-icon {
    font-size: 18px !important;
}

@media (max-width: 768px) {
    .website-cta-section {
        padding: 45px 0 !important;
    }
    
    .website-cta-title {
        font-size: 24px !important;
    }
}


.website-security-badge {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 15px !important;
    background: white !important;
    border-radius: 8px !important;
    border: 1px solid #e0e0e0 !important;
    text-decoration: none !important;
    color: #333333 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
}

.website-security-badge:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1) !important;
    color: #333333 !important;
    text-decoration: none !important;
}

.website-security-badge-icon {
    font-size: 16px !important;
    color: #28a745 !important;
}

.website-security-badge.ssl .website-security-badge-icon {
    color: #28a745 !important;
}

.website-security-badge.payment .website-security-badge-icon {
    color: #007bff !important;
}

.website-security-badge.privacy .website-security-badge-icon {
    color: #6c757d !important;
}

.website-security-badge.support .website-security-badge-icon {
    color: #17a2b8 !important;
}

@media (max-width: 768px) {
    .website-security-badges {
        gap: 10px !important;
        padding: 20px 10px !important;
    }
    
    .website-security-badge {
        font-size: 12px !important;
        padding: 8px 12px !important;
    }
}


.website-floating-icon {
    position: absolute !important;
    font-size: 22px !important;
    color: rgba(0,0,0,0.06) !important;
    z-index: 1 !important;
    pointer-events: none !important;
    animation: websiteFloatAnimationPulse 6s ease-in-out infinite !important;
}

.website-floating-icon.variant-1 {
    top: 15% !important;
    right: 8% !important;
    animation-delay: 0s !important;
}

.website-floating-icon.variant-2 {
    top: 55% !important;
    right: 5% !important;
    animation-delay: 2s !important;
    font-size: 18px !important;
}

.website-floating-icon.variant-3 {
    top: 35% !important;
    left: 6% !important;
    animation-delay: 4s !important;
    font-size: 26px !important;
}

@keyframes websiteFloatAnimationPulse {
    0%, 100% {
        transform: scale(1) !important;
        opacity: 0.25 !important;
    }
    50% {
        transform: scale(1.15) !important;
        opacity: 0.55 !important;
    }
}

@media (max-width: 768px) {
    .website-floating-icon {
        display: none !important;
    }
}


/* Live Chat FAQ Widget - Minimal Style - Enhanced Specificity */
div.website-livechat-widget,
.website-livechat-widget {
    position: fixed !important;
    right: 20px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 280px !important;
    background: #ffffff !important;
    border-radius: 8px !important;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15) !important;
    z-index: 999999 !important;
    color: #333333 !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    text-align: left !important;
    transition: all 0.3s ease !important;
    border: 1px solid #e0e0e0 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

div.website-livechat-widget div.website-livechat-header,
.website-livechat-widget .website-livechat-header {
    padding: 12px 18px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: #f8f9fa !important;
    border-radius: 8px 8px 0 0 !important;
    color: #333333 !important;
    margin: 0 !important;
}

div.website-livechat-widget h5.website-livechat-title,
div.website-livechat-widget .website-livechat-title,
.website-livechat-widget .website-livechat-title,
.website-livechat-title {
    font-size: 15px !important;
    font-weight: 500 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #333333 !important;
    background: transparent !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    text-shadow: none !important;
    line-height: 1.2 !important;
    font-family: inherit !important;
}

div.website-livechat-widget button.website-livechat-toggle,
div.website-livechat-widget .website-livechat-toggle,
.website-livechat-widget .website-livechat-toggle {
    background: none !important;
    border: none !important;
    color: #666666 !important;
    font-size: 16px !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    padding: 4px !important;
    border-radius: 3px !important;
    transition: color 0.3s ease !important;
    outline: none !important;
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    text-decoration: none !important;
}

div.website-livechat-widget button.website-livechat-toggle:hover,
.website-livechat-widget .website-livechat-toggle:hover {
    color: #333333 !important;
    background: transparent !important;
}

div.website-livechat-widget button.website-livechat-toggle i,
div.website-livechat-widget .website-livechat-toggle i,
.website-livechat-widget .website-livechat-toggle i {
    color: #666666 !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    font-family: "Font Awesome 6 Free" !important;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

div.website-livechat-widget div.website-livechat-content,
.website-livechat-widget .website-livechat-content {
    padding: 15px 18px 18px !important;
    max-height: 350px !important;
    overflow-y: auto !important;
    background: #ffffff !important;
    color: #333333 !important;
    margin: 0 !important;
}

div.website-livechat-widget div.website-livechat-content.hidden,
.website-livechat-widget .website-livechat-content.hidden {
    display: none !important;
}

div.website-livechat-widget div.website-faq-item,
.website-livechat-widget .website-faq-item {
    margin-bottom: 10px !important;
    border-bottom: 1px solid #f0f0f0 !important;
    padding-bottom: 10px !important;
    background: transparent !important;
    color: #333333 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    padding-top: 0 !important;
}

div.website-livechat-widget div.website-faq-item:last-child,
.website-livechat-widget .website-faq-item:last-child {
    border-bottom: none !important;
    margin-bottom: 0 !important;
}

div.website-livechat-widget div.website-faq-question,
.website-livechat-widget .website-faq-question {
    font-size: 13px !important;
    font-weight: 500 !important;
    margin-bottom: 5px !important;
    margin-top: 0 !important;
    color: #333333 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    user-select: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    text-align: left !important;
    line-height: 1.4 !important;
    font-family: inherit !important;
    text-decoration: none !important;
}

div.website-livechat-widget div.website-faq-question:hover,
.website-livechat-widget .website-faq-question:hover {
    color: #007bff !important;
    background: transparent !important;
}

div.website-livechat-widget div.website-faq-question span,
.website-livechat-widget .website-faq-question span {
    color: #333333 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

div.website-livechat-widget div.website-faq-answer,
.website-livechat-widget .website-faq-answer {
    font-size: 12px !important;
    line-height: 1.4 !important;
    color: #666666 !important;
    display: none !important;
    padding-top: 5px !important;
    padding-bottom: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin: 0 !important;
    background: transparent !important;
    border: none !important;
    text-align: left !important;
    font-family: inherit !important;
}

div.website-livechat-widget div.website-faq-answer.show,
.website-livechat-widget .website-faq-answer.show {
    display: block !important;
    color: #666666 !important;
}

div.website-livechat-widget i.website-faq-icon,
.website-livechat-widget .website-faq-icon {
    transition: transform 0.3s ease !important;
    font-size: 11px !important;
    color: #999999 !important;
    font-weight: 900 !important;
    font-family: "Font Awesome 6 Free" !important;
    display: inline-block !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
}

div.website-livechat-widget i.website-faq-icon.rotated,
.website-livechat-widget .website-faq-icon.rotated {
    transform: rotate(180deg) !important;
    color: #999999 !important;
}

@media (max-width: 768px) {
    div.website-livechat-widget,
    .website-livechat-widget {
        display: none !important;
    }
}


/* Google Maps Section - Dark Style */
.website-google-maps-section {
    padding: 60px 0 !important;
    background: #1a1a1a !important;
    margin: 0 !important;
    border-top: 1px solid #333333 !important;
    border-bottom: 1px solid #333333 !important;
    position: relative !important;
    z-index: 1 !important;
    pointer-events: auto !important;
}

.website-maps-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 15px !important;
}

.website-maps-title {
    text-align: center !important;
    font-size: 30px !important;
    font-weight: 600 !important;
    margin-bottom: 15px !important;
    color: #ffffff !important;
    font-family: inherit !important;
}

.website-maps-subtitle {
    text-align: center !important;
    font-size: 16px !important;
    color: #cccccc !important;
    margin-bottom: 40px !important;
    font-family: inherit !important;
}

.website-google-map {
    width: 100% !important;
    height: 420px !important;
    border: none !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5) !important;
    border: 2px solid #333333 !important;
}

@media (max-width: 768px) {
    .website-google-maps-section {
        padding: 40px 0 !important;
    }
    
    .website-maps-title {
        font-size: 24px !important;
    }
    
    .website-google-map {
        height: 300px !important;
    }
}


/* CTA Section - Minimal Style */
.website-cta-section {
    padding: 40px 0 !important;
    background: #ffffff !important;
    color: #333333 !important;
    text-align: center !important;
    margin: 0 !important;
    border-top: 1px solid #e0e0e0 !important;
    border-bottom: 1px solid #e0e0e0 !important;
    position: relative !important;
    z-index: 1 !important;
    pointer-events: auto !important;
}

.website-cta-container {
    max-width: 600px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.website-cta-title {
    font-size: 24px !important;
    font-weight: 400 !important;
    margin-bottom: 10px !important;
    color: #333333 !important;
    font-family: inherit !important;
}

.website-cta-subtitle {
    font-size: 15px !important;
    margin-bottom: 25px !important;
    color: #666666 !important;
    font-family: inherit !important;
}

.website-cta-button {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 12px 24px !important;
    background: #333333 !important;
    color: white !important;
    text-decoration: none !important;
    border-radius: 3px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.website-cta-button:hover {
    background: #555555 !important;
    color: white !important;
    text-decoration: none !important;
}

.website-cta-phone-icon {
    font-size: 16px !important;
}

@media (max-width: 768px) {
    .website-cta-section {
        padding: 30px 0 !important;
    }
}


/* Security Badges - Bold Style */
.website-security-badges {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 15px !important;
    padding: 30px 0 !important;
    flex-wrap: wrap !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    border-top: none !important;
    border-bottom: none !important;
}

.website-security-badge {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    padding: 12px 18px !important;
    background: rgba(255,255,255,0.95) !important;
    border-radius: 25px !important;
    border: 2px solid rgba(255,255,255,0.3) !important;
    text-decoration: none !important;
    color: #333333 !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15) !important;
}

.website-security-badge:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25) !important;
    color: #333333 !important;
    text-decoration: none !important;
    background: white !important;
}

.website-security-badge-icon {
    font-size: 18px !important;
    color: #28a745 !important;
}

.website-security-badge.ssl .website-security-badge-icon {
    color: #28a745 !important;
}

.website-security-badge.payment .website-security-badge-icon {
    color: #007bff !important;
}

.website-security-badge.privacy .website-security-badge-icon {
    color: #6c757d !important;
}

.website-security-badge.support .website-security-badge-icon {
    color: #17a2b8 !important;
}

@media (max-width: 768px) {
    .website-security-badges {
        gap: 12px !important;
        padding: 25px 10px !important;
    }
    
    .website-security-badge {
        font-size: 12px !important;
        padding: 10px 15px !important;
    }
}


/* Floating Decorative Icons - Pulse Animation */
.website-floating-icons {
    position: relative !important;
    overflow: hidden !important;
}

.website-floating-icon {
    position: absolute !important;
    font-size: 22px !important;
    color: rgba(0,0,0,0.06) !important;
    z-index: 1 !important;
    pointer-events: none !important;
    animation: websiteFloatAnimationPulse 6s ease-in-out infinite !important;
}

.website-floating-icon.variant-1 {
    top: 15% !important;
    right: 8% !important;
    animation-delay: 0s !important;
}

.website-floating-icon.variant-2 {
    top: 55% !important;
    right: 5% !important;
    animation-delay: 2s !important;
    font-size: 18px !important;
}

.website-floating-icon.variant-3 {
    top: 35% !important;
    left: 6% !important;
    animation-delay: 4s !important;
    font-size: 26px !important;
}

@keyframes websiteFloatAnimationPulse {
    0%, 100% {
        transform: scale(1) !important;
        opacity: 0.25 !important;
    }
    50% {
        transform: scale(1.15) !important;
        opacity: 0.55 !important;
    }
}

@media (max-width: 768px) {
    .website-floating-icon {
        display: none !important;
    }
}


/* Team Social Links - Square Style */
.team-social-links {
    margin-top: 18px;
    padding: 12px 0;
}

.social-icons-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
    position: relative;
}

.social-link:hover {
    transform: translateY(-2px) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    color: white;
}

.facebook-link {
    background: #1877f2;
    border: 2px solid #1877f2;
}

.facebook-link:hover {
    background: #166fe5;
    border-color: #166fe5;
}

.linkedin-link {
    background: #0a66c2;
    border: 2px solid #0a66c2;
}

.linkedin-link:hover {
    background: #0959aa;
    border-color: #0959aa;
}

.instagram-link {
    background: #e4405f;
    border: 2px solid #e4405f;
}

.instagram-link:hover {
    background: #d62976;
    border-color: #d62976;
}

.x-link {
    background: #000000;
    border: 2px solid #000000;
    position: relative;
}

.x-link::after {
    content: '✕';
    font-weight: bold;
    font-size: 18px;
}

.x-link:hover {
    background: #333333;
    border-color: #333333;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 8px;
    }
    
    .social-link {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }
}


/* Organization Social Links */
.org-social-links {
    margin: 25px 0;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.org-social-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-primary, #333);
}

.org-social-grid {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.org-social-link {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.org-social-link:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    color: white;
    text-decoration: none;
}

/* Organization Social Networks Colors */
.org-facebook-link {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
}

.org-instagram-link {
    background: linear-gradient(135deg, #e4405f, #f77737, #fcaf45);
}

.org-linkedin-link {
    background: linear-gradient(135deg, #0a66c2, #2196f3);
}

.org-x-link {
    background: linear-gradient(135deg, #000000, #333333);
    position: relative;
}

.org-x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 20px;
    z-index: 2;
    position: relative;
}

.org-x-link i {
    display: none;
}

.org-youtube-link {
    background: linear-gradient(135deg, #ff0000, #ff4444);
}

.org-medium-link {
    background: linear-gradient(135deg, #000000, #1a1a1a);
}

.org-tiktok-link {
    background: linear-gradient(135deg, #fe2c55, #25f4ee);
}

.org-pinterest-link {
    background: linear-gradient(135deg, #bd081c, #e60023);
}

.org-telegram-link {
    background: linear-gradient(135deg, #0088cc, #229ed9);
}

.org-discord-link {
    background: linear-gradient(135deg, #5865f2, #7289da);
}

@media (max-width: 768px) {
    .org-social-grid {
        gap: 8px;
    }
    
    .org-social-link {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    
    .org-social-title {
        font-size: 16px;
    }
}


/* Newsletter Form - Classic Style */
.newsletter-section {
    margin: 30px 0;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
}

.newsletter-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
    color: #333333 !important;
    text-align: center !important;
    background: transparent !important;
}

.newsletter-subtitle {
    font-size: 14px !important;
    color: #666666 !important;
    margin-bottom: 20px !important;
    text-align: center !important;
    line-height: 1.4 !important;
    background: transparent !important;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1 !important;
    padding: 12px 15px !important;
    border: 2px solid #ddd !important;
    border-radius: 5px !important;
    font-size: 14px !important;
    outline: none !important;
    transition: border-color 0.3s ease !important;
    background: #ffffff !important;
    color: #333333 !important;
}

.newsletter-input:focus {
    border-color: #007bff !important;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,0.25) !important;
}

.newsletter-button {
    padding: 12px 20px !important;
    background: #007bff !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 5px !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
    width: 100% !important;
}

.newsletter-button:hover {
    background: #0056b3 !important;
    color: #ffffff !important;
}

.newsletter-success {
    display: none !important;
    margin-top: 15px !important;
    padding: 15px !important;
    background: #d4edda !important;
    border: 1px solid #c3e6cb !important;
    border-radius: 5px !important;
    color: #155724 !important;
    text-align: center !important;
    font-size: 14px !important;
}

.newsletter-success.show {
    display: block;
}

@media (max-width: 768px) {
    .newsletter-section {
        margin: 20px 0;
        padding: 20px 15px;
    }
    
    .newsletter-form {
        max-width: 300px;
    }
}


/* Cookie Banner Styles */

/**
 * OptimizedCookieManager Styles
 * Уникальные классы с префиксом ocm- для избежания конфликтов
 * Все стили с !important для гарантированного применения
 */

/* ===== БАЗОВЫЕ СТИЛИ ===== */
.ocm-banner {
    position: fixed !important;
    z-index: 999999 !important;
    max-width: 400px !important;
    min-width: 320px !important;
    background: #ffffff !important;
    border-radius: 12px !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #333333 !important;
    transform: translateY(100px) !important;
    opacity: 0 !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    border: 1px solid #e5e5e5 !important;
    overflow: hidden !important;
}

.ocm-banner.ocm-show {
    transform: translateY(0) !important;
    opacity: 1 !important;
}

/* ===== ПОЗИЦИОНИРОВАНИЕ ===== */
.ocm-position-bottom-right {
    bottom: 20px !important;
    right: 20px !important;
}

.ocm-position-bottom-left {
    bottom: 20px !important;
    left: 20px !important;
}

.ocm-position-bottom-center {
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(100px) !important;
}

.ocm-position-bottom-center.ocm-show {
    transform: translateX(-50%) translateY(0) !important;
}

.ocm-position-top-right {
    top: 20px !important;
    right: 20px !important;
    transform: translateY(-100px) !important;
}

.ocm-position-top-right.ocm-show {
    transform: translateY(0) !important;
}

/* ===== СОДЕРЖИМОЕ БАННЕРА ===== */
.ocm-banner-content,
.ocm-settings {
    padding: 24px !important;
}

.ocm-header {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    margin-bottom: 16px !important;
}

.ocm-title {
    margin: 0 !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    color: #1a1a1a !important;
}

.ocm-close {
    background: none !important;
    border: none !important;
    font-size: 24px !important;
    color: #666666 !important;
    cursor: pointer !important;
    padding: 0 !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
}

.ocm-close:hover {
    background: #f5f5f5 !important;
    color: #333333 !important;
}

.ocm-description {
    margin: 0 0 20px 0 !important;
    color: #666666 !important;
    line-height: 1.6 !important;
}

.ocm-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
}

.ocm-btn {
    padding: 12px 20px !important;
    border-radius: 8px !important;
    border: none !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    text-align: center !important;
    text-decoration: none !important;
    display: inline-block !important;
    font-family: inherit !important;
}

.ocm-btn-accept {
    background: #007bff !important;
    color: #ffffff !important;
}

.ocm-btn-accept:hover {
    background: #0056b3 !important;
    transform: translateY(-1px) !important;
}

.ocm-btn-reject {
    background: #6c757d !important;
    color: #ffffff !important;
}

.ocm-btn-reject:hover {
    background: #545b62 !important;
    transform: translateY(-1px) !important;
}

.ocm-btn-customize {
    background: transparent !important;
    color: #007bff !important;
    border: 2px solid #007bff !important;
}

.ocm-btn-customize:hover {
    background: #007bff !important;
    color: #ffffff !important;
}

.ocm-btn-save {
    background: #28a745 !important;
    color: #ffffff !important;
}

.ocm-btn-save:hover {
    background: #1e7e34 !important;
    transform: translateY(-1px) !important;
}

.ocm-back {
    background: none !important;
    border: none !important;
    color: #007bff !important;
    cursor: pointer !important;
    font-size: 14px !important;
    padding: 5px 10px !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
    font-family: inherit !important;
}

.ocm-back:hover {
    background: #f8f9fa !important;
}

/* ===== НАСТРОЙКИ COOKIE ===== */
.ocm-category {
    margin-bottom: 20px !important;
    padding: 16px !important;
    background: #f8f9fa !important;
    border-radius: 8px !important;
    border: 1px solid #e9ecef !important;
}

.ocm-category-header {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-bottom: 8px !important;
}

.ocm-category-title {
    font-weight: 500 !important;
    color: #1a1a1a !important;
    font-size: 15px !important;
}

.ocm-category-desc {
    margin: 0 !important;
    color: #666666 !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
}

/* ===== ПЕРЕКЛЮЧАТЕЛИ ===== */
.ocm-switch {
    position: relative !important;
    display: inline-block !important;
    width: 50px !important;
    height: 24px !important;
}

.ocm-switch input {
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
}

.ocm-slider {
    position: absolute !important;
    cursor: pointer !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background-color: #ccc !important;
    border-radius: 24px !important;
    transition: all 0.3s ease !important;
}

.ocm-slider:before {
    position: absolute !important;
    content: "" !important;
    height: 18px !important;
    width: 18px !important;
    left: 3px !important;
    bottom: 3px !important;
    background-color: white !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
}

input:checked + .ocm-slider {
    background-color: #007bff !important;
}

input:checked + .ocm-slider:before {
    transform: translateX(26px) !important;
}

input:disabled + .ocm-slider {
    background-color: #28a745 !important;
    opacity: 0.7 !important;
    cursor: not-allowed !important;
}

/* ===== КНОПКА ПЕРЕКЛЮЧЕНИЯ - БАЗОВЫЕ СТИЛИ ===== */
.ocm-toggle {
    position: fixed !important;
    width: 50px !important;
    height: 50px !important;
    border: none !important;
    color: white !important;
    font-size: 20px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    z-index: 999998 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: inherit !important;
}

/* ===== ПОЗИЦИОНИРОВАНИЕ TOGGLE КНОПКИ ===== */
.ocm-toggle.ocm-toggle-position-bottom-right {
    bottom: 20px !important;
    right: 20px !important;
}

.ocm-toggle.ocm-toggle-position-bottom-left {
    bottom: 20px !important;
    left: 20px !important;
}

.ocm-toggle.ocm-toggle-position-top-right {
    top: 20px !important;
    right: 20px !important;
}

.ocm-toggle.ocm-toggle-position-top-left {
    top: 20px !important;
    left: 20px !important;
}

.ocm-toggle.ocm-toggle-position-center-left {
    top: 50% !important;
    left: 20px !important;
    transform: translateY(-50%) !important;
}

.ocm-toggle.ocm-toggle-position-center-right {
    top: 50% !important;
    right: 20px !important;
    transform: translateY(-50%) !important;
}

/* === THEME: gradient === */
.ocm-theme-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 20px !important;
}

.ocm-theme-gradient .ocm-title,
.ocm-theme-gradient .ocm-description,
.ocm-theme-gradient .ocm-category-title,
.ocm-theme-gradient .ocm-category-desc {
    color: #ffffff !important;
}

.ocm-theme-gradient .ocm-close {
    color: #ffffff !important;
}

.ocm-theme-gradient .ocm-close:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.ocm-theme-gradient .ocm-btn-accept {
    background: #ffffff !important;
    color: #667eea !important;
}

.ocm-theme-gradient .ocm-btn-accept:hover {
    background: #f8f9fa !important;
}

.ocm-theme-gradient .ocm-btn-reject {
    background: rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
}

.ocm-theme-gradient .ocm-btn-reject:hover {
    background: rgba(255, 255, 255, 0.3) !important;
}

.ocm-theme-gradient .ocm-btn-customize {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.ocm-theme-gradient .ocm-btn-customize:hover {
    background: #ffffff !important;
    color: #667eea !important;
}

.ocm-theme-gradient .ocm-category {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}

.ocm-theme-gradient input:checked + .ocm-slider {
    background-color: #ffffff !important;
}

.ocm-theme-gradient input:checked + .ocm-slider:before {
    background-color: #667eea !important;
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 480px) {
    .ocm-banner {
        max-width: calc(100vw - 40px) !important;
        min-width: calc(100vw - 40px) !important;
    }
    
    .ocm-buttons {
        flex-direction: column !important;
    }
    
    .ocm-settings-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
    }
    
    .ocm-category-header {
        flex-wrap: wrap !important;
    }
}

/* ===== АНИМАЦИИ ===== */
@keyframes ocm-slideUp {
    from {
        transform: translateY(100%) !important;
        opacity: 0 !important;
    }
    to {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
}

@keyframes ocm-fadeIn {
    from {
        opacity: 0 !important;
    }
    to {
        opacity: 1 !important;
    }
}

/* === TOGGLE STYLE 13 === */
.ocm-toggle.ocm-toggle-style-13 {
    width: 52px !important;
    height: 52px !important;
    border-radius: 50% !important;
    background: transparent !important;
    color: #667eea !important;
    border: 3px solid #667eea !important;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.2) !important;
}

.ocm-toggle.ocm-toggle-style-13:hover {
    background: #667eea !important;
    color: #ffffff !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3) !important;
}