/* ============================================================================
   WSIDE Technology & Software - Modern Light Theme
   www.wside.com.tr
   ============================================================================ */

/* ============================================================================
   MONTSERRAT FONT FAMILY (Variable Font)
   ============================================================================ */
@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat/Montserrat-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ============================================================================
   CSS VARIABLES - Light Theme Design System
   ============================================================================ */
:root {
  /* Brand Colors */
  --wside-primary: #E51725;
  --wside-primary-dark: #c41318;
  --wside-primary-light: #ff4757;

  /* Light Theme Colors */
  --wside-white: #ffffff;
  --wside-light: #f8f9fa;
  --wside-light-alt: #f1f5f9;
  --wside-light-blue: #e8f4fc;

  /* Neutral Colors */
  --wside-gray-50: #f8fafc;
  --wside-gray-100: #f1f5f9;
  --wside-gray-200: #e2e8f0;
  --wside-gray-300: #cbd5e1;
  --wside-gray-400: #94a3b8;
  --wside-gray-500: #64748b;
  --wside-gray-600: #475569;
  --wside-gray-700: #334155;
  --wside-gray-800: #1e293b;
  --wside-gray-900: #0f172a;

  /* Text Colors */
  --wside-text-primary: #1e293b;
  --wside-text-secondary: #64748b;
  --wside-text-muted: #94a3b8;

  /* Spacing Scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 3rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  /* Shadows - Soft & Modern */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  --shadow-card: 0 0 0 1px rgba(0, 0, 0, 0.03), 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-card-hover: 0 10px 40px rgba(0, 0, 0, 0.1);

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ============================================================================
   BASE STYLES
   ============================================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--wside-text-primary);
  background-color: var(--wside-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--wside-gray-900);
}

p {
  color: var(--wside-text-secondary);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-base);
}

img {
  max-width: 100%;
  height: auto;
}

/* Focus states for accessibility */
*:focus-visible {
  outline: 3px solid var(--wside-primary);
  outline-offset: 2px;
}

/* ============================================================================
   ANIMATIONS - AOS Style Custom Animations
   ============================================================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes flipInX {
  from {
    opacity: 0;
    transform: perspective(600px) rotateX(-30deg) translateY(20px);
  }

  to {
    opacity: 1;
    transform: perspective(600px) rotateX(0) translateY(0);
  }
}

@keyframes flipInY {
  from {
    opacity: 0;
    transform: perspective(600px) rotateY(-30deg) translateX(-20px);
  }

  to {
    opacity: 1;
    transform: perspective(600px) rotateY(0) translateX(0);
  }
}

@keyframes zoomInRotate {
  from {
    opacity: 0;
    transform: scale(0.7) rotate(-5deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }

  50% {
    opacity: 1;
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideInBlurLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes slideInBlurRight {
  from {
    opacity: 0;
    transform: translateX(60px);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(30px);
  }

  60% {
    opacity: 1;
    transform: scale(1.08) translateY(-5px);
  }

  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* Animation Classes */
.animate-on-scroll {
  opacity: 0;
  will-change: opacity, transform;
}

.animate-on-scroll.animated {
  animation-duration: 0.6s;
  animation-fill-mode: both;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  will-change: auto;
}

.animate-fadeIn {
  animation-name: fadeIn;
}

.animate-fadeInUp {
  animation-name: fadeInUp;
}

.animate-fadeInDown {
  animation-name: fadeInDown;
}

.animate-fadeInLeft {
  animation-name: fadeInLeft;
}

.animate-fadeInRight {
  animation-name: fadeInRight;
}

.animate-scaleIn {
  animation-name: scaleIn;
}

.animate-slideUp {
  animation-name: slideUp;
}

.animate-flipInX {
  animation-name: flipInX;
}

.animate-flipInY {
  animation-name: flipInY;
}

.animate-zoomInRotate {
  animation-name: zoomInRotate;
}

.animate-bounceIn {
  animation-name: bounceIn;
  animation-duration: 0.8s;
}

.animate-slideInBlurLeft {
  animation-name: slideInBlurLeft;
  animation-duration: 0.7s;
}

.animate-slideInBlurRight {
  animation-name: slideInBlurRight;
  animation-duration: 0.7s;
}

.animate-popIn {
  animation-name: popIn;
  animation-duration: 0.7s;
}

/* Stagger delays */
.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

.delay-600 {
  animation-delay: 0.6s;
}

/* Hover animations */
.hover-lift {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.hover-scale {
  transition: transform var(--transition-base);
}

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

/* ============================================================================
   ACCESSIBILITY
   ============================================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wside-primary);
  color: #fff;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  z-index: 9999;
  transition: top var(--transition-fast);
  font-weight: 600;
}

.skip-link:focus {
  top: 10px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================================
   HEADER / NAVBAR - Light Theme
   ============================================================================ */
.wside-navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.5rem 0;
  box-shadow: none;
  transition: all 0.35s ease;
  border-bottom: 1px solid transparent;
}

.wside-navbar.navbar-scrolled {
  padding: 0.2rem 0;
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid var(--wside-gray-200);
}

.wside-navbar .navbar-brand {
  padding: 0;
}

.wside-navbar .navbar-brand img {
  height: 68px;
  width: auto;
  transition: all 0.35s ease;
}

.wside-navbar.navbar-scrolled .navbar-brand img {
  height: 42px;
}

/* Scroll durumunda tüm navbar öğeleri küçülsün */
.wside-navbar.navbar-scrolled .nav-link {
  font-size: 0.85rem;
  padding: 0.35rem 0.75rem !important;
}

.wside-navbar.navbar-scrolled .btn-demo {
  padding: 0.4rem 1.1rem !important;
  font-size: 0.82rem;
}

.wside-navbar.navbar-scrolled .lang-toggle {
  padding: 3px;
  transform: scale(0.88);
}

.wside-navbar.navbar-scrolled .nav-search-btn {
  width: 32px;
  height: 32px;
}

.wside-navbar.navbar-scrolled .nav-search-btn svg {
  width: 15px;
  height: 15px;
}

.wside-navbar.navbar-scrolled .navbar-toggler {
  padding: 0.3rem 0.5rem;
  font-size: 0.85rem;
}

.wside-navbar .navbar-brand:hover img {
  transform: scale(1.05);
}

.wside-navbar .nav-link {
  color: var(--wside-gray-700) !important;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius-sm);
  transition: all 0.35s ease;
  position: relative;
}

/* Red underline - use ::before to avoid conflict with Bootstrap dropdown caret ::after */
.wside-navbar .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--wside-primary);
  transition: all var(--transition-base);
  transform: translateX(-50%);
  pointer-events: none;
}

.wside-navbar .nav-link:hover {
  color: var(--wside-primary) !important;
}

.wside-navbar .nav-link:hover::before,
.wside-navbar .nav-link.active::before {
  width: 45%;
}

/* Don't show underline on demo button */
.wside-navbar .btn-demo::before {
  display: none !important;
}

.wside-navbar .btn-demo {
  background: var(--wside-primary) !important;
  color: #fff !important;
  border: none;
  padding: 0.6rem 1.5rem !important;
  border-radius: var(--radius-full);
  font-weight: 600;
  transition: all 0.35s ease;
  box-shadow: 0 4px 14px rgba(229, 23, 37, 0.3);
}

.wside-navbar .btn-demo::after {
  display: none;
}

.wside-navbar .btn-demo:hover {
  background: var(--wside-primary-dark) !important;
  color: #fff !important;
  transform: none;
  box-shadow: none;
}

.wside-navbar .navbar-toggler {
  border: 2px solid var(--wside-gray-300);
  padding: 0.4rem 0.6rem;
  transition: all 0.35s ease;
}

.wside-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(51, 65, 85, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================================
   MEGA DROPDOWN MENU
   ============================================================================ */
.mega-dropdown {
  position: static !important;
}

.mega-dropdown .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.4em;
  vertical-align: 0.1em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
  transition: transform 0.2s ease;
}

.mega-dropdown.show .dropdown-toggle::after {
  transform: rotate(180deg);
}

.mega-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 6%;
  right: 6%;
  width: auto;
  padding: 2rem 0;
  background: #fff;
  border: none;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  border-top: 1px solid var(--wside-gray-200);
}

/* Desktop: Always render mega dropdown (use opacity/visibility for transitions, not display) */
@media (min-width: 992px) {
  .mega-dropdown-menu {
    display: block !important;
  }

  /* Bridge gap between nav link and dropdown */
  .mega-dropdown>.nav-link {
    padding-bottom: 1.2rem !important;
    margin-bottom: -0.7rem;
  }
}

.mega-dropdown:hover .mega-dropdown-menu,
.mega-dropdown.show .mega-dropdown-menu,
.mega-dropdown.mega-dropdown-open .mega-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-dropdown-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.2fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  align-items: start;
}

.mega-column {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
}

.mega-column-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wside-gray-500);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--wside-gray-200);
}

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

.mega-links li {
  margin-bottom: 0.25rem;
}

.mega-links a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  color: var(--wside-gray-700);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.mega-links a:hover {
  background: var(--wside-light);
  color: var(--wside-text-primary);
  transform: none;
}

