: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;
}

.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;
  -webkit-backdrop-filter: blur(10px);
  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: block !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 {
  color: var(--primary-orange);
  font-size: 2rem; 
}

.logo-accent {
  color: var(--primary-orange);
}

.nav-menu {
  display: flex;
  gap: var(--space-32);
  align-items: center;
  margin-left: auto;
}

.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);
}

/* Mega Menu Styles */
.nav-dropdown {
  position: static; /* Relative to nav-container/navbar */
}

.nav-link i {
  font-size: 0.8em;
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-link i {
  transform: rotate(180deg);
}

/* Mobile responsive menu update */
@media (max-width: 991px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    padding: 50px 40px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .company-logo {
    height: 40px;
  }

  .nav-link {
    color: var(--primary-black);
  }

  .nav-link {
      font-size: 1.2rem;
      width: 100%;
  }

  .nav-dropdown {
    width: 100%;
  }

  .hamburger {
    display: flex;
  }
}

.hamburger {
  display: none;
}

.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);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 50px;
  background: linear-gradient(135deg, var(--skin-bg) 0%, #FFF8F5 50%, var(--skin-bg) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23FF6B35" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%23FF6B35" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-20);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-32);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  animation: fadeInLeft 1s ease-out;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--font-weight-bold);
  line-height: 1.2;
  margin-bottom: var(--space-24);
  color: var(--primary-black);
}

.hero-description {
  font-size: var(--font-size-lg);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-32);
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: var(--space-16);
  flex-wrap: wrap;
}

.hero-image {
  animation: fadeInRight 1s ease-out;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-orange);
  animation: float 6s ease-in-out infinite;
}

.hero-stats {
  width: 100%;
  background-color: #000;
  padding: 20px 0;
  margin: var(--space-32) 0 0;
  position: relative;
  z-index: 1;
}

.hero-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-20);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-24);
}

.stat {
  text-align: center;
  padding: var(--space-16) var(--space-24);
  background: #111111;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
}

.stat:hover {
  transform: translateY(-5px);
  background: #1a1a1a;
  border-color: #FF6B35;
}

.stat-number {
  display: block;
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-bold);
  color: #FF6B35;
  margin-bottom: var(--space-8);
}

.stat-label {
  color: #ffffff;
  font-weight: var(--font-weight-medium);
}

/* Sections */
section {
  padding: 40px 0;
  position: relative;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-20);
}

.section-header {
  text-align: center;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: var(--font-weight-bold);
  color: var(--primary-black);
  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;
}

/* About Section */
.about {
  background: var(--color-white);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-32);
  align-items: center;
}

.about-text h3 {
  font-size: var(--font-size-2xl);
  color: var(--primary-black);
  margin-bottom: var(--space-20);
}

.about-text p {
  margin-bottom: var(--space-20);
  color: var(--color-text-secondary);
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-16);
  margin-top: var(--space-32);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  padding: var(--space-16);
  background: var(--primary-orange-light);
  border-radius: var(--radius-base);
}

.feature-item i {
  color: var(--primary-orange);
  font-size: var(--font-size-xl);
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* Services Section */
.services {
  background: var(--skin-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-24);
}

.service-card {
  background: var(--color-white);
  padding: var(--space-32);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transition: left 0.3s ease;
}

.service-card:hover::before {
  left: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-orange);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-20);
  margin: 0 auto var(--space-20);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  background: var(--primary-orange);
  color: white;
  transform: scale(1.1);
}

.service-icon i {
  font-size: var(--font-size-2xl);
  color: var(--primary-orange);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon i {
  color: white;
}

.service-card h3 {
  font-size: var(--font-size-xl);
  color: var(--primary-black);
  margin-bottom: var(--space-16);
}

.service-card p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-20);
}

.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);
}

/* Projects Section */
.projects {
  background: var(--color-white);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-24);
}

.project-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.project-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-overlay {
  position: absolute;
  top: var(--space-16);
  left: var(--space-16);
}

.project-category {
  background: var(--primary-orange);
  color: white;
  padding: var(--space-4) var(--space-12);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}

