:root {
  /* Primitive Color Tokens */
  --color-white: rgba(255, 255, 255, 1);
  --color-black: rgba(0, 0, 0, 1);
  --color-cream-50: rgba(252, 252, 249, 1);
  --color-cream-100: rgba(255, 255, 253, 1);
  --color-gray-200: rgba(245, 245, 245, 1);
  --color-gray-300: rgba(167, 169, 169, 1);
  --color-gray-400: rgba(119, 124, 124, 1);
  --color-slate-500: rgba(98, 108, 113, 1);
  --color-brown-600: rgba(94, 82, 64, 1);
  --color-charcoal-700: rgba(31, 33, 33, 1);
  --color-charcoal-800: rgba(38, 40, 40, 1);
  --color-slate-900: rgba(19, 52, 59, 1);
  --color-teal-300: rgba(50, 184, 198, 1);
  --color-teal-400: rgba(45, 166, 178, 1);
  --color-teal-500: rgba(33, 128, 141, 1);
  --color-teal-600: rgba(29, 116, 128, 1);
  --color-teal-700: rgba(26, 104, 115, 1);
  --color-teal-800: rgba(41, 150, 161, 1);
  --color-red-400: rgba(255, 84, 89, 1);
  --color-red-500: rgba(192, 21, 47, 1);
  --color-orange-400: rgba(230, 129, 97, 1);
  --color-orange-500: rgba(168, 75, 47, 1);

  /* RGB versions for opacity control */
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;
  --color-slate-500-rgb: 98, 108, 113;
  --color-red-500-rgb: 192, 21, 47;
  --color-red-400-rgb: 255, 84, 89;
  --color-orange-500-rgb: 168, 75, 47;
  --color-orange-400-rgb: 230, 129, 97;

  /* Background color tokens (Light Mode) */
  --color-bg-1: rgba(59, 130, 246, 0logo-text08);
  /* Light blue */
  --color-bg-2: rgba(245, 158, 11, 0.08);
  /* Light yellow */
  --color-bg-3: rgba(34, 197, 94, 0.08);
  /* Light green */
  --color-bg-4: rgba(239, 68, 68, 0.08);
  /* Light red */
  --color-bg-5: rgba(147, 51, 234, 0.08);
  /* Light purple */
  --color-bg-6: rgba(249, 115, 22, 0.08);
  /* Light orange */
  --color-bg-7: rgba(236, 72, 153, 0.08);
  /* Light pink */
  --color-bg-8: rgba(6, 182, 212, 0.08);
  /* Light cyan */

  /* Semantic Color Tokens (Light Mode) */
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);
  --color-select-caret: rgba(var(--color-slate-900-rgb), 0.8);

  /* Common style patterns */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for opacity control */
  --color-success-rgb: 33, 128, 141;
  --color-error-rgb: 192, 21, 47;
  --color-warning-rgb: 168, 75, 47;
  --color-info-rgb: 98, 108, 113;

  /* Typography */
  --font-family-base: "FKGroteskNeue", "Geist", "Inter", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-family-mono: "Berkeley Mono", ui-monospace, SFMono-Regular, Menlo,
    Monaco, Consolas, monospace;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 24px;
  --font-size-4xl: 30px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 550;
  --font-weight-bold: 600;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --letter-spacing-tight: -0.01em;

  /* Spacing */
  --space-0: 0;
  --space-1: 1px;
  --space-2: 2px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-base: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04),
    0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);

  /* Animation */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

/* Dark mode colors */
@media (prefers-color-scheme: dark) {
  :root {
    /* RGB versions for opacity control (Dark Mode) */
    --color-gray-400-rgb: 119, 124, 124;
    --color-teal-300-rgb: 50, 184, 198;
    --color-gray-300-rgb: 167, 169, 169;
    --color-gray-200-rgb: 245, 245, 245;

    /* Background color tokens (Dark Mode) */
    --color-bg-1: rgba(29, 78, 216, 0.15);
    /* Dark blue */
    --color-bg-2: rgba(180, 83, 9, 0.15);
    /* Dark yellow */
    --color-bg-3: rgba(21, 128, 61, 0.15);
    /* Dark green */
    --color-bg-4: rgba(185, 28, 28, 0.15);
    /* Dark red */
    --color-bg-5: rgba(107, 33, 168, 0.15);
    /* Dark purple */
    --color-bg-6: rgba(194, 65, 12, 0.15);
    /* Dark orange */
    --color-bg-7: rgba(190, 24, 93, 0.15);
    /* Dark pink */
    --color-bg-8: rgba(8, 145, 178, 0.15);
    /* Dark cyan */

    /* Semantic Color Tokens (Dark Mode) */
    --color-background: var(--color-charcoal-700);
    --color-surface: var(--color-charcoal-800);
    --color-text: var(--color-gray-200);
    --color-text-secondary: rgba(var(--color-gray-300-rgb), 0.7);
    --color-primary: var(--color-teal-300);
    --color-primary-hover: var(--color-teal-400);
    --color-primary-active: var(--color-teal-800);
    --color-secondary: rgba(var(--color-gray-400-rgb), 0.15);
    --color-secondary-hover: rgba(var(--color-gray-400-rgb), 0.25);
    --color-secondary-active: rgba(var(--color-gray-400-rgb), 0.3);
    --color-border: rgba(var(--color-gray-400-rgb), 0.3);
    --color-error: var(--color-red-400);
    --color-success: var(--color-teal-300);
    --color-warning: var(--color-orange-400);
    --color-info: var(--color-gray-300);
    --color-focus-ring: rgba(var(--color-teal-300-rgb), 0.4);
    --color-btn-primary-text: var(--color-slate-900);
    --color-card-border: rgba(var(--color-gray-400-rgb), 0.2);
    --color-card-border-inner: rgba(var(--color-gray-400-rgb), 0.15);
    --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    --button-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
    --color-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
    --color-select-caret: rgba(var(--color-gray-200-rgb), 0.8);

    /* Common style patterns - updated for dark mode */
    --focus-ring: 0 0 0 3px var(--color-focus-ring);
    --focus-outline: 2px solid var(--color-primary);
    --status-bg-opacity: 0.15;
    --status-border-opacity: 0.25;
    --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

    /* RGB versions for dark mode */
    --color-success-rgb: var(--color-teal-300-rgb);
    --color-error-rgb: var(--color-red-400-rgb);
    --color-warning-rgb: var(--color-orange-400-rgb);
    --color-info-rgb: var(--color-gray-300-rgb);
  }
}