.mega-links a .mega-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--wside-primary);
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.mega-links a:hover .mega-icon {
  background: transparent;
  color: var(--wside-primary);
}

.mega-links a .mega-icon svg {
  width: 18px;
  height: 18px;
}

.mega-links a .mega-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: filter var(--transition-base);
}

.mega-links a:hover .mega-icon img {
  filter: none;
}

/* Featured section in mega menu */
.mega-featured {
  background: var(--wside-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  height: 100%;
}

.mega-featured-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wside-gray-500);
  margin-bottom: 1rem;
}

.mega-featured-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.mega-featured-card:hover {
  box-shadow: var(--shadow-md);
  transform: none;
}

.mega-featured-card h6 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--wside-gray-800);
  margin-bottom: 0.25rem;
}

.mega-featured-card p {
  font-size: 0.8rem;
  color: var(--wside-gray-600);
  margin-bottom: 0;
}

.mega-featured-card a {
  color: var(--wside-primary);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

.mega-featured-card a:hover {
  text-decoration: underline;
}

/* CTA in mega menu */
.mega-cta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--wside-gray-200);
}

.mega-cta a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--wside-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
}

.mega-cta a:hover {
  text-decoration: underline;
}

/* Standard Dropdown Styling */
.wside-navbar .dropdown-menu {
  border: none;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
  padding: 0.5rem;
  min-width: 200px;
  animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wside-navbar .dropdown-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  color: var(--wside-gray-700);
  font-weight: 500;
  transition: all 0.2s ease;
}

.wside-navbar .dropdown-item:hover,
.wside-navbar .dropdown-item:focus {
  background: var(--wside-light);
  color: var(--wside-primary);
}

.wside-navbar .dropdown-item.active {
  background: var(--wside-primary);
  color: #fff;
}

.wside-navbar .dropdown-item svg {
  color: var(--wside-primary);
  flex-shrink: 0;
}

.wside-navbar .dropdown-item:hover svg,
.wside-navbar .dropdown-item.active svg {
  color: inherit;
}

/* Note: Mega dropdown hover is handled via opacity/visibility + JS classes.
   Bootstrap display:none is overridden by .mega-dropdown-menu display:block !important */

/* Small Mega Dropdown → Now full-width like main mega dropdown */
.mega-dropdown-sm .mega-dropdown-menu,
.mega-dropdown-sm .mega-dropdown-menu.dropdown-menu-end {
  width: auto;
  min-width: auto;
  left: 6%;
  right: 6%;
}

.mega-dropdown-inner-sm {
  grid-template-columns: 1.2fr 1fr !important;
  gap: 2rem !important;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem !important;
}

.mega-links a div {
  display: flex;
  flex-direction: column;
}

.mega-links a div strong {
  font-weight: 600;
  color: var(--wside-gray-800);
}

.mega-link-desc {
  font-size: 0.8rem;
  color: var(--wside-gray-500);
  margin-top: 2px;
}

.mega-links a:hover div strong {
  color: var(--wside-text-primary);
}

@media (max-width: 991.98px) {
  .mega-dropdown-sm .mega-dropdown-menu {
    min-width: 100%;
  }

  .mega-dropdown-inner-sm {
    grid-template-columns: 1fr !important;
  }
}

/* Mobile Mega Menu */
@media (max-width: 991.98px) {
  .mega-dropdown-menu {
    position: relative !important;
    box-shadow: none;
    padding: 0;
    background: var(--wside-light);
    border-radius: var(--radius-md);
    margin-top: 0.5rem;
    /* Override desktop opacity/visibility - let Bootstrap handle show/hide via display */
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
  }

  .mega-dropdown-menu.dropdown-menu:not(.show) {
    display: none;
  }

  .mega-dropdown-menu.dropdown-menu.show {
    display: block;
    padding: 1rem 0;
  }

  .mega-dropdown-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  .mega-column {
    padding: 0;
  }

  .mega-featured {
    display: none;
  }

  .mega-links a {
    padding: 0.5rem 0;
  }

  /* Dropdown toggle arrow rotation on open */
  .mega-dropdown.show>.dropdown-toggle::after {
    transform: rotate(180deg);
  }
}

/* ============================================================================
   BUTTONS - Modern & Clean
   ============================================================================ */
.btn {
  position: relative;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-base);
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
}

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

.btn-primary {
  background: var(--wside-primary);
  border: none;
  color: #fff;
  box-shadow: 0 4px 14px rgba(229, 23, 37, 0.25);
}

.btn-primary:hover {
  background: var(--wside-primary-dark);
  box-shadow: 0 4px 12px rgba(229, 23, 37, 0.2);
}

.btn-outline-primary {
  border: 2px solid var(--wside-primary);
  color: var(--wside-primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--wside-primary);
  color: #fff;
  border-color: var(--wside-primary);
}

.btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #fff;
  background: transparent;
}

.btn-outline-light:hover {
  background: #fff;
  color: var(--wside-primary);
}

.btn-light {
  background: #fff;
  color: var(--wside-primary);
  border: none;
  box-shadow: var(--shadow-md);
}

.btn-light:hover {
  background: var(--wside-gray-50);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ============================================================================
   HERO SECTION - Light & Airy
   ============================================================================ */
.wside-hero {
  background: var(--wside-light);
  color: var(--wside-text-primary);
  padding: clamp(6.5rem, 11vh, 8rem) 0 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/*video kısmı değişebilir*/
.bg-video {
  position: absolute;
  top: -5px;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(100% + 5px);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.05),
      rgba(0, 0, 0, 0.05));
  z-index: 1;
}

/* Decorative shapes */
.wside-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: rgba(229, 23, 37, 0.05);
  border-radius: 50%;
  pointer-events: none;
}

.wside-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 800px;
  height: 800px;
  background: rgba(229, 23, 37, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

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

.min-vh-90 {
  min-height: clamp(640px, 74vh, 760px);
}

.wside-hero-row {
  padding-top: clamp(1rem, 2vh, 1.5rem);
}

.hero-content {
  max-width: 720px;
}

.wside-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 1.5rem;
  line-height: 1.14;
  color: var(--wside-gray-900);
}

.wside-hero .lead {
  font-size: 1.25rem;
  color: var(--wside-text-secondary);
  max-width: 550px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

html[lang="en"] .wside-hero h1 {
  font-size: clamp(2.2rem, 4.2vw, 3.6rem);
}

.wside-hero .badge {
  font-size: 0.875rem;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  background: rgba(229, 23, 37, 0.1) !important;
  color: var(--wside-primary) !important;
  border: 1px solid rgba(229, 23, 37, 0.2);
}

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

/* Hero image placeholder */
.hero-visual {
  position: relative;
}

.hero-visual .modern-placeholder {
  background: var(--wside-white);
  border: 1px solid var(--wside-gray-200);
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
}

.modern-placeholder {
  position: relative;
  overflow: hidden;
  background: var(--wside-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--wside-gray-200);
}

/* ============================================================================
   SECTION STYLES
   ============================================================================ */
section {
  position: relative;
}

.py-6 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.section-title {
  font-weight: 600;
  color: var(--wside-gray-900);
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  color: var(--wside-text-secondary);
  max-width: 600px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  line-height: 1.8;
}

/* Home Demo Section */
.home-demo-section {
  padding: 4.5rem 0;
  background: #fff;
}

.home-demo-section .section-badge {
  background: rgba(229, 23, 37, 0.1);
  color: var(--wside-primary);
}

.demo-form-card {
  background: var(--wside-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: var(--shadow-card);
}

/* Mini CTA */
.mini-cta-section {
  padding: 2.5rem 0;
  background: var(--wside-light);
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.mini-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.mini-cta-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--wside-gray-900);
  margin: 0;
}

.mini-cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.section-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(229, 23, 37, 0.1);
  color: var(--wside-primary);
  margin-bottom: 1rem;
}

/* Prevent Turkish-uppercase artifacts in EN labels (SERVİCES/VİDEOS) */
html[lang="en"] [data-i18n="services.badge"],
html[lang="en"] [data-i18n="video.badge"] {
  text-transform: none;
}

/* ============================================================================
   ANNOUNCEMENT SECTION
   ============================================================================ */
.announcement-section {
  padding: 5rem 0;
  background: var(--wside-white);
  border-bottom: 1px solid var(--wside-gray-200);
}

/* ============================================================================
   BENEFITS SECTION
   ============================================================================ */
.benefits-section {
  padding: 5rem 0;
  background: var(--wside-white);
}

.benefit-card {
  background: var(--wside-white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-card);
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    box-shadow 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    border-color 0.45s ease;
  border: 1px solid var(--wside-gray-200);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--wside-primary), var(--wside-primary-light));
  transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 2;
}

.benefit-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent 0%,
      rgba(255, 255, 255, 0.35) 50%,
      transparent 100%);
  transform: skewX(-15deg);
  z-index: 1;
  pointer-events: none;
}

.benefit-card:hover::after {
  animation: benefitCardShine 0.75s ease-out;
}

@keyframes benefitCardShine {
  0% {
    left: -100%;
  }

  100% {
    left: 150%;
  }
}

.benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: var(--wside-gray-300);
}

.benefit-card:hover::before {
  height: 100%;
}

