/**
 * Kelowna Film Studios - Cinema/Film Aesthetic Stylesheet
 * Glass Morphism Design with Professional Film Equipment Styling
 *
 * Features:
 * - Cinema/Film aesthetic with bold white typography
 * - Glass morphism effects (frosted glass, backdrop blur)
 * - Orange lighting accents mimicking film production equipment
 * - Professional, high-end visual design
 * - Responsive design for all breakpoints
 * - Accessibility compliance (WCAG 2.1 AA)
 * - Smooth animations and transitions
 */

/* ============================================================================
   VARIABLES & THEMING - CINEMA/FILM AESTHETIC
   ============================================================================ */

:root {
  /* Cinema Color Palette - Black with Orange Smoke */
  --color-accent: #FF6B35;
  --color-accent-dark: #E55A24;
  --color-accent-light: #FF8B5C;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-dark: #0a0a0a;
  --color-dark-secondary: #1a1a1a;
  --color-gray-700: #2a2a2a;
  --color-gray-600: #3a3a3a;

  /* Glass Morphism */
  --glass-blur: 12px;
  --glass-bg-light: rgba(255, 255, 255, 0.06);
  --glass-bg-lighter: rgba(255, 255, 255, 0.03);
  --glass-border: 1px solid rgba(255, 107, 53, 0.2);

  /* Gradients - Film Lighting Effects with Orange Smoke */
  --gradient-accent: linear-gradient(135deg, #FF6B35, #FF8B5C);
  --gradient-accent-reverse: linear-gradient(315deg, #FF6B35 0%, #FF8B5C 100%);
  --gradient-dark: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  --gradient-film: linear-gradient(180deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 107, 53, 0.08) 100%);

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

  /* Typography */
  --font-family-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-family-serif: 'Georgia', 'Garamond', serif;
  --font-family-mono: 'Monaco', 'Courier New', monospace;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  --font-size-7xl: 4.5rem;

  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* Shadows - Cinema Depth */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px 0 rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 40px 0 rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 30px 60px 0 rgba(0, 0, 0, 0.6);
  --shadow-2xl: 0 40px 80px 0 rgba(0, 0, 0, 0.7);
  --shadow-glow: 0 0 40px rgba(255, 107, 53, 0.2);

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================================================
   GLOBAL STYLES & RESET
   ============================================================================ */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family-sans);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: rgba(255, 255, 255, 0.9);
  background: #0a0a0a !important;
  transition: background-color var(--transition-base);
  position: relative;
  overflow-x: hidden;
}

/* Cinematic background pattern overlay - Orange Smoke Effect */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(255, 107, 53, 0.03) 0%, transparent 60%);
  pointer-events: none;
  z-index: -1;
}

main {
  display: block;
  position: relative;
  z-index: 1;
}

/* ============================================================================
   TYPOGRAPHY
   ============================================================================ */

h1, h2, h3, h4, h5, h6 {
  font-weight: var(--font-weight-extrabold);
  line-height: var(--line-height-tight);
  letter-spacing: -0.02em;
}

h1 {
  font-size: var(--font-size-6xl);
  color: var(--color-white);
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

h2 {
  font-size: var(--font-size-5xl);
  color: var(--color-white);
}

h3 {
  font-size: var(--font-size-3xl);
  color: var(--color-white);
}

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

h5 {
  font-size: var(--font-size-xl);
  color: var(--color-white);
}

h6 {
  font-size: var(--font-size-lg);
  color: var(--color-white);
}

p {
  margin-bottom: var(--spacing-lg);
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all var(--transition-fast);
  border-bottom: 1px solid transparent;
}

a:hover {
  color: var(--color-accent-light);
  border-bottom-color: var(--color-accent);
}

/* ============================================================================
   RESPONSIVE CONTAINERS
   ============================================================================ */

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--spacing-xl);
}

@media (max-width: 1024px) {
  .container {
    max-width: 100%;
    padding: 0 var(--spacing-lg);
  }
}

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

/* ============================================================================
   SECTIONS & SPACING - CINEMA AESTHETIC
   ============================================================================ */

section {
  padding: var(--spacing-4xl) 0;
  border-bottom: none;
  transition: all var(--transition-slow);
  position: relative;
  background: transparent;
}