.project-content {
  padding: var(--space-24);
}

.project-content h3 {
  font-size: var(--font-size-xl);
  color: var(--primary-black);
  margin-bottom: var(--space-12);
}

.project-content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-16);
}

.project-stats {
  display: flex;
  gap: var(--space-16);
  flex-wrap: wrap;
}

.project-stats .stat {
  background: var(--primary-orange-light);
  color: var(--primary-orange);
  padding: var(--space-6) var(--space-12);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}

/* Team Section */
.team {
  background: var(--skin-bg);
}

.swiper {
  padding-bottom: 50px !important;
}

.team-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-32);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-image {
  margin-bottom: var(--space-24);
}

.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-card:hover .team-photo {
  background: var(--primary-orange);
  color: white;
}

.team-photo i {
  font-size: 3rem;
  color: var(--primary-orange);
  transition: var(--transition-smooth);
}

.team-card:hover .team-photo i {
  color: white;
}

.team-content h3 {
  font-size: var(--font-size-xl);
  color: var(--primary-black);
  margin-bottom: var(--space-8);
}

.team-role {
  color: var(--primary-orange);
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-16);
}

.team-description {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-20);
}

.team-social {
  display: flex;
  justify-content: center;
  gap: var(--space-12);
}

.team-social a {
  width: 40px;
  height: 40px;
  background: var(--primary-orange-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-orange);
  transition: var(--transition-smooth);
}

.team-social a:hover {
  background: var(--primary-orange);
  color: white;
}

/* Swiper customization */
.swiper-pagination-bullet {
  background: var(--primary-orange) !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-orange) !important;
}

/* Blog Section */
.blog {
  background: var(--color-white);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: var(--space-24);
}

.blog-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: var(--space-16);
  left: var(--space-16);
  background: var(--primary-orange);
  color: white;
  padding: var(--space-4) var(--space-12);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
}

.blog-content {
  padding: var(--space-24);
}

.blog-meta {
  margin-bottom: var(--space-12);
}

.blog-date {
  color: var(--color-text-secondary);
  font-size: var(--font-size-sm);
}

.blog-content h3 {
  font-size: var(--font-size-xl);
  color: var(--primary-black);
  margin-bottom: var(--space-12);
  line-height: 1.3;
}

.blog-content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-16);
}

.blog-btn {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
  transition: var(--transition-smooth);
}

.blog-btn:hover {
  color: var(--primary-orange-hover);
}

/* Contact Section */
.contact {
  background: var(--skin-bg);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-32);
  align-items: start;
  grid-template-columns: 1fr 1fr;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 400px;
}

.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);
}

.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;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
}

.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-24);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  margin-bottom: var(--space-20);
}

.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: 20px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-32);
  margin-bottom: var(--space-32);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.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) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-image {
    order: -1;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-24);
  }
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .contact-map {
    height: 300px;
  }