.benefit-card h5 {
  color: var(--wside-gray-900);
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  transition: color 0.3s ease;
}

.benefit-card:hover h5 {
  color: var(--wside-primary);
}

.benefit-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--wside-text-secondary);
  line-height: 1.7;
}

/* Benefit card entrance: bounce-up with subtle overshoot */
@keyframes benefitCardEnter {
  0% {
    opacity: 0;
    transform: translateY(50px) scale(0.92);
  }

  50% {
    opacity: 1;
    transform: translateY(-8px) scale(1.03);
  }

  70% {
    transform: translateY(3px) scale(0.99);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.benefit-card-animated {
  animation: benefitCardEnter 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* Post-entrance idle floating for benefit cards */
@keyframes benefitCardFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

.benefit-card-float {
  animation: benefitCardFloat 4s ease-in-out infinite;
}

.benefit-card-float:hover {
  animation-play-state: paused;
}

/* Section title animated underline */
.section-title.animated-title::after {
  content: '';
  display: block;
  width: 0;
  height: 3px;
  margin-top: 0.5rem;
  background: linear-gradient(90deg, var(--wside-primary), var(--wside-primary-light), var(--wside-primary));
  background-size: 200% 100%;
  border-radius: 2px;
  animation: sectionTitleGrow 0.8s 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards,
    sectionTitleGradient 3s ease infinite 1s;
}

@keyframes sectionTitleGrow {
  0% {
    width: 0;
  }

  100% {
    width: 80px;
  }
}

@keyframes sectionTitleGradient {

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

  50% {
    background-position: 100% 50%;
  }
}

/* Extended stagger delays for benefit cards */
.delay-150 {
  animation-delay: 0.15s;
}

.delay-250 {
  animation-delay: 0.25s;
}

.delay-350 {
  animation-delay: 0.35s;
}

.delay-450 {
  animation-delay: 0.45s;
}

.delay-550 {
  animation-delay: 0.55s;
}

/* 3D tilt effect via JS - these classes are toggled dynamically */
.benefit-card.tilt-active {
  transition: transform 0.1s ease-out, box-shadow 0.45s ease, border-color 0.45s ease;
}

.icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(229, 23, 37, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: all var(--transition-base);
}

.benefit-card:hover .icon-wrapper {
  background: var(--wside-primary);
}

.benefit-icon {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--wside-primary);
  stroke-width: 1.6;
  transition: stroke var(--transition-base);
}

.benefit-card:hover .benefit-icon {
  stroke: #fff;
}

/* Product Logo Icons (Çözümlerimiz page) */
.product-logo-wrapper {
  width: 64px;
  height: 64px;
  background: transparent !important;
  padding: 0;
  border-radius: var(--radius-md);
}

.product-logo-wrapper .product-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-base);
}

.benefit-card:hover .product-logo-wrapper {
  background: transparent !important;
}

.benefit-card:hover .product-logo {
  transform: scale(1.1);
}

/* ============================================================================
   SERVICES SECTION
   ============================================================================ */
.services-section {
  padding: 5rem 0;
  background: var(--wside-light);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.5rem;
}

.service-item {
  position: relative;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  background: var(--wside-white);
  border: 1px solid var(--wside-gray-200);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  animation: serviceFloat 4s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}

/* Floating animasyonu */
@keyframes serviceFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

/* Shine efekti */
.service-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  animation: serviceShine 6s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  pointer-events: none;
}

@keyframes serviceShine {

  0%,
  100% {
    left: -100%;
  }

  50% {
    left: 100%;
  }
}

.service-item:hover {
  background: var(--wside-white);
  transform: translateY(-12px) scale(1.05);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--wside-primary);
  animation-play-state: paused;
}

.service-item:hover .service-shine {
  animation-play-state: paused;
}

.service-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(229, 23, 37, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: all var(--transition-base);
}

.service-item:hover .service-icon-wrapper {
  background: var(--wside-primary);
  transform: scale(1.1);
}

.service-item strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--wside-gray-800);
  display: block;
  position: relative;
  z-index: 1;
}

.service-icon {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--wside-primary);
  stroke-width: 1.6;
  transition: stroke var(--transition-base);
}

.service-item:hover .service-icon {
  stroke: #fff;
}

/* Tablet için responsive */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Mobil için responsive */
@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .service-item {
    padding: 1.5rem 1rem;
  }

  .service-icon-wrapper {
    width: 56px;
    height: 56px;
  }

  .service-icon {
    width: 26px;
    height: 26px;
  }

  .service-item strong {
    font-size: 0.875rem;
  }
}

/* ============================================================================
   WHY WSIDE SECTION
   ============================================================================ */
.why-section {
  padding: 6rem 0;
  background: var(--wside-light);
  color: var(--wside-text-primary);
}

.why-section .section-title {
  color: var(--wside-gray-900);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.why-section .section-subtitle {
  color: var(--wside-text-secondary);
}

.inline-logo {
  height: 1.8em;
  width: auto;
  vertical-align: middle;
  display: inline-block;
  transform: translateY(-6px);
}

.why-card {
  background: var(--wside-white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  height: 100%;
  border: 1px solid var(--wside-gray-200);
  transition: all var(--transition-base);
  text-align: center;
  box-shadow: var(--shadow-card);
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--wside-primary);
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(229, 23, 37, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all var(--transition-base);
}

.why-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: var(--wside-primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card:hover .why-icon {
  background: var(--wside-primary);
  transform: scale(1.1);
}

.why-card:hover .why-icon svg {
  stroke: #fff;
}

.why-card h5 {
  font-weight: 700;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--wside-gray-900);
}

.why-card p {
  margin: 0;
  color: var(--wside-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ============================================================================
   STATS SECTION
   ============================================================================ */
.stats-section {
  padding: 6rem 0;
  background: var(--wside-white);
}

.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
}

.stat-item .stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--wside-primary);
  line-height: 1.2;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stat-item .stat-label {
  font-size: 1rem;
  color: var(--wside-text-secondary);
  font-weight: 500;
}

/* ============================================================================
   REFERENCES SECTION
   ============================================================================ */
/*.references-section {
  padding: 5rem 0;
  background: var(--wside-light);
}

.ref-placeholder {
  width: 140px;
  height: 70px;
  background: var(--wside-white);
  border: 1px solid var(--wside-gray-200);
  border-radius: var(--radius-md);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--wside-gray-500);
  font-weight: 600;
  transition: all var(--transition-base);
}

.ref-placeholder:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
  border-color: var(--wside-primary);
}*/
.references-section {
  padding: 80px 0;
  background: #fff;
}

.ref-marquee {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

.ref-track {
  display: flex;
  gap: 40px;
  width: fit-content;
}

/* LOGO KARTI */
.ref-item {
  flex-shrink: 0;
  /* 🔴 EN KRİTİK SATIR */
  width: 180px;
  height: 90px;
  background: #f5f7fa;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Animasyonlar */
.marquee-left .ref-track {
  animation: marquee-left 35s linear infinite;
}

.marquee-right .ref-track {
  animation: marquee-right 40s linear infinite;
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

/* Hover’da durdur (opsiyonel ama premium hissiyat) */
.ref-marquee:hover .ref-track {
  animation-play-state: paused;
}

/* Mobil */
@media (max-width: 768px) {
  .ref-item {
    min-width: 140px;
    height: 70px;
  }
}


/* ============================================================================
   TESTIMONIALS SECTION - Carousel
   ============================================================================ */
.testimonials-section {
  padding: 6rem 0;
  background: linear-gradient(135deg, #f0f4ff 0%, #f8f9ff 50%, #eef2ff 100%);
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(0, 82, 144, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonials-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 82, 144, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonials-carousel {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .testimonial-slide {
    min-width: 50%;
  }
}

@media (min-width: 992px) {
  .testimonial-slide {
    min-width: 33.333%;
  }
}

.testimonial-card {
  background: var(--wside-white);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem;
  height: 100%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 82, 144, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--wside-primary), #0078d4);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0, 82, 144, 0.12);
}

.testimonial-card:hover::before {
  opacity: 1;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1.25rem;
  color: #f59e0b;
}

.testimonial-card blockquote {
  font-size: 1rem;
  color: var(--wside-text-primary);
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
  line-height: 1.8;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--wside-gray-200);
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wside-primary), #0078d4);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.testimonial-card .author {
  font-weight: 700;
  color: var(--wside-gray-900);
  font-size: 1rem;
}

.testimonial-card .company {
  font-size: 0.8rem;
  color: var(--wside-text-secondary);
  margin-top: 0.15rem;
}

/* Carousel Controls */
.testimonials-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.testimonial-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--wside-gray-300);
  background: var(--wside-white);
  color: var(--wside-gray-700);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-btn:hover {
  border-color: var(--wside-primary);
  color: var(--wside-primary);
  background: rgba(0, 82, 144, 0.05);
}

.testimonial-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wside-gray-300);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--wside-primary);
  width: 28px;
  border-radius: 5px;
}

.testimonial-dot:hover:not(.active) {
  background: var(--wside-gray-400);
}

/* ============================================================================
   BLOG SECTION
   ============================================================================ */
.blog-section {
  padding: 6rem 0;
  background: var(--wside-light);
}

.blog-card {
  background: var(--wside-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--wside-gray-200);
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.blog-card .blog-img {
  height: 200px;
  background: var(--wside-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wside-gray-400);
  font-size: 3rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--wside-gray-200);
}

.blog-card .blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Placeholder colors without gradients */
.placeholder-orange {
  background: #fff1f2;
}

.placeholder-blue {
  background: #eff6ff;
}

.placeholder-green {
  background: #f0fdf4;
}

.blog-card .card-body {
  padding: 1.5rem;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.blog-card h5 {
  font-weight: 700;
  color: var(--wside-gray-900);
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

.blog-card h5 a {
  transition: color var(--transition-fast);
}

.blog-card h5 a:hover {
  color: var(--wside-primary);
}

.blog-card .card-text {
  color: var(--wside-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.blog-card .meta {
  font-size: 0.875rem;
  color: var(--wside-gray-500);
}

.blog-card .badge {
  background: rgba(229, 23, 37, 0.1) !important;
  color: var(--wside-primary) !important;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-sm);
}

.blog-card .card-body .btn.btn-outline-primary {
  margin-top: auto !important;
  align-self: flex-start;
}

/* ============================================================================
   CTA SECTION
   ============================================================================ */
.cta-section {
  padding: 6rem 0;
  background: var(--wside-light);
  color: var(--wside-gray-900);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(229, 23, 37, 0.03);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: rgba(229, 23, 37, 0.02);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--wside-gray-900);
}

.cta-section p {
  color: var(--wside-text-secondary);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
}

.cta-section .btn-light {
  background: var(--wside-primary);
  border-color: var(--wside-primary);
  color: #fff;
}

.cta-section .btn-light:hover {
  background: var(--wside-primary-dark);
  border-color: var(--wside-primary-dark);
}

.cta-section .btn-outline-light {
  border-color: var(--wside-gray-400);
  color: var(--wside-gray-700);
}

.cta-section .btn-outline-light:hover {
  background: var(--wside-gray-200);
  border-color: var(--wside-gray-400);
  color: var(--wside-gray-900);
}

.cta-section .cta-logo {
  height: 1.1em;
  vertical-align: baseline;
  transform: translateY(-2px);
}

/* ============================================================================
   FOOTER
   ============================================================================ */
.wside-footer {
  background: var(--wside-gray-900);
  color: rgba(255, 255, 255, 0.8);
  padding: 5rem 0 2rem;
}

.wside-footer .footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-base);
}

.wside-footer .footer-logo:hover img {
  transform: scale(1.05);
}

.wside-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.wside-footer .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  margin-bottom: 0.75rem;
  transition: all var(--transition-fast);
  position: relative;
  padding-left: 0;
}