section:last-of-type {
  border-bottom: none;
}

/* Alternating section styling with glass morphism */
section:nth-of-type(odd) {
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(26, 26, 26, 0.8) 100%),
    radial-gradient(ellipse at 100% 0%, rgba(255, 107, 53, 0.05) 0%, transparent 60%);
}

section:nth-of-type(even) {
  background: transparent;
}

/* Section content wrapper for glass effect */
.section-content {
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 900;
  margin-bottom: var(--spacing-lg);
  color: var(--color-white);
  letter-spacing: -1.5px;
  text-transform: capitalize;
  position: relative;
  padding-bottom: var(--spacing-lg);
  display: inline-block;
  background: linear-gradient(90deg, var(--color-white) 0%, var(--color-accent) 50%, var(--color-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInDown 0.8s ease-out;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 60px;
  background: var(--gradient-accent);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-glow);
}

.section-subtitle {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-2xl);
  max-width: 700px;
  line-height: 1.7;
  font-weight: 300;
}

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

/* ============================================================================
   BUTTONS - CINEMA STYLE
   ============================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-md) var(--spacing-xl);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  border: 2px solid transparent;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(var(--glass-blur));
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform var(--transition-base);
}

.btn:hover::before {
  transform: translateX(100%);
}

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

/* Button Variants */

.btn-primary {
  background: var(--gradient-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md), 0 0 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover:not(:disabled) {
  background: var(--gradient-accent-reverse);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(255, 107, 53, 0.5);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-outline-primary {
  background: transparent;
  color: var(--color-accent);
  border-color: var(--color-accent);
}

.btn-outline-primary:hover:not(:disabled) {
  background: rgba(255, 107, 53, 0.1);
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
}

.btn-outline-white {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-white:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--color-white);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-outline-secondary {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-secondary:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
}

/* Button Sizes */

.btn-sm {
  padding: var(--spacing-sm) var(--spacing-md);
  font-size: var(--font-size-sm);
}

.btn-lg {
  padding: var(--spacing-lg) var(--spacing-2xl);
  font-size: var(--font-size-lg);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  white-space: normal;
}

/* ============================================================================
   FORMS - GLASS MORPHISM
   ============================================================================ */

.form-control,
.form-select,
.form-textarea {
  width: 100%;
  padding: var(--spacing-md) var(--spacing-lg);
  font-size: var(--font-size-base);
  border: var(--glass-border);
  border-radius: var(--radius-xl);
  background: var(--glass-bg-light);
  color: var(--color-white);
  transition: all var(--transition-fast);
  font-family: var(--font-family-sans);
  backdrop-filter: blur(var(--glass-blur));
}

.form-control:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  background: var(--glass-bg-lighter);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2), inset 0 0 0 1px var(--glass-border);
}

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

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.form-group {
  margin-bottom: var(--spacing-xl);
}

.form-group-half {
  width: 48%;
  display: inline-block;
  margin-right: 4%;
}

.form-group-half:nth-child(2n) {
  margin-right: 0;
}

.form-label {
  display: block;
  margin-bottom: var(--spacing-sm);
  font-weight: var(--font-weight-semibold);
  color: rgba(255, 255, 255, 0.9);
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.section-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  padding: var(--spacing-4xl) 0;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 107, 53, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(255, 107, 53, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.section-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
}

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

.hero-title,
.page-title {
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
  animation: fadeInDown 1s ease-out;
  position: relative;
  display: inline-block;
  background: linear-gradient(90deg, var(--color-white) 0%, var(--color-accent) 50%, var(--color-accent-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 5.5rem);
}

.page-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-2xl);
  line-height: 1.6;
  font-weight: 300;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--spacing-3xl);
  line-height: 1.8;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease-out 0.6s both;
}

@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .hero-buttons .btn {
    width: 100%;
  }
}

/* ============================================================================
   FEATURE CARDS - GLASS MORPHISM
   ============================================================================ */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-3xl);
}

.features-grid.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.features-grid.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.features-grid.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card {
  background: var(--glass-bg-light);
  border: var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-2xl);
  backdrop-filter: blur(var(--glass-blur));
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  group/card: true;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.feature-card:hover {
  background: var(--glass-bg-lighter);
  border-color: var(--color-accent);
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(255, 107, 53, 0.2);
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: var(--spacing-lg);
  display: block;
  text-align: center;
  transition: transform var(--transition-base);
}