@media (max-width: 768px) {
    .nav-link{
        font-size: 2rem;
    }

  .company-logo {
    height: 50px;
  }
  
  .hamburger {
    display: flex;
  }
  
  .hero-stats-inner {
    grid-template-columns: 1fr;
  }
  
  .services-grid,
  .projects-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
  
  .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 {
    padding: 125px 0 30px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-buttons .btn {
    flex: 1;
    min-width: 140px;
  }
  
  section {
    padding: 10px 0;
  }
  
  .service-card,
  .contact-form-wrapper {
    padding: var(--space-20);
  }
  
  .team-card {
    padding: var(--space-20);
  }
}

/* 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);
  color: #FF7545;
  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); }
}

/* Challenges Section */
.challenges {
  background-color: #000000 !important;
  padding: 80px 0;
  margin-top: -2px !important;
  position: relative;
  z-index: 2;
}

.challenges .section-header h2 {
  color: #ffffff !important;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.challenges .section-header p {
  color: #a7a9a9 !important;
  font-size: 1rem;
  max-width: 1300px;
  margin: 0 auto 50px;
  line-height: 1.65;
  text-align: center;
  padding: 0 20px;
}

.challenges .section-header h2 .highlight {
  color: #ff5e3a !important; /* Premium brand orange/coral */
}

.challenges-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.challenge-card {
  background-color: #ffffff !important;
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.challenge-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #ff5e3a, #ff9e80);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 2;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.challenge-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(255, 94, 58, 0.25);
}

.challenge-card:hover::before {
  transform: scaleX(1);
}

.challenge-quote {
  font-size: 48px;
  font-family: Georgia, serif;
  color: #ff5e3a !important;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: bold;
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.4s ease;
  transform-origin: left bottom;
}

.challenge-card:hover .challenge-quote {
  transform: scale(1.2) rotate(-8deg);
  color: #ff9e80 !important;
}

.challenge-card h3 {
  color: #1f2121 !important;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.challenge-card:hover h3 {
  color: #ff5e3a !important;
}

.challenge-card p {
  color: #5e6c71 !important;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Responsive Styles for Challenges Section */
@media (max-width: 991px) {
  .challenges {
    padding: 60px 0;
  }
  .challenges .section-header h2 {
    font-size: 2.4rem;
  }
  .challenges .section-header p {
    font-size: 1.05rem;
    margin-bottom: 40px;
  }
  .challenges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 767px) {
  .challenges {
    padding: 50px 0;
  }
  .challenges .section-header h2 {
    font-size: 2rem;
  }
  .challenges .section-header p {
    font-size: 0.95rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  .challenges-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .challenge-card {
    padding: 25px 20px;
  }
}

/* --- GIANT FOOTER HERO TEXT GLOW --- */
/* Shery JS mouse follower size override - HIDDEN AS REQUESTED */
.mousefollower {
    display: none !important;
    opacity: 0 !important;
}

/* Container to keep it centered and handle overflow */
.footer-hero-container {
    width: 100%;
    padding: 0.5rem 0; 
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: transparent; 
}
/* Base text styling (Outlined text) */
.footer-hero-text {
    
    font-size: clamp(3rem, 14.8vw, 12rem); 
    letter-spacing: -0.01em; 
    font-weight: 800;
    font-family: 'Space Grotesk', sans-serif !important;
    color: transparent; /* Hide normal fill */
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3); /* The white outline */
    line-height: 1.1;
    display: inline-block;
    cursor: none; /* Hide default cursor */
    margin: 0;
    text-transform: uppercase;
    text-align: center;
    white-space: nowrap;
    -webkit-user-select: none;
    user-select: none;
    position: relative;
    animation: textPulse 3s infinite ease-in-out; 
}

/* Subtle breathing animation */
@keyframes textPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Spotlight Glowing Mask Effect (The colorful inner part) */
.footer-hero-text::before {
    content: "YOURADSMATE"; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    
    /* Radial gradient mapping to Javascript cursor coordinates using brand ORANGE */
    background: radial-gradient(circle 120px at var(--glow-x, -500px) var(--glow-y, -500px), #FF6B35 0%, #e55a27 70%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-stroke: 0px;
    pointer-events: none; 
    
    /* Colored neon drop shadow */
    filter: drop-shadow(0 0 12px rgba(255, 107, 53, 0.7));
    transition: background 0.1s ease; 
}

/* Mobile & Tablet Specific Adjustments */
@media (max-width: 768px) {
    .footer-hero-text {
        font-size: clamp(2.5rem, 13vw, 4rem); 
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4); 
    }
}

/* --- SMALL LOGO TEXT GLOW --- */
.footer-logo .logo-text {
    position: relative; 
    display: inline-block;
    cursor: none;
    -webkit-user-select: none;
    user-select: none;
}

.footer-logo .logo-text::before {
    content: "YourAdsMate"; 
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: transparent;
    
    /* White radial gradient spotlight over the orange text */
    background: radial-gradient(circle 60px at var(--glow-x, -500px) var(--glow-y, -500px), rgba(255,255,255,1) 0%, rgba(255,255,255,0.2) 60%, transparent 100%);
    -webkit-background-clip: text;
    background-clip: text;
    pointer-events: none;
    
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
    transition: background 0.1s ease; 
}

/* Client Reviews Section */
.client-reviews {
    background: #0a0a0a;
    padding: 80px 0;
    overflow: hidden;
}

.client-reviews .dark-header h2,
.client-reviews .dark-header p {
    color: #ffffff;
}

.client-reviews-swiper {
    padding: 40px 0 60px 0;
    width: 100%;
}

.video-card {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: #111;
}

.video-card iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-card:hover {
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(255, 87, 34, 0.2);
    border-color: rgba(255, 87, 34, 0.5);
}

.client-reviews .swiper-pagination-bullet {
    background: #555;
    opacity: 1;
}

.client-reviews .swiper-pagination-bullet-active {
    background: #ff5722;
}

.client-reviews .sub-heading-purple {
    color: #9b59b6;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.client-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
    padding-left: 10px;
}
.client-profile .profile-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}
.client-profile .profile-info {
    text-align: left;
}
.client-profile .profile-info h5 {
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 2px 0;
}
.client-profile .profile-info p {
    color: #aaaaaa;
    font-size: 13px;
    margin: 0;
}
.swiper-nav-wrapper {
    position: relative;
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    padding-right: 20px;
    margin-top: 20px;
}
.custom-swiper-prev, .custom-swiper-next {
    position: static !important;
    width: 40px !important;
    height: 40px !important;
    background: #ff5722;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0 !important;
    transition: background 0.3s;
}
.custom-swiper-prev:hover, .custom-swiper-next:hover {
    background: #e64a19;
}
.custom-swiper-prev::after, .custom-swiper-next::after {
    font-size: 16px !important;
    color: #ffffff;
    font-weight: bold;
}
@media (max-width: 768px) {
    .client-reviews {
        padding: 50px 0;
    }
    .video-card {
        border-radius: 16px;
    }
    .client-reviews-swiper {
        padding: 20px 0 40px 0;
    }
    .client-profile {
        justify-content: center;
        padding-left: 0;
    }
    .client-profile .profile-info {
        text-align: left;
    }
}


/* Extracted Clients Grid Section CSS */
/* ═══════════════════════════════════════════════════════════
   CLIENTS GRID SECTION
═══════════════════════════════════════════════════════════ */
.clients-grid-section {
  width: 100%;
  padding: 10px 24px;
  background: var(--black);
  display: flex;
  justify-content: center;
}

.cg-container {
  max-width: 1200px;
  width: 100%;
}

.cg-top-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;

  text-align: center;
  flex-wrap: nowrap;
}