/* Data attribute for manual theme switching */
[data-color-scheme="dark"] {
  /* RGB versions for opacity control (dark mode) */
  --color-gray-400-rgb: 119, 124, 124;
  --color-teal-300-rgb: 50, 184, 198;
  --color-gray-300-rgb: 167, 169, 169;
  --color-gray-200-rgb: 245, 245, 245;

  /* Colorful background palette - Dark Mode */
  --color-bg-1: rgba(29, 78, 216, 0.15);
  /* Dark blue */
  --color-bg-2: rgba(180, 83, 9, 0.15);
  /* Dark yellow */
  --color-bg-3: rgba(21, 128, 61, 0.15);
  /* Dark green */
  --color-bg-4: rgba(185, 28, 28, 0.15);
  /* Dark red */
  --color-bg-5: rgba(107, 33, 168, 0.15);
  /* Dark purple */
  --color-bg-6: rgba(194, 65, 12, 0.15);
  /* Dark orange */
  --color-bg-7: rgba(190, 24, 93, 0.15);
  /* Dark pink */
  --color-bg-8: rgba(8, 145, 178, 0.15);
  /* Dark cyan */

  /* Semantic Color Tokens (Dark Mode) */
  --color-background: var(--color-charcoal-700);
  --color-surface: var(--color-charcoal-800);
  --color-text: var(--color-gray-200);
  --color-text-secondary: rgba(var(--color-gray-300-rgb), 0.7);
  --color-primary: var(--color-teal-300);
  --color-primary-hover: var(--color-teal-400);
  --color-primary-active: var(--color-teal-800);
  --color-secondary: rgba(var(--color-gray-400-rgb), 0.15);
  --color-secondary-hover: rgba(var(--color-gray-400-rgb), 0.25);
  --color-secondary-active: rgba(var(--color-gray-400-rgb), 0.3);
  --color-border: rgba(var(--color-gray-400-rgb), 0.3);
  --color-error: var(--color-red-400);
  --color-success: var(--color-teal-300);
  --color-warning: var(--color-orange-400);
  --color-info: var(--color-gray-300);
  --color-focus-ring: rgba(var(--color-teal-300-rgb), 0.4);
  --color-btn-primary-text: var(--color-slate-900);
  --color-card-border: rgba(var(--color-gray-400-rgb), 0.15);
  --color-card-border-inner: rgba(var(--color-gray-400-rgb), 0.15);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  --color-border-secondary: rgba(var(--color-gray-400-rgb), 0.2);
  --color-select-caret: rgba(var(--color-gray-200-rgb), 0.8);

  /* Common style patterns - updated for dark mode */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for dark mode */
  --color-success-rgb: var(--color-teal-300-rgb);
  --color-error-rgb: var(--color-red-400-rgb);
  --color-warning-rgb: var(--color-orange-400-rgb);
  --color-info-rgb: var(--color-gray-300-rgb);
}

[data-color-scheme="light"] {
  /* RGB versions for opacity control (light mode) */
  --color-brown-600-rgb: 94, 82, 64;
  --color-teal-500-rgb: 33, 128, 141;
  --color-slate-900-rgb: 19, 52, 59;

  /* Semantic Color Tokens (Light Mode) */
  --color-background: var(--color-cream-50);
  --color-surface: var(--color-cream-100);
  --color-text: var(--color-slate-900);
  --color-text-secondary: var(--color-slate-500);
  --color-primary: var(--color-teal-500);
  --color-primary-hover: var(--color-teal-600);
  --color-primary-active: var(--color-teal-700);
  --color-secondary: rgba(var(--color-brown-600-rgb), 0.12);
  --color-secondary-hover: rgba(var(--color-brown-600-rgb), 0.2);
  --color-secondary-active: rgba(var(--color-brown-600-rgb), 0.25);
  --color-border: rgba(var(--color-brown-600-rgb), 0.2);
  --color-btn-primary-text: var(--color-cream-50);
  --color-card-border: rgba(var(--color-brown-600-rgb), 0.12);
  --color-card-border-inner: rgba(var(--color-brown-600-rgb), 0.12);
  --color-error: var(--color-red-500);
  --color-success: var(--color-teal-500);
  --color-warning: var(--color-orange-500);
  --color-info: var(--color-slate-500);
  --color-focus-ring: rgba(var(--color-teal-500-rgb), 0.4);

  /* RGB versions for light mode */
  --color-success-rgb: var(--color-teal-500-rgb);
  --color-error-rgb: var(--color-red-500-rgb);
  --color-warning-rgb: var(--color-orange-500-rgb);
  --color-info-rgb: var(--color-slate-500-rgb);
}

/* Base styles */
html {
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  letter-spacing: var(--letter-spacing-tight);
}

h1 {
  font-size: var(--font-size-4xl);
}

h2 {
  font-size: var(--font-size-3xl);
}

h3 {
  font-size: var(--font-size-2xl);
}

h4 {
  font-size: var(--font-size-xl);
}

h5 {
  font-size: var(--font-size-lg);
}

h6 {
  font-size: var(--font-size-md);
}

p {
  margin: 0 0 var(--space-16) 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

a:hover {
  color: var(--color-primary-hover);
}

code,
pre {
  font-family: var(--font-family-mono);
  font-size: calc(var(--font-size-base) * 0.95);
  background-color: var(--color-secondary);
  border-radius: var(--radius-sm);
}

code {
  padding: var(--space-1) var(--space-4);
}

pre {
  padding: var(--space-16);
  margin: var(--space-16) 0;
  overflow: auto;
  border: 1px solid var(--color-border);
}

pre code {
  background: none;
  padding: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-16);
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  border: none;
  text-decoration: none;
  position: relative;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
}

.btn--primary:hover {
  background: transparent;
  border: 2px solid #ff895d;
  color: #ff895d;
}

.btn--primary:active {
  background: var(--color-primary-active);
}

.btn--secondary {
  background: var(--color-secondary);
  color: var(--color-text);
}

.btn--secondary:hover {
  background: var(--color-secondary-hover);
}