.feature-card:hover .feature-icon {
  transform: scale(1.15) rotate(-5deg);
}

.feature-title {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

.feature-description {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .features-grid.columns-4,
  .features-grid.columns-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid.columns-2 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .features-grid,
  .features-grid.columns-2,
  .features-grid.columns-3,
  .features-grid.columns-4 {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: var(--spacing-lg);
  }
}

/* ============================================================================
   PRICING SECTION - CINEMA STYLE
   ============================================================================ */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-3xl);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: linear-gradient(135deg, var(--glass-bg-light) 0%, var(--glass-bg-lighter) 100%);
  border: var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-2xl);
  backdrop-filter: blur(var(--glass-blur));
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.pricing-card:hover {
  transform: translateY(-15px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(255, 107, 53, 0.25);
}

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

.pricing-card.featured {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.08) 100%);
  border-color: var(--color-accent);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(255, 107, 53, 0.3);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-15px);
}

.pricing-badge {
  display: inline-block;
  background: var(--gradient-accent);
  color: var(--color-white);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 0 20px rgba(255, 107, 53, 0.4);
}

.pricing-name {
  font-size: var(--font-size-2xl);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-accent);
  margin-bottom: var(--spacing-sm);
  letter-spacing: -1px;
}

.pricing-price::after {
  content: '';
}

.pricing-description {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--spacing-xl);
  line-height: 1.6;
}

.pricing-features {
  flex: 1;
  margin-bottom: var(--spacing-xl);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
  padding: var(--spacing-md) 0;
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-feature:last-child {
  border-bottom: none;
}

.pricing-feature::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--gradient-accent);
  border-radius: 50%;
  color: var(--color-white);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-card.featured {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    grid-column: auto;
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-15px);
  }
}

/* ============================================================================
   TESTIMONIALS SECTION - CINEMA AESTHETIC
   ============================================================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-3xl);
}

.testimonial-card {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.6) 0%, rgba(10, 10, 10, 0.6) 100%);
  border: var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--spacing-2xl);
  backdrop-filter: blur(var(--glass-blur));
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity var(--transition-base), width var(--transition-base);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-lg), 0 0 40px rgba(255, 107, 53, 0.2);
}

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

/* Text color changes on hover - with z-index to ensure text is above background */
.testimonial-card:hover .testimonial-text {
  color: #1a1a1a !important;
  position: relative;
  z-index: 10;
}

.testimonial-card:hover .testimonial-author {
  color: #1a1a1a !important;
  position: relative;
  z-index: 10;
}

.testimonial-card:hover .testimonial-company {
  color: rgba(26, 26, 26, 0.8) !important;
  position: relative;
  z-index: 10;
}

.testimonial-text {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--spacing-lg);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-text::before {
  content: '"';
  font-size: 3rem;
  color: var(--color-accent);
  opacity: 0.3;
  line-height: 0.5;
  margin-right: var(--spacing-sm);
}

.testimonial-rating {
  display: flex;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-lg);
  position: relative;
  z-index: 10;
}

.testimonial-star {
  color: var(--color-accent);
  font-size: 1rem;
}

.testimonial-card:hover .testimonial-star {
  color: rgba(26, 26, 26, 0.7) !important;
}

.testimonial-author {
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--spacing-xs);
}

.testimonial-company {
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================================
   PROCESS/STEPS SECTION
   ============================================================================ */

/* Override section heading for process section */
.section-process .section-title {
  background: none;
  -webkit-text-fill-color: unset;
  background-clip: unset;
  color: var(--color-white);
}

.section-process .section-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-2xl);
  margin-top: var(--spacing-3xl);
}

.step,
.process-step {
  position: relative;
  padding: var(--spacing-2xl);
  text-align: center;
  background: transparent;
}

.step-image {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  padding: var(--spacing-md);
  margin-bottom: var(--spacing-md);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.step-number,
.step-number-badge {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--color-white);
  background: var(--color-accent);
  margin-bottom: var(--spacing-md);
  text-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
  transition: all var(--transition-base);
}

.step:hover .step-number,
.process-step:hover .step-number-badge {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 50px rgba(255, 107, 53, 0.8);
}