.wside-footer .footer-links a:hover {
  color: #fff;
  padding-left: 8px;
}

.wside-footer .copyright {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.wside-footer h6 {
  color: #fff;
  font-weight: 700;
}

.wside-footer .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  border-radius: var(--radius-sm);
}

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

.wside-footer .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--wside-primary);
  box-shadow: none;
  color: #fff;
}

/* ============================================================================
   DEMO MODAL
   ============================================================================ */
.demo-modal .modal-content {
  border-radius: var(--radius-lg);
  border: none;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.demo-modal .modal-header {
  background: var(--wside-primary) !important;
  color: #fff !important;
  border: none;
  padding: 1.5rem 2rem;
}

.demo-modal .modal-header .modal-title {
  color: #fff !important;
}

.demo-modal .modal-header .btn-close {
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.demo-modal .modal-header .btn-close:hover {
  opacity: 1;
}

.demo-modal .modal-body {
  padding: 2rem;
}

.demo-modal .form-control,
.demo-modal .form-select {
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  border: 2px solid var(--wside-gray-200);
  transition: all var(--transition-base);
}

.demo-modal .form-control:focus,
.demo-modal .form-select:focus {
  border-color: var(--wside-primary);
  box-shadow: 0 0 0 4px rgba(229, 23, 37, 0.1);
}

/* Unified submit feedback for Web-to-Lead forms */
.form-submit-feedback-slot {
  margin-top: 0.85rem;
}

.form-submit-feedback {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.8rem 0.95rem;
  border-radius: 12px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  line-height: 1.45;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.form-submit-feedback::before {
  content: '✓';
  width: 1.2rem;
  height: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
}

.form-submit-feedback.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.form-submit-feedback.is-success {
  background: rgba(22, 163, 74, 0.12);
  border-color: rgba(22, 163, 74, 0.3);
  color: #166534;
}

.form-submit-feedback.is-success::before {
  background: rgba(22, 163, 74, 0.2);
  color: #166534;
}

.form-submit-feedback.is-error {
  background: rgba(220, 38, 38, 0.1);
  border-color: rgba(220, 38, 38, 0.3);
  color: #991b1b;
}

.form-submit-feedback.is-error::before {
  content: '!';
  background: rgba(220, 38, 38, 0.2);
  color: #991b1b;
}

.wside-footer .form-submit-feedback.is-success {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(187, 247, 208, 0.45);
  color: #dcfce7;
}

.wside-footer .form-submit-feedback.is-success::before {
  background: rgba(220, 252, 231, 0.28);
  color: #dcfce7;
}

.wside-footer .form-submit-feedback.is-error {
  background: rgba(248, 113, 113, 0.18);
  border-color: rgba(254, 202, 202, 0.45);
  color: #fee2e2;
}

.wside-footer .form-submit-feedback.is-error::before {
  background: rgba(254, 226, 226, 0.3);
  color: #fee2e2;
}

/* ============================================================================
   PAGE HEADER
   ============================================================================ */
.page-header {
  background: var(--wside-light);
  color: var(--wside-text-primary);
  padding: 5rem 0 1.5rem;
  margin-bottom: 0;
  position: relative;
}

.page-header h1 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--wside-gray-900);
}

.page-header p {
  font-size: 1rem;
  color: var(--wside-text-secondary);
  max-width: 700px;
}

/* ============================================================================
   CONTACT PAGE
   ============================================================================ */
.contact-form .form-control,
.contact-form textarea {
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  border: 2px solid var(--wside-gray-200);
  transition: all var(--transition-base);
}

.contact-form .form-control:focus,
.contact-form textarea:focus {
  border-color: var(--wside-primary);
  box-shadow: 0 0 0 4px rgba(229, 23, 37, 0.1);
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--wside-gray-700);
  margin-bottom: 0.5rem;
}

/* ============================================================================
   BLOG LIST
   ============================================================================ */
.blog-list .blog-item {
  background: var(--wside-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  margin-bottom: 2rem;
  border: 1px solid var(--wside-gray-200);
  transition: all var(--transition-base);
}

.blog-list .blog-item:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
}

.blog-list .blog-item .img-wrap {
  height: 240px;
  background: var(--wside-light);
  position: relative;
}

.blog-list .blog-item h2 a {
  color: var(--wside-gray-900);
  transition: color var(--transition-fast);
}

.blog-list .blog-item h2 a:hover {
  color: var(--wside-primary);
}

/* ============================================================================
   ARTICLE STYLES
   ============================================================================ */
.article-header .meta {
  margin-bottom: 1.5rem;
}

.article-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  color: var(--wside-gray-900);
}

.author-info .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--wside-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1.25rem;
}

.featured-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2rem;
  background: var(--wside-light);
}

.article-body {
  font-size: 1.0625rem;
  line-height: 1.9;
  color: var(--wside-text-primary);
}

.article-body .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--wside-gray-800);
  margin-bottom: 2rem;
}

.article-body h2,
.article-body h3 {
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
  font-weight: 700;
  color: var(--wside-gray-900);
}

.article-body p {
  margin-bottom: 1.5rem;
  color: var(--wside-text-primary);
}

.blockquote-styled {
  border-left: 4px solid var(--wside-primary);
  padding: 1.5rem;
  background: var(--wside-light);
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

.blockquote-styled p {
  font-size: 1.125rem;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.blockquote-styled footer {
  font-size: 0.875rem;
  color: var(--wside-text-secondary);
  font-style: normal;
}

.article-cta {
  border-radius: var(--radius-lg);
  background: var(--wside-primary);
  padding: 2rem;
}

/* ============================================================================
   GO TO TOP BUTTON
   ============================================================================ */
#goTop {
  position: fixed;
  bottom: 100px;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--wside-primary);
  color: #fff;
  border: none;
  box-shadow: 0 4px 20px rgba(229, 23, 37, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 1000;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#goTop.show {
  opacity: 1;
  visibility: visible;
}

#goTop:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(229, 23, 37, 0.4);
}

/* ============================================================================
   RESPONSIVE STYLES
   ============================================================================ */
@media (max-width: 991px) {
  .wside-navbar .navbar-collapse {
    background: var(--wside-white);
    padding: 1rem;
    margin-top: 1rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--wside-gray-200);
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .wside-navbar .nav-link::before {
    display: none;
  }

  .wside-navbar .btn-demo {
    margin-top: 0.5rem;
    width: 100%;
    text-align: center;
    color: #fff !important;
  }
}