.btn--secondary:active {
  background: var(--color-secondary-active);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.btn--outline:hover {
  background: var(--color-secondary);
}

.btn--sm {
  padding: var(--space-4) var(--space-12);
  font-size: var(--font-size-sm);
  border-radius: var(--radius-sm);
}

.btn--lg {
  padding: var(--space-10) var(--space-20);
  font-size: var(--font-size-lg);
  border-radius: var(--radius-md);
}

.btn--full-width {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Form elements */
.form-control {
  display: block;
  width: 100%;
  padding: var(--space-8) var(--space-12);
  font-size: var(--font-size-md);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-base);
  transition: border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

textarea.form-control {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
}

select.form-control {
  padding: var(--space-8) var(--space-12);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: var(--select-caret-light);
  background-repeat: no-repeat;
  background-position: right var(--space-12) center;
  background-size: 16px;
  padding-right: var(--space-32);
}

/* Add a dark mode specific caret */
@media (prefers-color-scheme: dark) {
  select.form-control {
    background-image: var(--select-caret-dark);
  }
}

/* Also handle data-color-scheme */
[data-color-scheme="dark"] select.form-control {
  background-image: var(--select-caret-dark);
}

[data-color-scheme="light"] select.form-control {
  background-image: var(--select-caret-light);
}

.form-control:focus {
  border-color: var(--color-primary);
  outline: var(--focus-outline);
}

.form-label {
  display: block;
  margin-bottom: var(--space-8);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.form-group {
  margin-bottom: var(--space-16);
}

/* Card component */
.card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--duration-normal) var(--ease-standard);
}

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

.card__body {
  padding: var(--space-16);
}

.card__header,
.card__footer {
  padding: var(--space-16);
  border-bottom: 1px solid var(--color-card-border-inner);
}

/* Status indicators - simplified with CSS variables */
.status {
  display: inline-flex;
  align-items: center;
  padding: var(--space-6) var(--space-12);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.status--success {
  background-color: rgba(
    var(--color-success-rgb, 33, 128, 141),
    var(--status-bg-opacity)
  );
  color: var(--color-success);
  border: 1px solid
    rgba(var(--color-success-rgb, 33, 128, 141), var(--status-border-opacity));
}

.status--error {
  background-color: rgba(
    var(--color-error-rgb, 192, 21, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-error);
  border: 1px solid
    rgba(var(--color-error-rgb, 192, 21, 47), var(--status-border-opacity));
}

.status--warning {
  background-color: rgba(
    var(--color-warning-rgb, 168, 75, 47),
    var(--status-bg-opacity)
  );
  color: var(--color-warning);
  border: 1px solid
    rgba(var(--color-warning-rgb, 168, 75, 47), var(--status-border-opacity));
}

.status--info {
  background-color: rgba(
    var(--color-info-rgb, 98, 108, 113),
    var(--status-bg-opacity)
  );
  color: var(--color-info);
  border: 1px solid
    rgba(var(--color-info-rgb, 98, 108, 113), var(--status-border-opacity));
}

/* Container layout */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-16);
  padding-left: var(--space-16);
}

@media (min-width: 640px) {
  .container {
    max-width: var(--container-sm);
  }
}

@media (min-width: 768px) {
  .container {
    max-width: var(--container-md);
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: var(--container-lg);
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: var(--container-xl);
  }
}

/* Utility classes */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: var(--space-4);
}

.gap-8 {
  gap: var(--space-8);
}

.gap-16 {
  gap: var(--space-16);
}

.m-0 {
  margin: 0;
}

.mt-8 {
  margin-top: var(--space-8);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.mx-8 {
  margin-left: var(--space-8);
  margin-right: var(--space-8);
}

.my-8 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}

.p-0 {
  padding: 0;
}

.py-8 {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.px-8 {
  padding-left: var(--space-8);
  padding-right: var(--space-8);
}

.py-16 {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.px-16 {
  padding-left: var(--space-16);
  padding-right: var(--space-16);
}

.block {
  display: block;
}

.hidden {
  display: none;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

/* Dark mode specifics */
[data-color-scheme="dark"] .btn--outline {
  border: 1px solid var(--color-border-secondary);
}

@font-face {
  font-family: "FKGroteskNeue";
  src: url("https://r2cdn.perplexity.ai/fonts/FKGroteskNeue.woff2")
    format("woff2");
}

/* END PERPLEXITY DESIGN SYSTEM */
/* Custom styles for YourAdsmate website */

/* Additional variables for the orange/black theme */
:root {
  --primary-orange: #ff6b35;
  --primary-orange-hover: #ff5722;
  --primary-orange-light: rgba(255, 107, 53, 0.1);
  --primary-black: #1a1a1a;
  --skin-bg: #f5f4f0;
  --dark-gray: #2c2c2c;
  --light-gray: #f8f8f8;
  --gradient-primary: linear-gradient(
    135deg,
    var(--primary-orange) 0%,
    #ff8a65 100%
  );
  --gradient-secondary: linear-gradient(
    135deg,
    var(--primary-black) 0%,
    var(--dark-gray) 100%
  );
  --shadow-orange: 0 10px 30px rgba(255, 107, 53, 0.2);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Override design system colors for orange theme */
:root {
  --color-background: var(--skin-bg);
  --color-surface: var(--color-white);
  --color-primary: var(--primary-orange);
  --color-primary-hover: var(--primary-orange-hover);
  --color-text: var(--primary-black);
  --color-text-secondary: #666666;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", var(--font-family-base);
  background-color: var(--skin-bg);
  color: var(--primary-black);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

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

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

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

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

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

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

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

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

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background: #25d366;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  animation: float 3s ease-in-out infinite;
  transition: var(--transition-smooth);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: white;
  font-size: 28px;
  text-decoration: none;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
  z-index: 999;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: white;
  box-shadow: var(--shadow-md);
}

.logo-white {
  display: none !important;
}

.logo-dark {
  display: block !important;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-20);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.nav-logo a {
  display: flex;
  align-items: center;
  height: 100%;
}

.company-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.logo-text {
  position: relative;
  top: -10px;
  color: var(--primary-orange);
  font-size: 2rem;
}

.logo-accent {
  color: var(--primary-orange);
}

.nav-menu {
  display: flex;
  gap: var(--space-32);
  align-items: center;
}

@media (max-width: 991px) {
/* Conflict with mega-menu.css - commented out to fix mobile menu visibility */
/*
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    padding: 80px 40px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }
*/
}

.nav-link {
  color: var(--primary-black);
  text-decoration: none;
  font-size: 1.2vw;
  font-weight: 400;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-orange);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-orange);
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-black);
  transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

/* Sections */
section {
  padding: 80px 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-20);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: #ff6b35 ;
  margin-bottom: var(--space-16);
}

.section-header p {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.service-btn {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: var(--transition-smooth);
}

.service-btn:hover {
  color: var(--primary-orange-hover);
}

.team-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--primary-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  transition: var(--transition-smooth);
}

.team-photo {
  background: var(--primary-orange);
  color: white;
}

.team-photo i {
  font-size: 3rem;
  color: var(--primary-orange);
  transition: var(--transition-smooth);
}

.team-photo i {
  color: white;
}

/* Hero Section */
.contact-hero {
  height: 50vh;
  background:linear-gradient(135deg, rgb(17 16 16 / 36%) 0%, rgb(17 15 15 / 35%) 100%), url(/contact/images/contact.jpg) center / cover;
  background-attachment: fixed;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  margin-top: 70px;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 600px;
  margin: 0 auto;
}

.contact-hero-content h1 {
  font-size: clamp(1rem, 5vw, 2.5rem);
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(30px);
  z-index: 15;
  letter-spacing: var(--letter-spacing-tight);
}

.contact-hero-content p {
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-size: 700;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(30px);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
  color: #fff;
  z-index: 200;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
}

/* Swiper customization */
.swiper-pagination-bullet {
  background: var(--primary-orange) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-orange) !important;
}