.step-title {
  font-size: var(--font-size-xl);
  font-weight: 800;
  color: #b0b0b0;
  margin-bottom: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.step-description {
  font-size: var(--font-size-base);
  color: #b0b0b0;
  line-height: 1.5;
}

/* Connecting line between steps */
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
  }

  .step {
    padding: var(--spacing-xl);
  }
}

/* ============================================================================
   CTA SECTION - CALL TO ACTION
   ============================================================================ */

.section-cta {
  background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-dark-secondary) 100%);
  position: relative;
  overflow: hidden;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.section-cta::after {
  content: '';
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--color-white);
  margin-bottom: var(--spacing-lg);
  letter-spacing: -1px;
}

.cta-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--spacing-2xl);
  line-height: 1.7;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: var(--spacing-lg);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
    gap: var(--spacing-md);
  }

  .cta-buttons .btn {
    width: 100%;
  }
}

/* ============================================================================
   FAQ SEARCH SECTION
   ============================================================================ */

.section-faq-search {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.5) 0%, rgba(26, 26, 26, 0.5) 100%);
  border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

.search-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto var(--spacing-xl);
}

.faq-search-bar {
  width: 100%;
  padding: 1.25rem 2.5rem 1.25rem 3rem;
  font-size: var(--font-size-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: var(--radius-2xl);
  color: var(--color-white);
  backdrop-filter: blur(12px);
  transition: all var(--transition-base);
  font-family: var(--font-family-sans);
}

.faq-search-bar::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.faq-search-bar:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-accent);
  font-size: var(--font-size-lg);
  opacity: 0.7;
}

.search-results-count {
  margin-top: var(--spacing-sm);
  font-size: var(--font-size-sm);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.search-hint {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--font-size-sm);
  margin-top: var(--spacing-md);
}

/* ============================================================================
   FAQ CATEGORY FILTER SECTION
   ============================================================================ */

.section-faq-categories {
  padding: var(--spacing-3xl) 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.3) 0%, rgba(10, 10, 10, 0.3) 100%);
  border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

.category-filter-header {
  margin-bottom: var(--spacing-2xl);
  text-align: center;
}

.category-filter-header h2 {
  color: var(--color-white);
  font-size: var(--font-size-3xl);
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.5px;
}

.category-filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-lg);
  justify-content: center;
  align-items: center;
}

.category-filter-btn {
  padding: 0.85rem 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: var(--radius-2xl);
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size-base);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-base);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-family-sans);
}

.category-filter-btn i {
  font-size: var(--font-size-lg);
}

.category-filter-btn:hover {
  border-color: var(--color-accent);
  color: var(--color-white);
  background: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.15);
}

.category-filter-btn.active {
  background: var(--gradient-accent);
  color: var(--color-dark);
  border-color: var(--color-accent);
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.3);
}

.category-filter-btn.active:hover {
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.4);
}

/* ============================================================================
   FAQ SECTION - GLASS ACCORDION
   ============================================================================ */

.faq-container {
  max-width: 800px;
  margin: var(--spacing-3xl) auto 0;
}

.faq-item {
  background: var(--glass-bg-light);
  border: var(--glass-border);
  border-radius: var(--radius-xl);
  margin-bottom: var(--spacing-lg);
  overflow: hidden;
  backdrop-filter: blur(var(--glass-blur));
  transition: all var(--transition-base);
}

.faq-item:hover {
  border-color: var(--color-accent);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.15);
}

.faq-question {
  padding: var(--spacing-xl);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
  transition: all var(--transition-base);
  gap: var(--spacing-lg);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question::before {
  content: '+';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 107, 53, 0.2);
  color: var(--color-accent);
  border-radius: 50%;
  margin-right: var(--spacing-lg);
  transition: all var(--transition-base);
  font-size: 1.5rem;
  flex-shrink: 0;
  font-weight: 300;
}

.faq-item.active .faq-question::before {
  content: '−';
  transform: rotate(180deg);
  background: rgba(255, 107, 53, 0.3);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 400ms ease-out, opacity 300ms ease-out, padding 300ms ease-out;
  opacity: 0;
  padding: 0 var(--spacing-xl);
  display: block !important;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
  opacity: 1;
  padding: 0 var(--spacing-xl) var(--spacing-xl);
}