@media (max-width: 768px) {
  .wside-hero {
    padding: 5.25rem 0 2.25rem;
    min-height: auto;
    background: linear-gradient(160deg, #f8fafc 0%, #eef3f8 55%, #ffffff 100%);
  }

  .bg-video {
    display: none;
  }

  .hero-overlay {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(248, 250, 252, 0.92) 100%);
  }

  .min-vh-90 {
    min-height: clamp(520px, 68vh, 620px);
  }

  .wside-hero-row {
    padding-top: 0.25rem;
  }

  .wside-hero h1 {
    font-size: 2rem;
  }

  .py-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .stat-item .stat-number {
    font-size: 2.5rem;
  }

  .benefit-card,
  .why-card,
  .testimonial-card {
    margin-bottom: 1rem;
  }

  #goTop {
    bottom: 90px;
    right: 1rem;
    width: 44px;
    height: 44px;
  }

  .btn {
    min-height: 48px;
    padding: 0.75rem 1.5rem;
  }
}

/* Touch devices */
@media (hover: none) {

  .hover-lift:hover,
  .benefit-card:hover,
  .blog-card:hover,
  .testimonial-card:hover {
    transform: none;
  }

  .btn:active {
    transform: scale(0.98);
  }
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */
.text-primary {
  color: var(--wside-primary) !important;
}

.bg-light {
  background: var(--wside-light) !important;
}

.bg-white {
  background: var(--wside-white) !important;
}

.shadow-soft {
  box-shadow: var(--shadow-sm);
}

.shadow-medium {
  box-shadow: var(--shadow-md);
}

.shadow-strong {
  box-shadow: var(--shadow-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

/* Badge styles */
.bg-primary-subtle {
  background: rgba(229, 23, 37, 0.1) !important;
}

.text-sm {
  font-size: 0.875rem;
}

/* Gradient text - disabled, using solid color instead */
.gradient-text {
  color: var(--wside-primary);
}

/* ============================================================================
   PARTNER BADGE & HERO VISUAL
   ============================================================================ */
.partner-badge {
  display: inline-block;
}

.salesforce-badge {
  max-width: 220px;
  height: auto;
}

.hero-sf-logo {
  height: auto;
}

.hero-partner-visual {
  background: var(--wside-white);
  border: 1px solid var(--wside-gray-200);
  border-radius: var(--radius-xl);
  padding: 3rem;
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.partner-logos-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hero-right {
  text-align: center;
}

.hero-right-aligned {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 0;
  height: 100%;
}

.hero-logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.hero-wside-logo {
  max-width: 300px;
  height: auto;
}

.hero-description {
  font-size: 1.125rem;
  color: var(--wside-text-secondary);
  line-height: 1.8;
  max-width: 450px;
  margin: 0 auto;
}

/* ============================================================================
   VIDEO GALLERY SECTION
   ============================================================================ */
.video-gallery-section {
  background: var(--wside-light);
  padding: 5rem 0;
  overflow: hidden;
}

.video-gallery-section .section-badge {
  background: rgba(229, 23, 37, 0.1);
  color: var(--wside-primary);
}

.video-gallery-section .section-title {
  color: var(--wside-gray-900);
}

.video-gallery-section .section-subtitle {
  color: var(--wside-text-secondary);
}

/* Simplified video gallery layout */
.video-gallery {
  display: grid;
  grid-template-columns: 1fr 1.6fr 1fr;
  gap: 0rem;
  align-items: center;
  perspective: none !important;
}

.video-thumbnails {
  gap: 0.2rem;
}

.video-thumbnails-left .video-thumb,
.video-thumbnails-right .video-thumb {
  transform: none !important;
  animation: none !important;
}

.video-thumbnails-left .video-thumb:hover,
.video-thumbnails-right .video-thumb:hover {
  transform: scale(1.02) !important;
  border-color: var(--wside-gray-300);
}

.main-video-container {
  animation: none !important;
  box-shadow: var(--shadow-card);
}

/* Video Gallery Layout */
.video-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Thumbnail columns */
.video-thumbnails {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex-shrink: 0;
}

/* Video Gallery Container */
.video-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0rem;
  max-width: 1100px;
  margin: 0 auto;
}

.video-thumb {
  width: 160px;
  height: 280px;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--wside-gray-200) 0%, var(--wside-gray-300) 100%);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 3px solid var(--wside-gray-300);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
}

/* Left thumbnails */
.video-thumbnails-left .video-thumb {
  transform: none;
}

.video-thumbnails-left .video-thumb:hover {
  transform: scale(1.05);
  border-color: var(--wside-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Right thumbnails */
.video-thumbnails-right .video-thumb {
  transform: none;
}

.video-thumbnails-right .video-thumb:hover {
  transform: scale(1.05);
  border-color: var(--wside-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.video-thumb.active {
  border-color: var(--wside-primary);
  box-shadow: 0 10px 30px rgba(229, 23, 37, 0.2);
  transform: scale(1.05);
}

.thumb-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.25);
  transition: all 0.4s ease;
}

.thumb-overlay svg {
  width: 40px;
  height: 40px;
  fill: #fff;
  opacity: 0.9;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.video-thumb:hover .thumb-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.video-thumb:hover .thumb-overlay svg {
  opacity: 1;
  transform: scale(1.3) rotate(360deg);
}

/* Thumbnail Video */
.thumb-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 0.75rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 100%);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  z-index: 2;
}

.thumb-overlay {
  z-index: 3;
}

/* Floating animations removed for stability */


@keyframes floatLeft1 {

  0%,
  100% {
    transform: rotateY(15deg) rotateX(5deg) translateY(0);
  }

  50% {
    transform: rotateY(15deg) rotateX(5deg) translateY(-12px);
  }
}

@keyframes floatLeft2 {

  0%,
  100% {
    transform: rotateY(15deg) rotateX(5deg) translateY(0);
  }

  50% {
    transform: rotateY(15deg) rotateX(5deg) translateY(-8px);
  }
}

@keyframes floatRight1 {

  0%,
  100% {
    transform: rotateY(-15deg) rotateX(5deg) translateY(0);
  }

  50% {
    transform: rotateY(-15deg) rotateX(5deg) translateY(-10px);
  }
}

@keyframes floatRight2 {

  0%,
  100% {
    transform: rotateY(-15deg) rotateX(5deg) translateY(0);
  }

  50% {
    transform: rotateY(-15deg) rotateX(5deg) translateY(-15px);
  }
}

.video-thumb:hover {
  animation-play-state: paused;
}

/* Product Page Video Redesign */
.product-video-card {
  position: relative;
  background: var(--wside-white);
  border-radius: 24px;
  padding: 1rem;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.08),
    0 1px 3px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  max-width: 350px;
  /* Optimal width for vertical videos */
  margin: 0 auto;
  /* Centered */
}

.product-video-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 30px 60px rgba(229, 23, 37, 0.1),
    0 5px 15px rgba(0, 0, 0, 0.05);
  border-color: rgba(229, 23, 37, 0.2);
}

.product-video-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.2);
  aspect-ratio: 9 / 16;
  /* Ensure vertical mobile-style shape */
}

.product-video-card video {
  width: 100%;
  height: 100%;
  /* Fill the wrapper */
  object-fit: cover;
  /* Maintain aspect ratio without distortion */
  border-radius: 16px;
  display: block;
  transition: transform 0.5s ease;
}

/* Main Video Container Adaptations */
.main-video-container {
  position: relative;
  width: 100%;
  /* Changed from 340px for better responsiveness */
  max-width: 800px;
  /* Consistent with product video cards */
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--wside-gray-900);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  margin: 0 75px;
}

/* Homepage: keep center video in portrait for vertical source videos */
.home-video-gallery .main-video-container {
  width: clamp(280px, 30vw, 360px);
  max-width: 100%;
  aspect-ratio: 9 / 16;
}

.home-video-gallery .video-gallery {
  gap: 0rem;
}

.home-video-gallery .video-thumbnails {
  gap: 0.2rem;
}

.main-video-container:hover {
  animation-play-state: paused;
  box-shadow:
    0 40px 80px rgba(229, 23, 37, 0.15),
    0 15px 30px rgba(0, 0, 0, 0.15),
    0 0 0 4px rgba(229, 23, 37, 0.2);
}

.main-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Video Controls */
.video-controls {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.main-video-container:hover .video-controls {
  opacity: 1;
}

.main-video-container.playing .video-controls {
  opacity: 0;
}

.main-video-container.playing:hover .video-controls {
  opacity: 1;
}

.video-play-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--wside-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  box-shadow: 0 5px 15px rgba(229, 23, 37, 0.3);
}

.video-play-btn:hover {
  transform: scale(1.1);
  background: var(--wside-primary-dark);
}

.video-play-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}

.video-play-btn .pause-icon {
  display: none;
}

.main-video-container.playing .video-play-btn .play-icon {
  display: none;
}

.main-video-container.playing .video-play-btn .pause-icon {
  display: block;
}

/* Video Sound Button */
.video-sound-btn {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--wside-primary);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  box-shadow: 0 5px 15px rgba(229, 23, 37, 0.3);
}

.video-sound-btn:hover {
  transform: scale(1.1);
  background: var(--wside-primary-dark);
}

.video-sound-btn svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  stroke: #fff;
}

.video-sound-btn .sound-off-icon {
  display: block;
}

.video-sound-btn .sound-on-icon {
  display: none;
}