.cg-top-logo {
  max-width: 240px;
  height: auto;
  object-fit: contain;
}

.cg-top-title {
  
  font-weight: 700;
  font-size: 2.8rem;
  color: var(--white);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}

.cg-top-highlight {
  color: #CC5327;
}

@media (max-width: 768px) {
  .cg-top-header {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 10px;
  }
  .cg-top-title {
    font-size: 1.6rem;
  }
  .cg-top-logo {
    max-width: 200px;
  }
}

.cg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.cg-card {
  background: #0a0a0a;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.cg-card:hover {
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-4px);
}

.cg-card img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.cg-card:hover img {
  opacity: 1;
}

.cg-card img[src*="logo ambala"] {
  transform: scale(1.4);
}

.cg-card:hover img[src*="logo ambala"] {
  transform: scale(1.45);
  opacity: 1;
}

.cg-card img[src*="petal smiles"] {
  transform: scale(1.25);
}

.cg-card:hover img[src*="petal smiles"] {
  transform: scale(1.3);
  opacity: 1;
}

.cg-card img[src*="apollo_dental"] {
  transform: scale(1.15);
}

.cg-card:hover img[src*="apollo_dental"] {
  transform: scale(1.2);
  opacity: 1;
}

.cg-card img[src*="ht_media"] {
  transform: scale(1.25);
}

.cg-card:hover img[src*="ht_media"] {
  transform: scale(1.3);
  opacity: 1;
}