.faq-answer-text {
  font-size: 1.1rem;
  color: var(--color-white);
  line-height: 1.7;
}

.faq-answer {
  color: var(--color-white);
  font-size: 1.1rem;
}

.faq-answer p {
  color: var(--color-white);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.faq-answer ul,
.faq-answer ol {
  color: var(--color-white);
}

.faq-answer li {
  color: var(--color-white);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.faq-answer strong {
  color: #FF8B5C;
  font-weight: 700;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

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

/* ============================================================================
   RESPONSIVE UTILITIES
   ============================================================================ */

@media (max-width: 1024px) {
  html {
    font-size: 15px;
  }

  section {
    padding: var(--spacing-3xl) 0;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  section {
    padding: var(--spacing-2xl) 0;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .btn {
    padding: var(--spacing-sm) var(--spacing-lg);
  }

  /* FAQ Search Section - Mobile */
  .section-faq-search {
    padding: var(--spacing-2xl) 0;
  }

  .faq-search-bar {
    padding: 1rem 2rem 1rem 2.5rem;
    font-size: var(--font-size-base);
  }

  /* FAQ Categories - Mobile */
  .section-faq-categories {
    padding: var(--spacing-2xl) 0;
  }

  .category-filter-header h2 {
    font-size: var(--font-size-2xl);
  }

  .category-filter-buttons {
    gap: var(--spacing-md);
  }

  .category-filter-btn {
    padding: 0.75rem 1.25rem;
    font-size: var(--font-size-sm);
  }

  .category-filter-btn i {
    font-size: var(--font-size-base);
  }
}

@media (max-width: 480px) {
  html {
    font-size: 13px;
  }

  section {
    padding: var(--spacing-xl) 0;
  }

  /* FAQ Search Section - Small Mobile */
  .section-faq-search {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .faq-search-bar {
    padding: 0.9rem 1.75rem 0.9rem 2.25rem;
    font-size: var(--font-size-sm);
  }

  /* FAQ Categories - Small Mobile */
  .section-faq-categories {
    padding: var(--spacing-xl) var(--spacing-md);
  }

  .category-filter-header h2 {
    font-size: var(--font-size-xl);
  }

  .category-filter-buttons {
    gap: var(--spacing-sm);
  }

  .category-filter-btn {
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
  }

  .category-filter-btn i {
    display: none;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .btn {
    padding: var(--spacing-xs) var(--spacing-md);
    font-size: var(--font-size-sm);
  }
}

/* ============================================================================
   ACCESSIBILITY
   ============================================================================ */

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Print styles */
@media print {
  body {
    background: white;
    color: black;
  }

  a {
    color: #0066cc;
    border: none;
  }

  .btn {
    display: none;
  }

  section {
    page-break-inside: avoid;
  }
}

/* ============================================================================
   UTILITY CLASSES
   ============================================================================ */

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

.no-scroll {
  overflow: hidden;
}

.opacity-0 {
  opacity: 0;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-100 {
  opacity: 1;
}

/* ============================================================================
   HEADER & NAVIGATION - CINEMA AESTHETIC
   ============================================================================ */

/* Top Utility Bar - Account, Cart, Checkout */
.top-bar {
  background: rgba(10, 10, 10, 0.98);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 20px rgba(255, 107, 53, 0.08);
}

.top-bar-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  padding: 0.25rem 0;
}

.top-bar-link:hover {
  color: var(--color-accent);
  text-shadow: 0 0 8px rgba(255, 107, 53, 0.3);
}

.top-bar .divider {
  color: rgba(255, 107, 53, 0.3);
  font-weight: 300;
}

/* Cart Icon Styling */
.cart-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cart-icon {
  width: 20px;
  height: 20px;
  display: block;
}

/* Responsive: Hide top bar on mobile */
@media (max-width: 768px) {
  .top-bar-left {
    gap: 0.75rem;
  }

  .top-bar-link {
    font-size: 0.75rem;
  }

  .top-bar .divider {
    margin: 0 0.25rem;
  }
}

.site-header {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.25);
  padding: 1rem 0;
  position: sticky;
  top: 2.5rem;
  z-index: 998;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
}

.header-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

/* Site Branding */
.site-branding h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.site-branding a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.site-branding a:hover {
  color: var(--color-accent);
}

/* Site Logo Image */
.site-branding .site-logo {
  height: 60px;
  width: auto;
  max-width: 200px;
  display: block;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.site-branding a:hover .site-logo {
  transform: scale(1.05);
}

/* Main Navigation */
.main-navigation {
  flex: 1;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
  flex-wrap: wrap;
  align-items: center;
}

.nav-menu > li {
  position: relative;
  display: flex;
  align-items: center;
}

/* Enhanced Navigation Link Styles */
.nav-menu a {
  display: block;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;

  /* Smooth transition for all properties */
  transition: all var(--transition-base);
}

/* Underline effect pseudo-element */
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0.5rem;
  left: 1.25rem;
  right: 1.25rem;
  height: 2px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));

  /* Animated underline - scales from 0 to 100% */
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
  border-radius: 2px;
}

/* Hover State - Smooth underline reveal */
.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--color-accent);
  text-shadow: 0 0 12px rgba(255, 107, 53, 0.4);
}

/* Scale underline to full width on hover */
.nav-menu a:hover::after,
.nav-menu a:focus::after {
  transform: scaleX(1);
}

/* Active/Current Menu Item */
.nav-menu li.current-menu-item > a {
  color: var(--color-accent);
  text-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

/* Keep underline visible for active items */
.nav-menu li.current-menu-item > a::after {
  transform: scaleX(1);
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
}

/* Focus state for accessibility */
.nav-menu a:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 4px;
}

/* Header Right (Social + Contact Button) */
.header-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 50%;
  color: var(--color-accent);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--color-accent);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(255, 107, 53, 0.3);
}