/* Contact Section */
.contact {
  background: var(--skin-bg);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-32);
  align-items: start;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 730px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.contact-form-wrapper {
  background: var(--color-white);
  padding: var(--space-32);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-form {
  margin-bottom: var(--space-32);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
}

.form-group {
  margin-bottom: var(--space-16);
}

.form-label {
  display: block;
  margin-bottom: var(--space-8);
  font-weight: var(--font-weight-medium);
  color: var(--primary-black);
}

.form-control {
  width: 100%;
  padding: var(--space-12) var(--space-16);
  border: 2px solid #e5e5e5;
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  transition: var(--transition-smooth);
  background: var(--color-white);
}

.form-control:focus {
  border-color: var(--primary-orange);
  outline: none;
  box-shadow: 0 0 0 3px var(--primary-orange-light);
}

.contact-info {
  border-top: 1px solid #e5e5e5;
  padding-top: var(--space-16);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-16);
  margin-bottom: var(--space-10);
}

.contact-item i {
  width: 50px;
  height: 50px;
  background: var(--primary-orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  font-size: var(--font-size-lg);
}

.contact-item h4 {
  color: var(--primary-black);
  margin-bottom: var(--space-4);
}

.contact-item p {
  color: var(--color-text-secondary);
  margin: 0;
}

/* Footer */
.footer {
  background: var(--primary-black);
  color: var(--color-white);
  padding: 60px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-32);
  margin-bottom: var(--space-32);
}

.footer-section h3 {
  color: var(--color-white);
  margin-bottom: var(--space-20);
  font-size: var(--font-size-xl);
}

.footer-section p {
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: var(--space-20);
}

.social-links {
  display: flex;
  gap: var(--space-12);
}

.social-links a {
  width: 45px;
  height: 45px;
  background: var(--dark-gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: var(--transition-smooth);
}

.social-links a:hover {
  background: var(--primary-orange);
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--space-8);
}

.footer-links a {
  color: #cccccc;
  text-decoration: none;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  color: var(--primary-orange);
}

.contact-details p {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
  color: #cccccc;
}

.contact-details i {
  color: var(--primary-orange);
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid var(--dark-gray);
  padding: var(--space-20) 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-16);
}

.footer-legal {
  display: flex;
  gap: var(--space-20);
}

.footer-legal a {
  color: #cccccc;
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

/* Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-20);
}

.modal.hidden {
  display: none;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}

.modal-content {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-width: 500px;
  width: 100%;
  position: relative;
  z-index: 1;
  animation: fadeInUp 0.3s ease-out;
}

.modal-header {
  text-align: center;
  padding: var(--space-32) var(--space-32) var(--space-16);
}

.modal-header i {
  font-size: 4rem;
  color: #10b981;
  margin-bottom: var(--space-16);
}

.modal-header h3 {
  color: var(--primary-black);
  font-size: var(--font-size-2xl);
}

.modal-body {
  padding: 0 var(--space-32) var(--space-24);
  text-align: center;
}

.modal-body p {
  color: var(--color-text-secondary);
  margin: 0;
}

.modal-footer {
  padding: 0 var(--space-32) var(--space-32);
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 300px;
  }

  .contact-hero {
    height: auto;
    padding: 120px 20px 80px;
  }
}

@media (max-width: 768px) {
  .nav-link {
    font-size: 2rem;
  }

/* Conflict with mega-menu.css - commented out to fix mobile menu visibility */
/*
  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: var(--space-20);
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
*/

  .company-logo {
    height: 50px;
  }

  .hamburger {
    display: flex;
  }

   .contact-hero-content p {
    font-size: 1.3rem;
    font-weight: 600;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float a {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 var(--space-16);
  }

  .container {
    padding: 0 var(--space-16);
  }

  .nav-link {
    font-size: 2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-buttons .btn {
    flex: 1;
    min-width: 140px;
  }

  section {
    padding: 60px 0;
  }

  .contact-form-wrapper {
    padding: var(--space-20);
  }

  .contact-hero {
    height: auto;
    padding: 100px 20px 50px;
    margin-top: 60px;
  }

  .contact-hero-content h1 {
    font-size: 1.5rem;
  }

  .contact-hero-content p {
    font-size: 1rem;
    font-weight: 600;
  }
}

/* Animation classes for scroll effects */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

.animate-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: all 0.6s ease-out;
}

.animate-left.animated {
  opacity: 1;
  transform: translateX(0);
}

.animate-right {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.6s ease-out;
}

.animate-right.animated {
  opacity: 1;
  transform: translateX(0);
}

/* Utility classes */
.text-center {
  text-align: center;
}

.text-orange {
  color: var(--primary-orange);
}

.bg-white {
  background-color: var(--color-white);
}

.bg-orange-light {
  background-color: var(--primary-orange-light);
}

/* Button enhancements */
.btn {
  position: relative;
  overflow: hidden;
  font-weight: var(--font-weight-medium);
  transition: var(--transition-smooth);
}

.btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
}

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

.btn--primary {
  background: var(--gradient-primary);
  border: none;
  color: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.btn--primary:hover {
  box-shadow: var(--shadow-orange);
  transform: translateY(-2px);
}

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

.btn--outline:hover {
  background: var(--primary-orange);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* Loading spinner */
.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: var(--color-white);
  animation: spin 1s ease-in-out infinite;
}

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

svg{
  background-color:transparent;
}

/* Our DNA Section */
.about-dna {
  padding: 60px 0;
  background-color: var(--color-background);
  position: relative;
}

.dna-container {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.dna-image {
  flex: 0 0 55%;
  position: relative;
  z-index: 1;
}

.dna-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-base);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.dna-content {
  flex: 0 0 55%;
  background-color: #FF7443;
  padding: 60px 40px;
  margin-left: -10%;
  position: relative;
  z-index: 2;
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
  color: #1a1a1a;
}

[data-color-scheme="dark"] .dna-content {
  background-color: #FF7443; /* Keeping yellow for contrast, or adapt if needed */
  color: #1a1a1a;
}

.dna-subtitle {
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
  display: block;
  color: #1a1a1a;
}

.dna-content h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 24px;
  color: #1a1a1a;
  line-height: 1.2;
}

.dna-text p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
  color: #333;
}

.dna-text p:last-child {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .dna-container {
    flex-direction: column;
  }
  
  .dna-image, .dna-content {
    flex: 0 0 100%;
    width: 100%;
  }

  .dna-content {
    margin-left: 0;
    margin-top: -30px;
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .about-dna {
    padding: 50px 0;
  }
  
  .dna-content h2 {
    font-size: 30px;
  }
}

/* Why You Need Us Section */
.why-need-us {
  padding: 50px 0;
  background-color: #f7f7f7;
  position: relative;
  overflow: hidden;
}

.why-badge {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFDE00;
  color: #1a1a1a;
  padding: 15px 5px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  box-shadow: -2px 0 5px rgba(0,0,0,0.1);
  z-index: 10;
  cursor: pointer;
}

[data-color-scheme="dark"] .why-need-us {
  background-color: #1e1e1e;
}

.why-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 0 15px;
}

.why-content-left {
  flex: 1;
}

.why-subtitle {
  font-size: 14px;
  color: #666;
  text-transform: capitalize;
  margin-bottom: 5px;
  display: inline-block;
  position: relative;
}