.video-sound-btn.unmuted .sound-off-icon {
  display: none;
}

.video-sound-btn.unmuted .sound-on-icon {
  display: block;
}

/* Video Title Overlay */
.video-title-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
}

.video-title-overlay h5 {
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
  text-align: center;
}

/* YouTube Button */
.youtube-btn {
  border-color: #FF0000;
  color: #FF0000;
  background: rgba(255, 0, 0, 0.1);
}

.youtube-btn:hover {
  background: #FF0000;
  border-color: #FF0000;
  color: #fff;
}

/* Video Swap Animation */
.main-video-container.swap-out {
  animation: swapMainOut 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.video-thumb.swap-in {
  animation: swapThumbIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  z-index: 10;
}

@keyframes swapMainOut {
  0% {
    transform: translateY(0) scale(1) rotateY(0deg);
    opacity: 1;
  }

  50% {
    transform: translateY(-30px) scale(0.85) rotateY(180deg);
    opacity: 0.5;
  }

  100% {
    transform: translateY(0) scale(1) rotateY(360deg);
    opacity: 1;
  }
}

@keyframes swapThumbIn {
  0% {
    transform: rotateY(0deg) scale(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }

  50% {
    transform: rotateY(180deg) scale(1.3) translateZ(50px);
    box-shadow: 0 30px 60px rgba(229, 23, 37, 0.4);
  }

  100% {
    transform: rotateY(360deg) scale(1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  }
}

/* Pause float animation during swap */
.main-video-container.swap-out {
  animation: swapMainOut 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

.video-thumb.swap-in {
  animation: swapThumbIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards !important;
}

/* Responsive Video Gallery */
@media (max-width: 991.98px) {
  .video-gallery {
    flex-direction: column;
    gap: 2rem;
  }

  .video-thumbnails {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }

  .video-thumbnails-left {
    order: 2;
  }

  .main-video-container {
    order: 1;
    width: 300px;
    height: 530px;
  }

  .video-thumbnails-right {
    order: 3;
  }

  .video-thumb {
    width: 140px;
    height: 248px;
  }

  .home-video-gallery .main-video-container {
    width: 300px;
    height: auto;
    aspect-ratio: 9 / 16;
  }
}

@media (max-width: 575.98px) {
  .main-video-container {
    width: 260px;
    height: 460px;
  }

  .video-thumb {
    width: 110px;
    height: 195px;
  }

  .home-video-gallery .main-video-container {
    width: 260px;
    height: auto;
  }

  .thumb-title {
    font-size: 0.75rem;
    padding: 0.75rem 0.5rem;
  }
}

/* ============================================================================
   FOOTER ENHANCEMENTS
   ============================================================================ */
.footer-logos {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-wside-logo {
  height: 50px;
  width: auto;
}

.footer-sf-logo {
  height: 60px;
  width: auto;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.footer-title {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.wside-footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.wside-footer .footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  padding: 0;
  transition: all var(--transition-fast);
}

.wside-footer .footer-links a:hover {
  color: #fff;
  padding-left: 8px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  transition: all var(--transition-base);
}

.social-link:hover {
  background: var(--wside-primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-partner-badge {
  opacity: 0.9;
}

/* ============================================================================
   LANGUAGE TOGGLE
   ============================================================================ */
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--wside-gray-100);
  border-radius: var(--radius-full);
  padding: 4px;
  gap: 2px;
  transition: all 0.35s ease;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--wside-gray-600);
  transition: all var(--transition-fast);
  text-decoration: none;
}

.lang-btn:hover {
  color: var(--wside-gray-800);
  background: rgba(255, 255, 255, 0.5);
}

.lang-btn.active {
  background: var(--wside-white);
  color: var(--wside-gray-900);
  box-shadow: var(--shadow-sm);
}

.lang-btn .flag-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.lang-btn .lang-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* Responsive language toggle */
@media (max-width: 991px) {
  .lang-toggle {
    margin: 0.5rem 0;
    justify-content: center;
  }
}

.dropdown-menu {
  border: 1px solid var(--wside-gray-200);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  min-width: 120px;
}

.dropdown-item {
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.dropdown-item:hover {
  background: var(--wside-light);
}

.dropdown-item.active {
  background: var(--wside-primary);
  color: #fff;
}

/* ============================================================================
   RESPONSIVE ADJUSTMENTS FOR NEW SECTIONS
   ============================================================================ */
@media (max-width: 768px) {
  .partner-logos-hero {
    flex-direction: column;
    gap: 1rem;
  }

  .partner-plus {
    font-size: 1.5rem;
  }

  .hero-partner-visual {
    padding: 2rem;
  }

  .video-thumbnail {
    aspect-ratio: 9/14;
  }

  .footer-social {
    margin-top: 1.5rem;
  }
}

/* ============================================================================
   W-BOT CHAT WIDGET
   ============================================================================ */

/* Chat Container */
#wside-chat-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Chat Toggle Button */
.wside-chat-toggle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--wside-primary);
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 30px rgba(229, 23, 37, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.wside-chat-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 40px rgba(229, 23, 37, 0.5);
}

.wside-chat-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
}

.wside-chat-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 22px;
  height: 22px;
  background: #25D366;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

/* Chat Window */
.wside-chat-window {
  position: absolute;
  bottom: 85px;
  left: 0;
  width: 380px;
  height: 550px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.wside-chat-open .wside-chat-window {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.wside-chat-closed .wside-chat-window {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
}

/* Chat Header */
.wside-chat-header {
  background: linear-gradient(135deg, var(--wside-primary) 0%, #c41520 100%);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wside-chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wside-chat-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  padding: 3px;
}

.wside-chat-header-info h6 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.wside-chat-status {
  font-size: 0.8rem;
  opacity: 0.9;
  display: flex;
  align-items: center;
  gap: 5px;
}

.wside-chat-status::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #25D366;
  border-radius: 50%;
}

.wside-chat-header-actions {
  display: flex;
  gap: 8px;
}

.wside-chat-header-actions button {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.wside-chat-header-actions button:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* Chat Messages */
.wside-chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f8f9fa;
}

.wside-message {
  display: flex;
  gap: 10px;
  max-width: 85%;
  animation: messageSlideIn 0.3s ease-out;
}

@keyframes messageSlideIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wside-assistant-message {
  align-self: flex-start;
}

.wside-user-message {
  align-self: flex-end;
  flex-direction: row-reverse;
}

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

.wside-message-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.wside-message-icon svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.wside-user-message .wside-message-icon {
  background: var(--wside-gray-600);
}

.wside-message-content {
  background: #fff;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 0.95rem;
  line-height: 1.5;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.wside-assistant-message .wside-message-content {
  border-bottom-left-radius: 4px;
}

.wside-user-message .wside-message-content {
  background: var(--wside-primary);
  color: #fff;
  border-bottom-right-radius: 4px;
}

/* Typing Indicator */
.wside-chat-loading {
  padding: 0 20px 10px;
}

.wside-typing-indicator {
  display: flex;
  gap: 4px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 18px;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.wside-typing-indicator span {
  width: 8px;
  height: 8px;
  background: var(--wside-gray-400);
  border-radius: 50%;
  animation: typingBounce 1.4s infinite ease-in-out;
}

.wside-typing-indicator span:nth-child(1) {
  animation-delay: 0s;
}

.wside-typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.wside-typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typingBounce {

  0%,
  60%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-6px);
  }
}

/* Chat Input */
.wside-chat-input-container {
  padding: 16px 20px;
  background: #fff;
  border-top: 1px solid var(--wside-gray-200);
  display: flex;
  gap: 10px;
}

#wside-chat-input {
  flex: 1;
  border: 1px solid var(--wside-gray-300);
  border-radius: 25px;
  padding: 12px 18px;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

#wside-chat-input:focus {
  border-color: var(--wside-primary);
  box-shadow: 0 0 0 3px rgba(229, 23, 37, 0.1);
}

#wside-chat-send {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--wside-primary);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

#wside-chat-send:hover {
  background: var(--wside-primary-dark);
  transform: scale(1.05);
}

#wside-chat-send:disabled {
  background: var(--wside-gray-400);
  cursor: not-allowed;
}

/* Contact Modal */
.wside-contact-modal {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  z-index: 10;
}

.wside-modal-content {
  background: #fff;
  border-radius: 16px;
  width: 90%;
  max-width: 320px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.wside-modal-header {
  background: var(--wside-primary);
  color: #fff;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.wside-modal-header h5 {
  margin: 0;
  font-size: 1rem;
}

#wside-modal-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
}

#wside-contact-form {
  padding: 20px;
}

.wside-form-group {
  margin-bottom: 12px;
}

.wside-form-group input,
.wside-form-group textarea {
  width: 100%;
  border: 1px solid var(--wside-gray-300);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}

.wside-form-group input:focus,
.wside-form-group textarea:focus {
  border-color: var(--wside-primary);
}

.wside-form-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.wside-form-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s;
}

#wside-modal-cancel {
  background: var(--wside-gray-200);
  border: none;
  color: var(--wside-gray-700);
}

#wside-modal-cancel:hover {
  background: var(--wside-gray-300);
}

.wside-form-actions button[type="submit"] {
  background: var(--wside-primary);
  border: none;
  color: #fff;
}