/* Contact Button - Premium Style */
.btn-contact {
  background: linear-gradient(135deg, var(--color-accent), #FF8C61);
  color: white;
  padding: 0.75rem 1.75rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 16px rgba(255, 107, 53, 0.3);
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

/* Subtle glow effect on hover */
.btn-contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(255, 107, 53, 0.3) 0%, transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255, 107, 53, 0.6),
              inset 0 1px 0 rgba(255, 107, 53, 0.3);
  color: #1a1a1a !important;
  position: relative;
  z-index: 10;
}

.btn-contact:hover::before {
  opacity: 1;
}

/* Active state */
.btn-contact:active {
  transform: translateY(0);
}

/* ============================================================================
   FOOTER - CINEMA AESTHETIC
   ============================================================================ */

.site-footer {
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(5, 5, 5, 1) 100%);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 0;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  margin-top: 5rem;
}

/* Footer Newsletter */
.footer-newsletter {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(255, 107, 53, 0.05));
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
  padding: 3rem 0;
}

.newsletter-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.newsletter-content h4 {
  font-size: 1.25rem;
  color: white;
  margin: 0 0 1.5rem;
  letter-spacing: -0.5px;
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.newsletter-input {
  padding: 0.75rem 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 4px;
  color: white;
  font-size: 0.95rem;
  min-width: 250px;
  transition: all 0.3s ease;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--color-accent);
  box-shadow: 0 0 12px rgba(255, 107, 53, 0.3);
}

.newsletter-btn {
  padding: 0.75rem 2rem;
  background: linear-gradient(135deg, var(--color-accent), #FF8C61);
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.5);
}

.newsletter-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Footer Divider */
.footer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.3), transparent);
  margin: 2rem 0;
}

/* Footer Content Grid */
.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
}

.footer-section h3 {
  color: white;
  font-size: 1.1rem;
  margin: 0 0 1.25rem;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-section h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-accent);
  border-radius: 1px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-section a::before {
  content: '▸ ';
  color: var(--color-accent);
  margin-right: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.footer-section a:hover {
  color: var(--color-accent);
}

.footer-section a:hover::before {
  opacity: 1;
}

/* Footer Bottom */
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
  border-top: 1px solid rgba(255, 107, 53, 0.15);
}

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