.why-subtitle::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: #333;
  margin-top: 5px;
}

.why-content-left h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #1a1a1a;
  margin-top: 15px;
}

[data-color-scheme="dark"] .why-content-left h2,
[data-color-scheme="dark"] .why-subtitle {
  color: #f5f5f5;
}
[data-color-scheme="dark"] .why-subtitle::after {
  background-color: #f5f5f5;
}

.why-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 20px;
}

[data-color-scheme="dark"] .why-text p {
  color: #ccc;
}

.why-stats-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-box {
  background: #ffffff;
  border-radius: 10px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

[data-color-scheme="dark"] .stat-box {
  background: #2a2a2a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box h3 {
  font-size: 56px;
  font-weight: 700;
  color: #1a1a1a;
  display: inline-block;
  margin: 0;
  line-height: 1;
}

[data-color-scheme="dark"] .stat-box h3 {
  color: #fff;
}

.stat-box .plus {
  font-size: 40px;
  font-weight: 700;
  color: #1a1a1a;
  vertical-align: top;
  line-height: 1.2;
}

[data-color-scheme="dark"] .stat-box .plus {
  color: #fff;
}

.stat-box p {
  margin: 15px 0 0;
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

[data-color-scheme="dark"] .stat-box p {
  color: #aaa;
}

@media (max-width: 991px) {
  .why-container {
    flex-direction: column;
    text-align: center;
    gap: 0px;
  }
  .why-content-left {
    margin-bottom: 40px;
  }
  .why-subtitle::after {
    margin: 5px auto 0;
  }
  .why-stats-grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .stat-box {
    padding: 40px 20px;
  }
  .stat-box h3 {
    font-size: 48px;
  }
  .stat-box .plus {
    font-size: 32px;
  }
}

/* ==========================================================================
   Secondary Team Grid Section
   ========================================================================== */
.team-grid-section {
  padding: 0 0 60px; /* Seamlessly continues from the drivers section above */
  background-color: #fbfbfb;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-member-card {
  flex: 0 1 350px;
  width: 100%;
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0,0,0,0.13);
}

.team-member-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #2a2a2a;
}

.team-member-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-member-card:hover .team-member-img img {
  transform: scale(1.05);
}

.team-member-content {
  padding: 25px 20px;
  text-align: center;
}

.team-member-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.team-member-content p {
  font-size: 11px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0;
}

/* Responsive Team Grid */
@media (max-width: 1024px) {
  .team-grid {
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .team-grid-section {
    padding-bottom: 50px;
  }
  .team-grid {
    gap: 30px;
  }
  .team-member-img {
    aspect-ratio: auto;
    height: 380px;
  }
  .team-member-content h3 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .why-need-us {
    padding: 30px 0;
  }
  .why-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 20px;
  }
  .stat-box {
    padding: 25px 15px;
  }
  .why-content-left h2 {
    font-size: 28px;
  }
  .stat-box h3 {
    font-size: 36px;
  }
  .stat-box .plus {
    font-size: 24px;
  }
  .stat-box p {
    font-size: 13px;
    margin-top: 5px;
  }
}

/* Capabilities Section */
.capabilities {
  padding: 40px 0;
  background-color: var(--color-white);
  text-align: center;
}

[data-color-scheme="dark"] .capabilities {
  background-color: var(--color-background);
}

.cap-header {
  margin-bottom: 50px;
}

.cap-subtitle {
  font-size: 14px;
  color: #666;
  text-transform: capitalize;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

[data-color-scheme="dark"] .cap-subtitle {
  color: #aaa;
}

.cap-subtitle::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background-color: #333;
  margin: 8px auto 0;
}

[data-color-scheme="dark"] .cap-subtitle::after {
  background-color: #f5f5f5;
}

.cap-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
}

[data-color-scheme="dark"] .cap-header h2 {
  color: #fff;
}

.cap-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cap-card {
  background-color: #f7f7f7;
  border-radius: 8px;
  padding: 40px 25px;
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

[data-color-scheme="dark"] .cap-card {
  background-color: #252525;
}

.cap-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

[data-color-scheme="dark"] .cap-card:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.cap-card-number {
  position: absolute;
  top: 30px;
  right: 20px;
  font-size: 60px;
  font-weight: 800;
  color: #FF7443;
  opacity: 0.3;
  line-height: 1;
}

.cap-card-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

[data-color-scheme="dark"] .cap-card-content h3 {
  color: #fff;
}

.cap-card-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  position: relative;
  z-index: 2;
}

[data-color-scheme="dark"] .cap-card-content p {
  color: #ccc;
}

/* Responsive Capabilities Grid */
@media (max-width: 1024px) {
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .cap-grid {
    grid-template-columns: 1fr;
  }
  .cap-header h2 {
    font-size: 32px;
  }
  .cap-card {
    padding: 30px 20px;
  }
  .cap-card-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 45px;
    opacity: 0.3;
  }
  .cap-card-content h3 {
    margin-right: 40px; /* Leave space for the number */
    font-size: 20px;
  }
}

/* Our Approach Carousel Section */
.approach-section {
  background-color: #000;
  padding: 40px 0;
  color: #fff;
}

.approach-header {
  text-align: center;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}

.approach-header .approach-subtitle {
  color: #FF7443;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  display: inline-block;
  margin-bottom: 5px;
  position: relative;
  padding-bottom: 10px;
}

.approach-header .approach-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background-color: #FF7443;
}

.approach-header h2 {
  font-size: 48px;
  font-weight: 700;
  margin: 15px 0 20px;
  color: #fff;
}

.approach-header p {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.6;
  color: #ccc;
  margin: 0 auto;
}

.approach-carousel {
  position: relative;
  width: 100%;
  max-width: 1120px; /* Exactly 3 cards (3*360) + 2 gaps (2*20) */
  margin: 0 auto;
  overflow: hidden;
  padding: 0; /* Removing padding ensures perfect center math */
}

.approach-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease-out;
  padding: 20px 0;
  width: max-content; /* Prevent children from affecting track width calculation */
}

.approach-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px 40px; /* Reduced top/bottom padding for tighter fit */
  width: 360px;
  flex-basis: 360px;
  flex-shrink: 0;
  color: #1a1a1a;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
  height: auto; /* Fully adjustable to content */
  display: flex;
  flex-direction: column;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.approach-card:active {
  cursor: grabbing;
}

.approach-icon {
  font-size: 40px;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.approach-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.approach-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #444;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #333;
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background-color: #FF7443;
  transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
  .approach-section {
    padding: 40px 0;
  }
  .approach-header h2 {
    font-size: 38px;
  }
  .approach-carousel {
    max-width: 780px; /* 380 * 2 + 20 gap = 780px. Perfectly centers 2 cards */
    padding: 0;
  }
  .approach-card {
    width: 380px;
    flex-basis: 380px;
    height: auto; /* Removed fixed height for tablet */
  }
}