.wside-form-actions button[type="submit"]:hover {
  background: var(--wside-primary-dark);
}

/* Responsive Chat Widget */
@media (max-width: 480px) {
  #wside-chat-container {
    bottom: 16px;
    left: 16px;
  }

  .wside-chat-toggle {
    width: 60px;
    height: 60px;
  }

  .wside-chat-icon {
    width: 42px;
    height: 42px;
  }

  .wside-chat-window {
    width: calc(100vw - 32px);
    height: calc(100vh - 180px);
    max-height: 500px;
    left: -8px;
  }
}


/* ============================================================================
   SALESFORCE EMBEDDED SERVICE - RED THEME
   ============================================================================ */
.embeddedServiceHelpButton .helpButton .uiButton {
  background-color: var(--wside-primary) !important;
  font-family: 'Inter', sans-serif !important;
}

.embeddedServiceHelpButton .helpButton .uiButton:focus {
  outline: 1px solid var(--wside-primary) !important;
}

.embeddedServiceHelpButton .helpButton .helpButtonLabel {
  color: #fff !important;
}

.embeddedServiceSidebarMinimizedDefaultUI .minimizedContainer {
  background-color: var(--wside-primary) !important;
}

.embeddedServiceSidebarHeader {
  background-color: var(--wside-primary) !important;
}

.embeddedServiceSidebarButton {
  background-color: var(--wside-primary) !important;
}

/* ============================================================================
   CERTIFICATE LIGHTBOX & DOWNLOAD BUTTON
   ============================================================================ */

/* Certificate card image - clickable */
.cert-img {
  max-width: 100%;
  height: 200px;
  object-fit: contain;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 8px;
}

.cert-img:hover {
  transform: scale(1.05);
  filter: brightness(1.05);
}

/* Certificate card - flex layout for aligned buttons */
.cert-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cert-card p {
  flex: 1;
}

/* Download button on each card */
.btn-cert-download {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--wside-primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
}

.btn-cert-download:hover {
  background: var(--wside-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Lightbox overlay */
.cert-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cert-lightbox.active {
  display: flex;
  opacity: 1;
}

/* Lightbox content wrapper */
.cert-lightbox-content {
  position: relative;
  max-width: 800px;
  max-height: 90vh;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: certLightboxZoomIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
}

@keyframes certLightboxZoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* Lightbox close button */
.cert-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.cert-lightbox-close:hover {
  background: rgba(0, 0, 0, 0.85);
}

/* Lightbox image */
.cert-lightbox-content img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  padding: 1.5rem 1.5rem 0;
}

/* Lightbox footer (title + download) */
.cert-lightbox-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem 1.5rem;
  gap: 1rem;
}

.cert-lightbox-footer h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--wside-gray-900);
}

/* Lightbox download button */
.btn-cert-lightbox-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--wside-primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-cert-lightbox-download:hover {
  background: var(--wside-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

/* Responsive lightbox */
@media (max-width: 576px) {
  .cert-lightbox {
    padding: 1rem;
  }

  .cert-lightbox-content img {
    padding: 1rem 1rem 0;
  }

  .cert-lightbox-footer {
    flex-direction: column;
    text-align: center;
    padding: 0.75rem 1rem 1rem;
  }

  .cert-lightbox-footer h5 {
    font-size: 1rem;
  }

  .btn-cert-lightbox-download {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================================
   COMPANY PROFILE CARD (Şirket Künyesi)
   ============================================================================ */
.company-profile-card {
  background: var(--wside-white);
  border-radius: 16px;
  border: 1px solid var(--wside-gray-200);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.company-profile-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--wside-gray-200);
  background: linear-gradient(135deg, var(--wside-white) 0%, var(--wside-light-alt) 100%);
}

.company-profile-logo {
  height: 56px;
  object-fit: contain;
}

.company-profile-header h3 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--wside-text-primary);
  margin: 0;
}

.company-profile-grid {
  padding: 0;
}

.company-profile-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 2rem;
  border-bottom: 1px solid var(--wside-gray-100);
  transition: background 0.2s ease;
}

.company-profile-item:hover {
  background: var(--wside-gray-50);
}

/* Right border for left column items on md+ */
@media (min-width: 768px) {
  .company-profile-item:nth-child(odd) {
    border-right: 1px solid var(--wside-gray-100);
  }
}

.company-profile-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: var(--wside-light-alt);
  color: var(--wside-primary);
  transition: all 0.2s ease;
}

.company-profile-item:hover .company-profile-icon {
  background: var(--wside-primary);
  color: #fff;
}

.company-profile-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--wside-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.company-profile-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--wside-text-primary);
}

.company-profile-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2rem;
  background: var(--wside-gray-50);
  border-top: 1px solid var(--wside-gray-200);
}

/* Responsive */
@media (max-width: 767.98px) {
  .company-profile-header {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .company-profile-item {
    padding: 1rem 1.25rem;
  }

  .company-profile-footer {
    flex-direction: column;
    text-align: center;
    padding: 1rem 1.25rem;
  }
}

/* ============================================================================
   NAVBAR SEARCH
   ============================================================================ */
.nav-search {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: none;
  background: transparent;
  color: var(--wside-gray-600);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
  flex-shrink: 0;
}

.nav-search-btn:hover {
  color: var(--wside-primary);
  background: var(--wside-gray-100);
}

/* Hide search icon when search is active */
.nav-search.active .nav-search-btn {
  display: none;
}

.nav-search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 0;
  overflow: visible;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-search.active .nav-search-wrapper {
  width: 280px;
}

.nav-search-input {
  width: 100%;
  height: 38px;
  border: 2px solid var(--wside-gray-200);
  border-radius: var(--radius-full);
  padding: 0 36px 0 14px;
  font-size: 0.85rem;
  font-family: inherit;
  color: var(--wside-gray-800);
  background: var(--wside-white);
  outline: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  opacity: 0;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.25s ease,
    border-color var(--transition-fast),
    box-shadow var(--transition-fast);
}

.nav-search.active .nav-search-input {
  opacity: 1;
  transform: scaleX(1);
}

.nav-search-input:focus {
  border-color: var(--wside-primary);
  box-shadow: 0 0 0 3px rgba(229, 23, 37, 0.1);
}

.nav-search-input::placeholder {
  color: var(--wside-gray-400);
  font-size: 0.8rem;
}

.nav-search-close {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  color: var(--wside-gray-400);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.nav-search.active .nav-search-close {
  opacity: 1;
  pointer-events: all;
}

.nav-search-close:hover {
  color: var(--wside-gray-700);
  background: var(--wside-gray-100);
}

/* Search Results Dropdown */
.nav-search-results {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 380px;
  max-height: 420px;
  overflow-y: auto;
  background: var(--wside-white);
  border: 1px solid var(--wside-gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  display: none;
  padding: 6px;
}

.nav-search-results.active {
  display: block;
  animation: searchDropdownIn 0.2s ease-out;
}

@keyframes searchDropdownIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-search-result-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--wside-gray-800);
  transition: all var(--transition-fast);
}

.nav-search-result-item:hover,
.nav-search-result-item.active {
  background: var(--wside-gray-50);
  color: var(--wside-gray-900);
}

.nav-search-result-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--wside-gray-100);
  border-radius: var(--radius-sm);
  color: var(--wside-gray-500);
}

.nav-search-result-item:hover .nav-search-result-icon,
.nav-search-result-item.active .nav-search-result-icon {
  background: rgba(229, 23, 37, 0.08);
  color: var(--wside-primary);
}

.nav-search-result-content {
  flex: 1;
  min-width: 0;
}