.footer-info p,
.footer-hours p {
  margin: 0.5rem 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.footer-info p strong,
.footer-hours p strong {
  color: white;
}

.footer-info a,
.footer-hours a {
  color: var(--color-accent);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-info a:hover,
.footer-hours a:hover {
  text-shadow: 0 0 8px rgba(255, 107, 53, 0.5);
}

.footer-copyright {
  text-align: right;
}

.footer-copyright p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-copyright a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 0.25rem;
}

.footer-copyright a:hover {
  color: var(--color-accent);
  text-decoration: underline;
}

/* ============================================================================
   RESPONSIVE ADJUSTMENTS - HEADER & FOOTER
   ============================================================================ */

@media (max-width: 768px) {
  .header-wrapper {
    padding: 0 1rem;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .main-navigation {
    order: 3;
    width: 100%;
  }

  .nav-menu {
    flex-direction: column;
    gap: 0.25rem;
  }

  .nav-menu a {
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
  }

  .header-right {
    gap: 1rem;
  }

  .social-links {
    gap: 0.5rem;
  }

  .social-icon {
    width: 36px;
    height: 36px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-copyright {
    text-align: center;
  }
}

/* ============================================================================
   BLOG PAGE STYLES
   ============================================================================ */

.blog-header {
  background: linear-gradient(135deg, rgba(10,10,10,0.8) 0%, rgba(255,107,53,0.1) 100%);
  padding: 4rem 2rem;
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.blog-grid-section {
  padding: 4rem 2rem;
  background: var(--color-dark);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.blog-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.blog-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-accent);
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.15);
}

.blog-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(10,10,10,0.8) 0%, rgba(255,107,53,0.1) 100%);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

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

.blog-card-categories {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.blog-category-badge {
  display: inline-block;
  background: rgba(255, 107, 53, 0.2);
  border: 1px solid var(--color-accent);
  color: var(--color-accent);
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 1rem;
  line-height: 1.4;
}

.blog-card-title a {
  color: var(--color-white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-title a:hover {
  color: var(--color-accent);
}

.blog-card-excerpt {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  border-top: 1px solid rgba(255, 107, 53, 0.1);
  padding-top: 1rem;
}

.blog-date,
.blog-read-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.blog-date i,
.blog-read-time i {
  color: var(--color-accent);
}

.blog-card-link {
  display: inline-block;
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.blog-card-link:hover {
  color: var(--color-accent-light);
  transform: translateX(4px);
}

.no-posts-message {
  text-align: center;
  padding: 4rem 2rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.1rem;
}

/* Blog CTA Section */
.blog-cta {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
  padding: 4rem 2rem;
}

.blog-cta-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.blog-cta-content h2 {
  font-size: 2rem;
  color: var(--color-white);
  margin-bottom: 1rem;
  font-weight: 900;
}

.blog-cta-content > p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.blog-cta-form {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.blog-email-input {
  flex: 1;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  border-radius: 8px;
  color: var(--color-white);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.blog-email-input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-accent);
  box-shadow: 0 0 16px rgba(255, 107, 53, 0.2);
}

.blog-email-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.blog-cta-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card-image {
    height: 180px;
  }

  .blog-cta-form {
    flex-direction: column;
  }

  .blog-cta-content h2 {
    font-size: 1.5rem;
  }
}

/* ============================================================================
   GRADIENT TEXT EFFECT - REUSABLE ACROSS PAGES
   ============================================================================ */

.gradient-title {
  background: linear-gradient(90deg, #ffffff 0%, #FF6B35 50%, #FF8B5C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

/* ============================================================================
   SHOP PAGE - PRICING CARDS
   ============================================================================ */

.shop-pricing-cards {
  background: linear-gradient(135deg, rgba(10,10,10,0.8) 0%, rgba(255,107,53,0.05) 100%);
  padding: 4rem 2rem;
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.shop-pricing-cards .section-title {
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}

.pricing-grid-shop {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card-shop {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 107, 53, 0.15);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

.pricing-card-shop:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 107, 53, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(255, 107, 53, 0.15);
}

.pricing-card-shop.featured {
  background: rgba(255, 107, 53, 0.08);
  border-color: var(--color-accent);
  transform: scale(1.05);
}

.pricing-card-shop.featured:hover {
  background: rgba(255, 107, 53, 0.12);
  box-shadow: 0 20px 50px rgba(255, 107, 53, 0.25);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: var(--color-dark);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.card-title {
  font-size: 1.4rem;
  color: var(--color-white);
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 0.5rem;
}

.card-price {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.price-amount {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.price-label {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
}

.features-list-shop {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.features-list-shop li {
  padding: 0.75rem 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.features-list-shop li i {
  color: var(--color-accent);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.btn-cta-shop {
  display: inline-block;
  padding: 0.9rem 1.8rem;
  background: transparent;
  border: 2px solid var(--color-accent);
  color: var(--color-accent);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-cta-shop:hover {
  background: var(--color-accent);
  color: var(--color-dark);
}

.btn-cta-shop.primary {
  background: var(--color-accent);
  color: var(--color-dark);
  border-color: var(--color-accent);
}

.btn-cta-shop.primary:hover {
  background: var(--color-accent-light);
  border-color: var(--color-accent-light);
}

@media (max-width: 1024px) {
  .pricing-grid-shop {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .pricing-card-shop.featured {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .pricing-grid-shop {
    grid-template-columns: 1fr;
  }

  .pricing-card-shop.featured {
    grid-column: 1;
    max-width: 100%;
  }

  .shop-pricing-cards .section-title {
    font-size: 2rem;
  }

  .price-amount {
    font-size: 2rem;
  }

  .card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .blog-card-meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .blog-cta-content p {
    font-size: 1rem;
  }
}

/* ============================================================================
   THRILLER LANDING PAGE - CUSTOM SECTIONS
   ============================================================================ */

/* Problem Section - Two-Column Dark/Light Split */
.problem-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
    padding: 80px 0 !important;
    color: #ffffff !important;
}

.problem-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.problem-left {
    background: #1a1a1a;
    padding: 5rem 4rem;
    color: white;
}

.problem-right {
    background: transparent;
    padding: 5rem 4rem;
}

.problem-right h3 {
    color: #ffffff !important;
}

.problem-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: #fe5001 !important;
    line-height: 1.2;
}

.problem-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.problem-list {
    list-style: none;
    margin-bottom: 2rem;
}

.problem-list li {
    padding: 0.5rem 0;
    font-size: 1rem;
    opacity: 0.9;
}

.rejection-list {
    list-style: none;
}

.rejection-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.05rem;
    color: #cccccc;
}

.rejection-list li:last-child {
    border-bottom: none;
}

.problem-highlight {
    background: #ff8c00;
    color: white;
    padding: 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 2rem;
}

/* Service Tiers - Stacked Cards */
.tiers-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
    padding: 6rem 2rem !important;
}

.tiers-section .section-header,
.tiers-section .section-title {
    color: #fe5001 !important;
}

.tier-card {
    background: #1a1a1a !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.tier-card:hover {
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.tier-header {
    padding: 2.5rem 3rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.tier-name {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.tier-price {
    font-size: 3rem;
    font-weight: 900;
    color: #ff8c00;
    margin-bottom: 0.5rem;
}

.tier-question {
    font-size: 1.2rem;
    font-style: italic;
    opacity: 0.9;
}

.tier-body {
    padding: 3rem;
}

.tier-section-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.tier-description {
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.tier-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.tier-features li {
    padding: 0.7rem 0;
    padding-left: 2rem;
    color: #cccccc;
    position: relative;
    font-size: 1rem;
}

.tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #ff8c00;
    font-weight: 700;
    font-size: 1.3rem;
}

.tier-important {
    background: rgba(254, 80, 1, 0.1);
    border-left: 4px solid #fe5001;
    color: #cccccc;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 6px;
}

.tier-important strong {
    color: #d97706;
}

.tier-perfect {
    font-size: 1rem;
    color: #999999;
    margin-bottom: 2rem;
}

.tier-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ff8c00 0%, #d97706 100%);
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.tier-cta:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(255, 140, 0, 0.3);
}

/* Featured tier styling */
.tier-card.featured .tier-header {
    background: linear-gradient(135deg, #ff8c00 0%, #d97706 100%);
}

.tier-card.featured .tier-question {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .problem-container {
        grid-template-columns: 1fr;
    }

    .problem-left,
    .problem-right {
        padding: 3rem 2rem;
    }

    .problem-title {
        font-size: 2rem;
    }

    .tier-price {
        font-size: 2.2rem;
    }

    .tier-name {
        font-size: 1.5rem;
    }

    .tier-body {
        padding: 2rem;
    }
}