@media (max-width: 768px) {
  .approach-section {
    padding: 50px 0;
  }
  .approach-header h2 {
    font-size: 32px;
  }
  .approach-carousel {
    max-width: 700px; /* 340 * 2 + 20 gap = 700px. Perfectly centers 2 cards on iPad mini */
    padding: 0;
  }
  .approach-card {
    width: 340px;
    flex-basis: 340px;
    padding: 35px 25px;
    height: auto;
    min-height: 450px;
  }
}

@media (max-width: 576px) {
  .approach-section {
    padding: 40px 0;
  }
  .approach-header h2 {
    font-size: 22px;
  }
  .approach-carousel {
    max-width: 300px; /* Reduced width slightly for better fit on very small screens */
    padding: 0;
  }
  .approach-card {
    width: 300px;
    flex-basis: 300px;
    padding: 25px 20px;
    min-height: 0; /* Removed fixed minimum height */
  }
  .approach-icon {
    font-size: 32px;
    margin-bottom: 15px;
  }
  .approach-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .approach-card p {
    font-size: 13px;
    line-height: 1.5; /* Tightened line height to reduce vertical length */
  }
}

/* ==========================================================================
   Our Drivers Section
   ========================================================================== */
.drivers-section {
  padding: 50px 0;
  background-color: #fbfbfb; /* Very light gray, assuming from image context */
}

.drivers-wrapper {
  display: flex;
  gap: 60px;
  align-items: center;
}

/* Info Left Side */
.drivers-info {
  flex: 1;
  max-width: 450px;
}

.drivers-subtitle {
  font-size: 14px;
  font-weight: 500;
  color: #666; /* Subdued color before heading */
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
}

.drivers-subtitle::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -15px; /* Distance from text */
  width: 40px;   /* Length of underline */
  height: 2px;
  background-color: #333; /* Dark underline as per image */
}

.drivers-info h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
  line-height: 1.2;
}

.drivers-info p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 20px;
}

/* Grid Right Side */
.drivers-grid {
  flex: 1.5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.driver-card {
  background: #fff;
  border-radius: 4px; /* Slight bevel */
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08); /* Soft diffuse shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.driver-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0,0,0,0.12);
}

.driver-img {
  width: 100%;
  aspect-ratio: 3/4; /* Matches portrait style */
  overflow: hidden;
  background: #2a2a2a; /* Fallback for missing images */
}

.driver-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.driver-card:hover .driver-img img {
  transform: scale(1.05); /* Gentle zoom on hover */
}

.driver-content {
  padding: 30px 20px;
  text-align: center;
}

.driver-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.driver-content p {
  font-size: 12px;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

/* Responsive Drivers Section */
@media (max-width: 1024px) {
  .drivers-wrapper {
    gap: 40px;
  }
  .drivers-info {
    max-width: 350px;
  }
  .drivers-info h2 {
    font-size: 40px;
  }
}

@media (max-width: 900px) {
  .drivers-wrapper {
    flex-direction: column;
    /* text-align: center; Removed to allow left alignment on mobile */
  }
  .drivers-info {
    max-width: 100%;
    margin-bottom: 40px;
  }
  .drivers-subtitle::after {
    left: 0;
    transform: none;
  }
}

@media (max-width: 600px) {
  .drivers-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .driver-img {
    aspect-ratio: auto;
    height: 400px; /* Fixed height for mobile to avoid giant portraits */
  }
  .drivers-info h2 {
    font-size: 32px;
  }
}
/* Mobile Layout Fix - Our Drivers Section */
@media (max-width: 600px) {
  .drivers-info {
    text-align: left;
    position: relative;
    padding-bottom: 35px;
  }
  .drivers-subtitle {
    display: none;
  }
  .drivers-info > h2 {
    font-size: 32px;
    margin-bottom: 18px;
  }
  .drivers-info > p {
    font-size: 14px;
    line-height: 1.65;
    color: #444;
    margin-bottom: 0;
  }
}

/* ==========================================================================
   Client Testimonials Section
   ========================================================================== */
.testimonials-section {
  padding: 100px 0 80px;
  background: #fff;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-subtitle {
  font-size: 14px;
  color: #888;
  display: block;
  margin-bottom: 25px;
  position: relative;
}

.testimonials-subtitle::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: 40px;
  height: 2px;
  background: #1a1a1a;
}

.testimonials-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

/* Carousel viewport - clipping window */
.testimonials-viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  padding: 20px 0;
}

.testimonials-viewport:active {
  cursor: grabbing;
}

/* Track holds all cards in a row */
.testimonials-track {
  display: flex;
  gap: 30px;
  width: max-content;
  transition: transform 0.5s ease-out;
}

/* Individual card: split image left, text right */
.testimonial-card {
  display: flex;
  width: 780px;
  min-height: 380px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.09);
  overflow: hidden;
  flex-shrink: 0;
  user-select: none;
  -webkit-user-select: none;
}

.testimonial-img {
  width: 340px;
  flex-shrink: 0;
  overflow: hidden;
  background: #2a2a2a;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-img img {
  transform: scale(1.04);
}