.cg-card img[src*="Chai_Hot_Spot"] {
  transform: scale(1.8);
}
.cg-card:hover img[src*="Chai_Hot_Spot"] {
  transform: scale(1.85);
  opacity: 1;
}

.cg-card img[src*="Waydent"] {
  transform: scale(1.5);
}
.cg-card:hover img[src*="Waydent"] {
  transform: scale(1.55);
  opacity: 1;
}

.cg-card img[src*="vishwas"] {
  transform: scale(1.5);
}
.cg-card:hover img[src*="vishwas"] {
  transform: scale(1.55);
  opacity: 1;
}

.cg-placeholder-text {
  
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.25);
  letter-spacing: 1px;
  text-align: center;
  user-select: none;
  transition: color 0.3s ease;
}

.cg-card:hover .cg-placeholder-text {
  color: var(--orange);
}



/* Cut corners using clip-path to match image style */
.clip-top-right {
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 0 100%);
}
.clip-bottom-left {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}
.clip-top-left {
  clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%, 0 30px);
}
.clip-bottom-right {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
}

.cg-header-cell {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 24px;
}

.cg-title {
  
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  color: #FFF;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.cg-pill {
  border: 1px solid var(--orange);
  color: var(--orange);
  padding: 4px 16px;
  border-radius: 20px;
  
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
}

.cg-text-cell {
  grid-column: span 1;
  display: flex;
  align-items: center;
  padding: 16px 24px 16px 0;
}

.cg-text-cell p {
  
  font-size: 0.95rem;
  color: #e6e6e6;
  line-height: 1.6;
}

.cg-action-cell {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}

.cg-button {
  background: var(--orange);
  color: #FFF;
  
  font-weight: 700;
  font-size: 1.5rem;
  padding: 18px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cg-button:hover {
  background: #b54a23;
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 24px rgba(212, 90, 46, 0.4);
}

/* ═══════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .clients-grid-section {
    padding: 60px 20px;
  }
  .cg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cg-header-cell {
    grid-column: span 2;
  }
  .cg-text-cell {
    grid-column: span 2;
    padding: 24px 0;
  }


}

@media (max-width: 768px) {
  .clients-grid-section {
    padding: 40px 16px;
    background: #0A0A0A !important;
  }
  .cg-top-title {
    color: #FFFFFF !important;
    font-size: 1.9rem;
  }
  .cg-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 10px;
  }
  /* Force exact mobile order to match screenshot */
  .cg-grid > :nth-child(2) { order: 1; } /* Header Cell */
  .cg-grid > :nth-child(3) { order: 2; } /* DNUVO */
  .cg-grid > :nth-child(4) { order: 3; } /* Text */
  .cg-grid > :nth-child(5) { order: 4; } /* OnlyYLive */
  .cg-grid > :nth-child(1) { order: 5; } /* Chai */
  .cg-grid > :nth-child(n+6) { order: 6; } /* Rest */
  
  .cg-card {
    height: 120px;
    aspect-ratio: auto;
    padding: 12px;
  }
  .cg-header-cell, .cg-text-cell {
    width: 100%;
  }
  .cg-empty {
    display: none;
  }
  .cg-title {
    font-size: 2.5rem;
  }
  .cg-card img[src*="logo ambala"] {
    transform: scale(4) !important;
  }
  .cg-card img[src*="Waydent"] {
    transform: scale(4) !important;
  }
}
/* ═══════════════════════════════════════════════════════════
   REVIEWS SECTION (Double Marquee)
═══════════════════════════════════════════════════════════ */
.reviews-section {
  width: 100%;
  padding: 80px 0;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}

.reviews-container {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.reviews-section .section-title {
  text-align: center;
  margin-bottom: 10px;
  padding: 0 20px;
}

.reviews-badges {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 20px;
}

.review-badge {
  display: flex;
  align-items: center;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 12px;
  gap: 12px;
}

.google-badge {
  border-color: rgba(66, 133, 244, 0.3);
}

.badge-column-layout {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 16px 24px;
}

.rb-logo-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
}

.rb-icon-svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.rb-brand {
  color: #FFF;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
}