.nav-search-result-title {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-search-result-title mark {
  background: rgba(229, 23, 37, 0.12);
  color: var(--wside-primary);
  border-radius: 2px;
  padding: 0 2px;
}

.nav-search-result-desc {
  font-size: 0.75rem;
  color: var(--wside-gray-500);
  line-height: 1.3;
  margin-top: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-search-result-desc mark {
  background: rgba(229, 23, 37, 0.08);
  color: var(--wside-primary-dark);
  border-radius: 2px;
  padding: 0 1px;
}

.nav-search-result-badge {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 3px 8px;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-search-result-badge.badge-page {
  background: var(--wside-gray-100);
  color: var(--wside-gray-600);
}

.nav-search-result-badge.badge-solution {
  background: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}

.nav-search-result-badge.badge-industry {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.nav-search-result-badge.badge-blog {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

.nav-search-result-badge.badge-section {
  background: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
}

.nav-search-no-result {
  text-align: center;
  padding: 24px 16px;
  color: var(--wside-gray-400);
  font-size: 0.85rem;
}

/* Scrollbar for results */
.nav-search-results::-webkit-scrollbar {
  width: 4px;
}

.nav-search-results::-webkit-scrollbar-track {
  background: transparent;
}

.nav-search-results::-webkit-scrollbar-thumb {
  background: var(--wside-gray-300);
  border-radius: 4px;
}

/* Responsive: Mobile */
@media (max-width: 991px) {
  .nav-search {
    width: 100%;
    margin: 0.5rem 0;
  }

  .nav-search-btn {
    color: var(--wside-gray-700);
  }

  .nav-search.active {
    width: 100%;
  }

  .nav-search.active .nav-search-wrapper {
    width: 100%;
    flex: 1;
  }

  .nav-search-results {
    width: 100%;
    left: 0;
    right: 0;
  }
}

@media (max-width: 575px) {
  .nav-search-results {
    max-height: 320px;
  }
}

/* ============================================================================
   INDUSTRY SLIDER - Diğer Endüstriler Section
   ============================================================================ */
.industry-slider-section {
  padding: 3.5rem 0;
  background: var(--wside-gray-50);
  overflow: hidden;
}

.industry-slider-wrapper {
  position: relative;
}

.industry-slider {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 1rem 0.5rem 1.5rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.industry-slider::-webkit-scrollbar {
  display: none;
}

.industry-slide {
  flex: 0 0 220px;
  scroll-snap-align: start;
  min-width: 220px;
}

.industry-slide-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: var(--wside-white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  border: 1px solid var(--wside-gray-200);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  height: 100%;
  min-height: 170px;
}

.industry-slide-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--wside-primary), var(--wside-primary-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.industry-slide-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(229, 23, 37, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
  border-color: rgba(229, 23, 37, 0.2);
}

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

.industry-slide-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, rgba(229, 23, 37, 0.08), rgba(229, 23, 37, 0.04));
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.industry-slide-icon svg {
  width: 24px;
  height: 24px;
  fill: var(--wside-primary);
  transition: all 0.3s ease;
}

.industry-slide-card:hover .industry-slide-icon {
  background: var(--wside-primary);
  transform: scale(1.1);
}

.industry-slide-card:hover .industry-slide-icon svg {
  fill: #fff;
}

.industry-slide-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--wside-gray-900);
  text-align: center;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.industry-slide-cloud {
  font-size: 0.78rem;
  color: var(--wside-text-secondary);
  text-align: center;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.industry-slide-card:hover .industry-slide-cloud {
  opacity: 1;
  color: var(--wside-primary);
}

/* Slider navigation arrows */
.industry-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--wside-white);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all 0.3s ease;
  color: var(--wside-gray-700);
}

.industry-slider-nav:hover {
  background: var(--wside-primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(229, 23, 37, 0.25);
}

.industry-slider-nav svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.industry-slider-nav.prev {
  left: -8px;
}

.industry-slider-nav.next {
  right: -8px;
}

.industry-slider-nav:disabled {
  opacity: 0;
  pointer-events: none;
}

/* Gradient fade edges */
.industry-slider-wrapper::before,
.industry-slider-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 3;
  pointer-events: none;
}

.industry-slider-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, var(--wside-gray-50) 0%, transparent 100%);
}

.industry-slider-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, var(--wside-gray-50) 0%, transparent 100%);
}

/* "Tüm Endüstriler" special card */
.industry-slide-card.all-industries {
  background: linear-gradient(135deg, var(--wside-gray-100), var(--wside-gray-50));
  border-style: dashed;
  border-color: var(--wside-gray-300);
}

.industry-slide-card.all-industries:hover {
  background: linear-gradient(135deg, rgba(229, 23, 37, 0.04), rgba(229, 23, 37, 0.02));
  border-color: rgba(229, 23, 37, 0.3);
  border-style: solid;
}

.industry-slide-card.all-industries .industry-slide-icon {
  background: var(--wside-gray-200);
}

.industry-slide-card.all-industries:hover .industry-slide-icon {
  background: var(--wside-primary);
}

/* Scroll indicator dots */
.industry-slider-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 0.5rem;
}

.industry-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wside-gray-300);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.industry-slider-dot.active {
  background: var(--wside-primary);
  width: 24px;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 767px) {
  .industry-slide {
    flex: 0 0 180px;
    min-width: 180px;
  }

  .industry-slide-card {
    padding: 1.25rem 1rem;
    min-height: 150px;
  }

  .industry-slider-nav {
    display: none;
  }

  .industry-slider-wrapper::before,
  .industry-slider-wrapper::after {
    width: 24px;
  }

  .industry-slider-section {
    padding: 2.5rem 0;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .industry-slide {
    flex: 0 0 200px;
    min-width: 200px;
  }
}

/* ============================================================================
   INSTAGRAM FEED SECTION
   ============================================================================ */
.instagram-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #f8f9fc 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.instagram-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(214, 41, 118, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.instagram-section::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(79, 91, 213, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.instagram-badge {
  background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5) !important;
  color: #fff !important;
}

.instagram-title-icon {
  vertical-align: middle;
  margin-right: 0.5rem;
  margin-top: -4px;
}

.instagram-handle {
  color: #d62976;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.instagram-handle:hover {
  color: #962fbf;
  text-decoration: underline;
}

/* Instagram Grid */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto;
}

.instagram-post {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.instagram-post:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 12px 40px rgba(214, 41, 118, 0.2);
}

.instagram-post-img {
  width: 100%;
  height: 100%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #f0f2f5;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.instagram-post:hover .instagram-post-img {
  transform: scale(1);
}

/* Placeholder for missing images */
.instagram-post-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e8eaf0;
  color: rgba(0, 0, 0, 0.15);
  transition: opacity 0.3s ease;
}

/* Hide placeholder when image loads */
.instagram-post-img.loaded .instagram-post-placeholder {
  opacity: 0;
  pointer-events: none;
}

/* Hover overlay */
.instagram-post-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(254, 218, 117, 0.85) 0%,
      rgba(250, 126, 30, 0.85) 25%,
      rgba(214, 41, 118, 0.85) 50%,
      rgba(150, 47, 191, 0.85) 75%,
      rgba(79, 91, 213, 0.85) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.instagram-post:hover .instagram-post-overlay {
  opacity: 1;
}

.instagram-post-stats {
  display: flex;
  gap: 1.5rem;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.instagram-post-stats span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  animation: igFadeInUp 0.3s ease forwards;
  opacity: 0;
  transform: translateY(10px);
}

.instagram-post:hover .instagram-post-stats span:nth-child(1) {
  animation-delay: 0.1s;
}

.instagram-post:hover .instagram-post-stats span:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes igFadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Instagram Follow Button */
.instagram-follow-btn {
  background: var(--wside-primary, #0d2137);
  color: #fff !important;
  border: none;
  padding: 0.875rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(13, 33, 55, 0.25);
  position: relative;
  overflow: hidden;
}

.instagram-follow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(13, 33, 55, 0.35);
  background: var(--wside-accent, #1a3a5c);
  color: #fff !important;
}

/* Responsive */
@media (max-width: 767px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .instagram-section {
    padding: 3rem 0;
  }

  .instagram-title-icon {
    width: 24px;
    height: 24px;
  }

  .instagram-follow-btn {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .instagram-post {
    border-radius: 10px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.85rem;
    max-width: 700px;
  }
}

/* ============================================================================
   PHONE MOCKUP - Wside Product Pages
   ============================================================================ */
.phone-mockup {
  position: relative;
  width: 280px;
  margin: 0 auto;
}

.phone-mockup-frame {
  position: relative;
  background: #1a1a2e;
  border-radius: 40px;
  padding: 12px;
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.3),
    0 0 0 2px rgba(255, 255, 255, 0.1),
    inset 0 0 0 2px rgba(255, 255, 255, 0.05);
}

.phone-mockup-notch {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #1a1a2e;
  border-radius: 0 0 18px 18px;
  z-index: 2;
}

.phone-mockup-notch::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #2d2d44;
  border-radius: 50%;
}

.phone-mockup-screen {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #fff;
  aspect-ratio: 9 / 19.5;
}

.phone-mockup-screen img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
}

.phone-mockup-glow {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(ellipse at center,
      rgba(229, 23, 37, 0.08) 0%,
      transparent 70%);
  pointer-events: none;
  z-index: -1;
}

@media (max-width: 767px) {
  .phone-mockup {
    width: 220px;
  }

  .phone-mockup-frame {
    border-radius: 32px;
    padding: 10px;
  }

  .phone-mockup-screen {
    border-radius: 22px;
  }

  .phone-mockup-notch {
    width: 100px;
    height: 24px;
    top: 10px;
  }
}

/* Wside Product Hero Gradient */
.wside-product-hero {
  background: linear-gradient(135deg, var(--wside-light) 0%, var(--wside-light-blue) 50%, var(--wside-light) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.wside-product-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 50%, rgba(229, 23, 37, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* Stat cards for product pages */
.wside-stat-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-lg);
  background: var(--wside-white);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wside-stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.wside-stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--wside-primary);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.wside-stat-label {
  font-size: 0.85rem;
  color: var(--wside-text-secondary);
  font-weight: 500;
}

/* Step cards for "How it works" */
.wside-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--wside-white);
  box-shadow: var(--shadow-card);
  transition: transform 0.3s ease;
}

.wside-step:hover {
  transform: translateX(8px);
}

.wside-step-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wside-primary), var(--wside-primary-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}

.wside-step h5 {
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--wside-gray-900);
}

.wside-step p {
  margin: 0;
  color: var(--wside-text-secondary);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Salesforce integration badge */
.sf-integration-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #00a1e0, #0070d2);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  box-shadow: 0 4px 15px rgba(0, 112, 210, 0.3);
}

/* END OF STYLESHEET */