.testimonial-body {
  flex: 1;
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-body h4 {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 6px;
}

.testimonial-body span {
  font-size: 13px;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* Navigation Dots */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

.t-dot.active {
  background-color: #FF7443;
  transform: scale(1.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .testimonial-card {
    width: 650px;
    min-height: 320px;
  }
  .testimonial-img {
    width: 260px;
  }
  .testimonials-header h2 {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .testimonials-section {
    padding: 70px 0 60px;
  }
  .testimonials-header h2 {
    font-size: 32px;
  }
  .testimonial-card {
    flex-direction: column;
    width: 340px;
    min-height: auto;
  }
  .testimonial-img {
    width: 100%;
    height: 260px;
  }
  .testimonial-body {
    padding: 30px 25px;
  }
  .testimonial-text {
    font-size: 14px;
  }
  .testimonial-body h4 {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .testimonial-card {
    width: 290px;
  }
  .testimonial-img {
    height: 220px;
  }
}

/* ==========================================================================
   Testimonials Section - Full Overhaul (Minimalist, Rectangular, Fixed)
   ========================================================================== */
.testimonials-section {
  padding: 100px 0 80px;
  background: #f8f8f8;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  padding: 0 40px;
  margin-bottom: 55px;
}

.testimonials-subtitle {
  font-size: 13px;
  color: #999;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 30px;
  position: relative;
}

.testimonials-subtitle::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -14px;
  width: 35px;
  height: 1px;
  background: #888;
}

.testimonials-header h2 {
  font-size: 46px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.5px;
  margin: 0;
}

/* ---- Viewport: acts as the visible window with EQUAL side padding ---- */
.testimonials-viewport {
  overflow: hidden;
  width: 100%;
  padding: 20px 60px; /* Equal equal left/right buffer ensures no card clips at edges */
  box-sizing: border-box;
  cursor: grab;
}

.testimonials-viewport.is-dragging {
  cursor: grabbing;
}

/* ---- Track: horizontal row of cards ---- */
.testimonials-track {
  display: flex;
  gap: 28px;
  width: max-content;
  /* No transition here - JS handles it */
}

/* ---- Card: RECTANGULAR - consistent width x height ---- */
.testimonial-card {
  display: flex;
  width: 820px;       /* Fixed wide rectangle */
  height: 340px;      /* Fixed rectangle height */
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  /* Stop browser from dragging images/text */
  user-select: none;
  -webkit-user-select: none;
  pointer-events: auto;
}

/* Prevent browser ghost-drag on ALL children */
.testimonial-card * {
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}

/* ---- Image side: square chunk on left ---- */
.testimonial-img {
  width: 280px;
  min-width: 280px;
  height: 100%;
  overflow: hidden;
  background: #1e1e1e;
  flex-shrink: 0;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  draggable: false;
}

/* ---- Text side ---- */
.testimonial-body {
  flex: 1;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 3px solid #FFDE00;
}

.testimonial-text {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 24px;
  font-style: italic;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-body h4 {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-bottom: 4px;
}

.testimonial-body > span {
  font-size: 12px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Dots ---- */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  padding: 0 60px;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
}

.t-dot.active {
  background: #FF7443;
  transform: scale(1.4);
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .testimonial-card {
    width: 700px;
    height: 320px;
  }
  .testimonial-img {
    width: 240px;
    min-width: 240px;
  }
  .testimonials-header h2 { font-size: 38px; }
}

@media (max-width: 900px) {
  .testimonials-viewport { padding: 20px 30px; }
  .testimonials-dots { padding: 0 30px; }
  .testimonial-card {
    width: 600px;
    height: 300px;
  }
  .testimonial-img {
    width: 200px;
    min-width: 200px;
  }
  .testimonial-body { padding: 28px 24px; }
  .testimonials-header h2 { font-size: 34px; }
}

@media (max-width: 700px) {
  .testimonials-viewport { padding: 20px 20px; }
  .testimonials-dots { padding: 0 20px; }
  /* Stack vertically on mobile */
  .testimonial-card {
    flex-direction: column;
    width: 320px;
    height: auto;
    min-height: unset;
  }
  .testimonial-img {
    width: 100%;
    min-width: unset;
    height: 200px;
  }
  .testimonial-body {
    padding: 25px 20px;
    border-left: none;
    border-top: 3px solid #FF7443;
  }
  .testimonials-header h2 { font-size: 28px; }
  .testimonial-text { font-size: 13px; }
}

@media (max-width: 420px) {
  .testimonial-card { width: 280px; }
  .testimonial-img { height: 170px; }
}

/* Testimonials viewport - CORRECTED side spacing to match Our Approach section */
.testimonials-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 80px;
  box-sizing: border-box;
  cursor: grab;
}

.testimonials-viewport.is-dragging {
  cursor: grabbing;
}

.testimonials-dots {
  padding: 0 80px;
  max-width: 1100px;
  margin: 36px auto 0;
  display: flex;
  justify-content: center;
  gap: 8px;
}

@media (max-width: 900px) {
  .testimonials-viewport {
    padding: 20px 40px;
    max-width: 100%;
  }
  .testimonials-dots {
    padding: 0 40px;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .testimonials-viewport {
    padding: 20px 20px;
  }
  .testimonials-dots {
    padding: 0 20px;
  }
}

/* ==========================================================================
   Testimonials - COMPLETE FINAL REWRITE
   One card, cleanly centered, equal side margins, no ugly bleeds
   ========================================================================== */
.testimonials-section {
  padding: 50px 0 50px;
  background: #f7f7f7;
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 55px;
  padding: 0 20px;
}

.testimonials-subtitle {
  font-size: 13px;
  color: #999;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 28px;
  position: relative;
}

.testimonials-subtitle::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -12px;
  width: 30px;
  height: 1px;
  background: #888;
}

.testimonials-header h2 {
  font-size: 44px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.5px;
  margin: 0;
}

/* ---- Viewport: clips overflow, no horizontal padding ---- */
.testimonials-viewport {
  overflow: hidden;
  width: 100%;
  cursor: grab;
  position: relative;
}

.testimonials-viewport.is-dragging {
  cursor: grabbing;
}

/* ---- Track: row of cards ---- */
.testimonials-track {
  display: flex;
  gap: 30px;
  width: max-content;
  /* Padding-left offsets track so active card appears centered */
  padding-left: 0;
}

/* ---- Card: fills available width minus equal side margins ---- */
.testimonial-card {
  /* Use calc to make card = page width minus equal margins on each side */
  width: calc(100vw - 160px);
  max-width: 900px;
  height: 360px;
  display: flex;
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
  flex-shrink: 0;
  user-select: none;
  -webkit-user-select: none;
}

/* Prevent browser ghost-drag */
.testimonial-card img,
.testimonial-card * {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
  pointer-events: none;
}

/* ---- Image side ---- */
.testimonial-img {
  width: 310px;
  min-width: 310px;
  height: 100%;
  overflow: hidden;
  background: #1e1e1e;
  flex-shrink: 0;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ---- Text side ---- */
.testimonial-body {
  flex: 1;
  padding: 45px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 3px solid #FFDE00;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  font-style: italic;
  margin-bottom: 28px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.testimonial-body h4 {
  font-size: 20px;
  font-weight: 700;
  color: #111;
  margin-bottom: 5px;
}

.testimonial-body > span {
  font-size: 12px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- Dots ---- */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto !important;
}

.t-dot.active {
  background: #FF7443;
  transform: scale(1.4);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .testimonial-card {
    width: calc(100vw - 100px);
    height: 320px;
  }
  .testimonial-img {
    width: 250px;
    min-width: 250px;
  }
  .testimonials-header h2 { font-size: 36px; }
}

@media (max-width: 768px) {
  .testimonials-section { padding: 70px 0 60px; }
  .testimonials-header h2 { font-size: 30px; }
  .testimonial-card {
    width: calc(100vw - 60px);
    height: auto;
    flex-direction: column;
  }
  .testimonial-img {
    width: 100%;
    min-width: unset;
    height: 220px;
  }
  .testimonial-body {
    padding: 28px 24px;
    border-left: none;
    border-top: 3px solid #FF7443;
  }
  .testimonial-text { font-size: 14px; }
}

@media (max-width: 480px) {
  .testimonial-card { width: calc(100vw - 40px); }
  .testimonial-img { height: 180px; }
}

/* ============================================================
   Testimonials - FINAL RESPONSIVE OVERRIDES
   Mobile-first: image full-width on top, text below
   ============================================================ */

/* Mobile (up to 768px) */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0 50px;
  }
  .testimonials-header h2 {
    font-size: 28px;
  }
  .testimonials-header {
    padding: 0 20px;
    margin-bottom: 35px;
  }
  /* Stack card vertically */
  .testimonial-card {
    flex-direction: column !important;
    width: calc(100vw - 40px) !important;
    height: auto !important;
    min-height: unset !important;
  }
  /* Image fills full width on mobile - proper visible size */
  .testimonial-img {
    width: 100% !important;
    min-width: unset !important;
    height: 260px !important;
    flex-shrink: 0;
  }
  .testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  /* Text section below image */
  .testimonial-body {
    width: 100% !important;
    padding: 28px 22px !important;
    border-left: none !important;
    border-top: 3px solid #FFDE00;
    box-sizing: border-box;
  }
  .testimonial-text {
    font-size: 13.5px;
    line-height: 1.7;
    -webkit-line-clamp: 7;
  }
  .testimonial-body h4 {
    font-size: 17px;
  }
  .testimonial-body > span {
    font-size: 11px;
  }
  .testimonials-dots {
    margin-top: 28px;
  }
}

/* Small mobile (up to 480px) */
@media (max-width: 480px) {
  .testimonial-card {
    width: calc(100vw - 30px) !important;
  }
  .testimonial-img {
    height: 220px !important;
  }
  .testimonials-header h2 {
    font-size: 24px;
  }
}

/* Tablet (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .testimonials-section {
    padding: 80px 0 60px;
  }
  .testimonials-header h2 {
    font-size: 36px;
  }
  .testimonial-card {
    width: calc(100vw - 100px) !important;
    height: 310px !important;
  }
  .testimonial-img {
    width: 240px !important;
    min-width: 240px !important;
    height: 100% !important;
  }
  .testimonial-body {
    padding: 30px 28px !important;
  }
  .testimonial-text {
    font-size: 13.5px;
  }
}

/* ============================================================
   Testimonials - FINAL CENTERING FIX (overrides all previous)
   Clear conflicting viewport padding, rely entirely on JS centerMargin()
   ============================================================ */

/* Reset viewport to zero padding - JS handles centering offset */
.testimonials-viewport {
  overflow: hidden !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  cursor: grab;
  box-sizing: border-box;
}

.testimonials-viewport.is-dragging { cursor: grabbing; }

/* Track: add initial breathing room so first card is not flush-left */
.testimonials-track {
  display: flex !important;
  gap: 28px !important;
  width: max-content !important;
}

/* Desktop: card leaves ~80px gap on each side */
.testimonial-card {
  width: calc(100vw - 160px) !important;
  max-width: 900px !important;
  height: 360px !important;
  flex-shrink: 0 !important;
}

/* Tablet */
@media (max-width: 1024px) {
  .testimonial-card {
    width: calc(100vw - 100px) !important;
    height: 320px !important;
    max-width: 100% !important;
  }
}

/* Mobile: 20px breathing room each side */
@media (max-width: 768px) {
  .testimonials-section { padding: 60px 0 50px; }
  .testimonials-header { padding: 0 20px; margin-bottom: 35px; }
  .testimonials-header h2 { font-size: 28px; }

  .testimonial-card {
    /* 20px each side = 40px total gap */
    width: calc(100vw - 40px) !important;
    height: auto !important;
    flex-direction: column !important;
    max-width: 100% !important;
    min-height: unset !important;
  }
  .testimonial-img {
    width: 100% !important;
    min-width: unset !important;
    height: 260px !important;
  }
  .testimonial-body {
    padding: 28px 22px !important;
    border-left: none !important;
    border-top: 3px solid #FFDE00;
    width: 100% !important;
    box-sizing: border-box;
  }
}

@media (max-width: 480px) {
  .testimonial-card { width: calc(100vw - 30px) !important; }
  .testimonial-img  { height: 220px !important; }
}

/* Dots - reset conflicting padding */
.testimonials-dots {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 32px !important;
  padding: 0 !important;
  max-width: 100% !important;
}

/* ===================================================================
   Testimonials - FINAL SCROLL-SNAP APPROACH (browser centers natively)
   scroll-padding-inline ensures equal side margins on every device
   =================================================================== */
.testimonials-viewport {
  overflow-x: auto !important;
  overflow-y: hidden !important;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none !important;
  scroll-snap-type: x mandatory !important;
  /* scroll-padding = how much space browser leaves each side when snapping */
  scroll-padding-inline: 20px !important;
  padding: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  cursor: grab !important;
  box-sizing: border-box;
}

.testimonials-viewport::-webkit-scrollbar {
  display: none !important;
}

.testimonials-viewport.is-dragging {
  cursor: grabbing !important;
}

.testimonials-track {
  display: flex !important;
  gap: 20px !important;
  width: max-content !important;
  padding: 20px 20px !important; /* 20px left/right so first and last cards have breathing room */
}

/* Card uses scroll-snap-align: center so browser centers it perfectly */
.testimonial-card {
  scroll-snap-align: center !important;
  flex-shrink: 0 !important;
  width: calc(100vw - 40px) !important; /* 20px gap each side */
  max-width: 900px !important;
  height: 360px !important;
  display: flex !important;
  background: #fff !important;
  border-radius: 6px !important;
  border: 1px solid rgba(0,0,0,0.07) !important;
  overflow: hidden !important;
  user-select: none !important;
  -webkit-user-select: none !important;
}

/* Mobile stacked */
@media (max-width: 768px) {
  .testimonials-section { padding: 30px 0 50px; }
  .testimonials-header h2 { font-size: 28px; }
  .testimonial-card {
    width: calc(100vw - 40px) !important;
    height: auto !important;
    flex-direction: column !important;
    max-width: 100% !important;
  }
  .testimonial-img {
    width: 100% !important;
    min-width: unset !important;
    height: 260px !important;
  }
  .testimonial-body {
    padding: 28px 22px !important;
    border-left: none !important;
    border-top: 3px solid #FF7443 !important;
  }
}

@media (max-width: 480px) {
  .testimonial-card { width: calc(100vw - 30px) !important; }
  .testimonial-img  { height: 220px !important; }
}

/* Tablet */
@media (min-width: 769px) and (max-width: 1024px) {
  .testimonials-viewport {
    scroll-padding-inline: 50px !important;
  }
  .testimonials-track {
    padding: 20px 50px !important;
  }
  .testimonial-card {
    width: calc(100vw - 100px) !important;
    height: 320px !important;
  }
  .testimonial-img {
    width: 240px !important;
    min-width: 240px !important;
    height: 100% !important;
  }
}

/* Desktop */
@media (min-width: 1025px) {
  .testimonials-viewport {
    max-width: 1200px !important;
    margin: 0 auto !important;
    scroll-padding-inline: calc(50% - 450px) !important;
  }
  .testimonials-track {
    padding: 20px calc(50% - 450px) !important;
  }
  .testimonial-card {
    width: 900px !important;
    max-width: 900px !important;
    height: 360px !important;
  }
  .testimonial-img {
    width: 310px !important;
    min-width: 310px !important;
    height: 100% !important;
  }
}

/* Dots */
.testimonials-dots {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 32px !important;
  padding: 0 !important;
}