.rb-brand-sub {
  color: #AAA;
  font-weight: 500;
  font-size: 1.25rem;
  margin-left: 2px;
}

.rb-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.rb-score {
  color: #FFF;
  font-weight: 800;
  font-size: 1.2rem;
}

.rb-count {
  color: #888;
  font-size: 0.9rem;
}

.clutch-badge {
  border-color: rgba(212, 90, 46, 0.3);
}

.rb-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.clutch-icon {
  background: #D45A2E;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-weight: 800;
  font-size: 14px;
}

.rb-content {
  display: flex;
  flex-direction: column;
}

.rb-stars {
  font-size: 0.85rem;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.rb-text {
  font-family: 'Inter', sans-serif;
  color: #E0E0E0;
  font-size: 0.9rem;
  font-weight: 600;
}

/* Marquee Logic */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  /* Fade out edges */
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  margin-bottom: 20px;
  padding: 10px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
}

.marquee-left {
  animation: scrollLeft 30s linear infinite;
}

.marquee-right {
  animation: scrollRight 30s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  gap: 20px;
  padding-right: 20px; /* Space between sets */
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Review Card Styling */
.review-card {
  width: 380px;
  background: #0f0504; /* Dark reddish-black from the 2nd image */
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.review-card:hover {
  border-color: rgba(212, 90, 46, 0.3);
  background: #140806;
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(212, 90, 46, 0.15);
}

.rc-user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.rc-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: #222;
  flex-shrink: 0;
}

.rc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rc-info h4 {
  font-family: 'Inter', sans-serif;
  color: #FFF;
  font-size: 1.1rem;
  margin: 0 0 4px 0;
}

.rc-info p {
  font-family: 'Inter', sans-serif;
  color: #888;
  font-size: 0.85rem;
  margin: 0;
}

.rc-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 16px;
}

.rc-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.rc-stars {
  font-size: 0.9rem;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rc-stars span {
  font-family: 'Inter', sans-serif;
  color: #AAA;
  font-size: 0.85rem;
  letter-spacing: 0;
}

.rc-text {
  font-family: 'Inter', sans-serif;
  color: #CCC;
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   OUR PROCESS SECTION


/* ==========================================================================
   OUR PROCESS SECTION
   ========================================================================== */
.process-section {
  width: 100%;
  padding: 80px 24px;
  background: #0A0A0A;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process-container {
  max-width: 1200px;
  width: 100%;
}

.process-title {
  text-align: center;
  margin-bottom: -20px;
  color: #FFFFFF;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
}

.accent-text {
  color: #D45A2E;
}

.timeline-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 100%;
  margin-bottom: -40px;
  padding: 0px 0;
}

.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: #FFF;
  transform: translateY(-50%);
  z-index: 1;
}

.moving-dot {
  position: absolute;
  top: 50%;
  left: 0;
  width: 22px;
  height: 22px;
  background: #D45A2E;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 15px rgba(212, 90, 46, 0.8), 0 0 5px rgba(255, 255, 255, 0.5);
  animation: moveDot 8s linear infinite;
  z-index: 4;
}

@keyframes moveDot {
  0% { left: 0%; opacity: 0; }
  5% { opacity: 1; }
  95% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

.timeline-item {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 240px;
}

.timeline-dot {
  width: 22px;
  height: 22px;
  background: #D45A2E;
  border-radius: 50%;
  margin: 0;
  position: relative;
  z-index: 3;
}

.timeline-top, .timeline-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 250px;
}

.timeline-item.bottom-heavy .timeline-top {
  justify-content: flex-end;
  padding-bottom: 15px;
}

.timeline-item.bottom-heavy .timeline-bottom {
  justify-content: flex-start;
  padding-top: 15px;
}

.timeline-item.top-heavy .timeline-top {
  justify-content: flex-end;
  padding-bottom: 15px;
}

.timeline-item.top-heavy .timeline-bottom {
  justify-content: flex-start;
  padding-top: 15px;
}

.stage-pill {
  background: #D45A2E;
  color: #FFF;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(212, 90, 46, 0.4);
}

.step-card {
  background: #FFF;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  width: 240px;
  box-shadow: 0 0 20px rgba(212, 90, 46, 0.15), 0 0 0 1px rgba(212, 90, 46, 0.5);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(212, 90, 46, 0.3), 0 0 0 1px rgba(212, 90, 46, 0.8);
}

.step-card h3 {
  font-family: 'Inter', sans-serif;
  color: #111;
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.step-card h4 {
  font-family: 'Inter', sans-serif;
  color: #D45A2E;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.step-card p {
  color: #444;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  line-height: 1.4;
}

.tooltip-box {
  background: #111;
  border: 1px solid rgba(212, 90, 46, 0.5);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  width: 240px;
  margin-bottom: 15px;
  position: relative;
  box-shadow: 0 0 30px rgba(212, 90, 46, 0.2);
}

.tooltip-box::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: #111;
  border-right: 1px solid rgba(212, 90, 46, 0.5);
  border-bottom: 1px solid rgba(212, 90, 46, 0.5);
}

.tooltip-box p {
  color: #CCC;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

.tooltip-box .highlight {
  color: #D45A2E;
  font-weight: 600;
}

/* Tablet styles (max-width: 900px) */
@media (max-width: 900px) {

  .reviews-section { padding: 60px 0; }
  .review-card { width: 320px; padding: 20px; }
  .rc-text { font-size: 0.85rem; }

  .process-section {
    padding: 60px 24px;
  }
  .timeline-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 0 20px 10px;
    margin-bottom: 0;
  }
  .timeline-line {
    width: 3px;
    height: 100%;
    left: 20px;
    top: 0;
    transform: none;
  }
  .moving-dot {
    display: none;
  }
  .timeline-item {
    width: 100%;
    align-items: flex-start;
    padding-left: 40px;
    margin-bottom: 40px;
  }
  .timeline-dot {
    position: absolute;
    left: 11px;
    top: 15px;
    margin: 0;
  }
  .timeline-top, .timeline-bottom {
    height: auto;
    min-height: auto;
    width: 100%;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding: 0 !important;
  }
  .timeline-item.bottom-heavy {
    flex-direction: column;
  }
  .timeline-item.top-heavy {
    flex-direction: column-reverse;
  }
  .stage-pill {
    margin-bottom: 12px;
    margin-top: 12px;
    font-size: 0.95rem;
    padding: 6px 18px;
  }
  .step-card {
    width: 100%;
    max-width: 450px;
    text-align: left;
  }
}

/* Mobile styles (max-width: 520px) */
@media (max-width: 520px) {

  .reviews-section { padding: 25px 0; }
  .review-badge { padding: 8px 16px; }
  .rb-stars { font-size: 0.75rem; }
  .rb-text { font-size: 0.8rem; }
  .review-card { width: 350px; padding: 16px; }
  .rc-info h4 { font-size: 1rem; }
  .marquee-wrapper {
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  }

  .process-section {
    padding: 40px 16px;
  }
  .timeline-container {
    padding-left: 0;
    padding-top: 60px;
  }
  .timeline-line {
    left: 10px;
  }
  .timeline-dot {
    left: 1px;
  }
  .timeline-item {
    padding-left: 30px;
    margin-bottom: 30px;
  }
  .step-card {
    padding: 12px 16px;
  }
  .step-card h3 {
  .process-section {
    padding: 40px 16px;
  }
  .timeline-container {
    padding-left: 0;
    padding-top: 60px;
  }
  .timeline-line {
    left: 10px;
  }
  .timeline-dot {
    left: 1px;
  }
  .timeline-item {
    padding-left: 30px;
    margin-bottom: 30px;
  }
  .step-card {
    padding: 12px 16px;
  }
  .step-card h3 {
    font-size: 1.15rem;
  }
  .step-card h4 {
    font-size: 1rem;
  }
  .step-card p {
    font-size: 0.8rem;
  }
}


@media (max-width: 768px) { .footer-legal a { white-space: nowrap; } }

