/* ============================================
   INDUSTRIAL MODERN CSS STYLES - SparkleFolio
   Dark colors, metallic accents, urban feel
   ============================================ */

/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background-color: #1A1A1A;
  overflow-x: hidden;
}

/* Industrial Modern Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #FFFFFF;
  margin-bottom: 20px;
  text-transform: uppercase;
}

h1 {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  line-height: 1.3;
  margin-bottom: 20px;
  position: relative;
}

h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #C77A0A, #8B5A08);
  margin-top: 12px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #B0B0B0;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: #C77A0A;
  transition: color 0.3s ease;
}

a:hover {
  color: #E89B1E;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles - Industrial Modern */
header {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 2px solid #404040;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

header img {
  height: 50px;
  width: auto;
  filter: brightness(1.1);
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #E0E0E0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #C77A0A, #E89B1E);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #C77A0A;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
  border: 2px solid #C77A0A;
  color: #C77A0A;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(199, 122, 10, 0.3);
}

.mobile-menu-toggle:hover {
  background: linear-gradient(135deg, #C77A0A, #8B5A08);
  color: #FFFFFF;
  transform: scale(1.05);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.7);
  border-left: 2px solid #404040;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #C77A0A;
  color: #C77A0A;
  font-size: 32px;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #C77A0A;
  color: #FFFFFF;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  color: #E0E0E0;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  border-bottom: 1px solid #404040;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  background: rgba(199, 122, 10, 0.1);
  color: #C77A0A;
  padding-left: 30px;
}

/* Hero Section - Industrial Modern */
.hero {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 50%, #1A1A1A 100%);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #404040;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(199, 122, 10, 0.03) 2px, rgba(199, 122, 10, 0.03) 4px),
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(199, 122, 10, 0.03) 2px, rgba(199, 122, 10, 0.03) 4px);
  pointer-events: none;
}

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

.hero h1 {
  color: #FFFFFF;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 24px;
}

.subheadline {
  font-size: 18px;
  color: #B0B0B0;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-badges span {
  color: #C77A0A;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border: 2px solid #404040;
  border-radius: 4px;
  background: rgba(42, 42, 42, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.stats-inline {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.stats-inline span {
  color: #C77A0A;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Buttons - Industrial Style */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn-primary,
.btn-secondary {
  padding: 16px 40px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #C77A0A, #8B5A08);
  color: #FFFFFF;
  border-color: #C77A0A;
  box-shadow: 0 4px 12px rgba(199, 122, 10, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E89B1E, #C77A0A);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(199, 122, 10, 0.5);
  color: #FFFFFF;
}

.btn-secondary {
  background: transparent;
  color: #C77A0A;
  border-color: #C77A0A;
}

.btn-secondary:hover {
  background: rgba(199, 122, 10, 0.1);
  border-color: #E89B1E;
  color: #E89B1E;
  transform: translateY(-2px);
}

/* Section Styles */
section {
  padding: 60px 20px;
  margin-bottom: 0;
}

section:nth-child(even) {
  background: #1A1A1A;
}

section:nth-child(odd) {
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 50%, #1A1A1A 100%);
}

.subtitle {
  text-align: center;
  font-size: 18px;
  color: #B0B0B0;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  padding: 60px 20px;
  border-top: 2px solid #404040;
  border-bottom: 2px solid #404040;
}

.stats h2 {
  text-align: center;
  margin-bottom: 50px;
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1 1 200px;
  text-align: center;
  padding: 32px 20px;
  background: linear-gradient(135deg, #1A1A1A, #2A2A2A);
  border: 2px solid #404040;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #C77A0A, transparent);
  transition: left 0.5s ease;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  border-color: #C77A0A;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(199, 122, 10, 0.3);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #C77A0A;
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
}

.stat-label {
  font-size: 14px;
  color: #B0B0B0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Services Grid */
.services-overview,
.services-detailed {
  padding: 60px 20px;
}

.services-overview h2,
.services-detailed h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-grid,
.addon-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 40px;
}

.service-card,
.addon-card {
  flex: 1 1 260px;
  background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
  padding: 32px 24px;
  border: 2px solid #404040;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.service-card::after,
.addon-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #C77A0A, #8B5A08);
  transition: height 0.3s ease;
}

.service-card:hover::after,
.addon-card:hover::after {
  height: 100%;
}

.service-card:hover,
.addon-card:hover {
  border-color: #C77A0A;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(199, 122, 10, 0.3);
}

.service-card h3,
.addon-card h3 {
  color: #FFFFFF;
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card .price,
.addon-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #C77A0A;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 12px;
}

.service-card p,
.addon-card p {
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.6;
}

/* Service Full Width Cards */
.service-full {
  background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
  padding: 40px 32px;
  margin-bottom: 32px;
  border: 2px solid #404040;
  border-radius: 4px;
  border-left: 4px solid #C77A0A;
  transition: all 0.3s ease;
}

.service-full:hover {
  border-color: #C77A0A;
  box-shadow: 0 8px 24px rgba(199, 122, 10, 0.3);
  transform: translateX(4px);
}

.service-full h3 {
  color: #FFFFFF;
  margin-bottom: 12px;
}

.service-full .price {
  font-size: 32px;
  font-weight: 700;
  color: #C77A0A;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.service-full ul {
  list-style: none;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-full ul li {
  color: #B0B0B0;
  padding-left: 28px;
  position: relative;
  font-size: 15px;
}

.service-full ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #C77A0A;
  font-size: 18px;
}

.timeline {
  color: #C77A0A;
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Features Section */
.features {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
}

.features h2 {
  text-align: center;
  margin-bottom: 50px;
}

.features-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.feature-item {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(42, 42, 42, 0.5);
  border: 2px solid #404040;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  border-color: #C77A0A;
  background: rgba(199, 122, 10, 0.05);
  transform: translateY(-4px);
}

.feature-item h3 {
  color: #C77A0A;
  font-size: 18px;
  margin-bottom: 8px;
}

.feature-item p {
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.6;
}

/* Testimonials - High Contrast for Readability */
.testimonials {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-card {
  background: #FFFFFF;
  padding: 32px;
  margin-bottom: 24px;
  border-left: 4px solid #C77A0A;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 24px rgba(199, 122, 10, 0.4);
}

.testimonial-card p {
  color: #2A2A2A;
  font-size: 16px;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card .author {
  color: #C77A0A;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-style: normal;
}

.testimonial-card.featured {
  border-left-width: 6px;
  background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
}

/* Pricing Table */
.pricing-table {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
}

.pricing-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.pricing-tier {
  flex: 1 1 260px;
  max-width: 320px;
  background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
  border: 2px solid #404040;
  border-radius: 4px;
  padding: 40px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-tier .badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #C77A0A, #8B5A08);
  color: #FFFFFF;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(199, 122, 10, 0.5);
}

.pricing-tier.featured {
  border-color: #C77A0A;
  border-width: 3px;
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(199, 122, 10, 0.4);
}

.pricing-tier:hover {
  border-color: #C77A0A;
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 32px rgba(199, 122, 10, 0.4);
}

.pricing-tier h3 {
  color: #FFFFFF;
  text-align: center;
  font-size: 24px;
  margin-top: 20px;
}

.pricing-tier .price {
  font-size: 36px;
  font-weight: 700;
  color: #C77A0A;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  margin: 8px 0;
}

.pricing-tier .for-who {
  text-align: center;
  color: #B0B0B0;
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-tier ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.pricing-tier ul li {
  color: #B0B0B0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
}

.pricing-tier ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C77A0A;
  font-weight: 700;
  font-size: 16px;
}

.pricing-tier .timeline {
  text-align: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid #404040;
}

.pricing-tier .btn-primary {
  margin-top: 16px;
  width: 100%;
  text-align: center;
}

/* Payment Options */
.payment-options {
  padding: 60px 20px;
  background: #1A1A1A;
}

.payment-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.payment-option {
  flex: 1 1 240px;
  background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
  padding: 28px 24px;
  border: 2px solid #404040;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.payment-option:hover {
  border-color: #C77A0A;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(199, 122, 10, 0.3);
}

.payment-option h3 {
  color: #C77A0A;
  font-size: 18px;
  margin-bottom: 12px;
}

.payment-option p {
  color: #B0B0B0;
  font-size: 14px;
}

/* Portfolio */
.portfolio-grid {
  padding: 60px 20px;
}

.projects-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.project-card {
  flex: 1 1 320px;
  background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
  padding: 32px 24px;
  border: 2px solid #404040;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  position: relative;
}

.project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #C77A0A, #8B5A08);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.project-card:hover {
  border-color: #C77A0A;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(199, 122, 10, 0.3);
}

.project-card h3 {
  color: #FFFFFF;
  font-size: 22px;
  margin-bottom: 8px;
}

.project-card .category {
  color: #C77A0A;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-card .package {
  color: #B0B0B0;
  font-size: 13px;
  margin-top: 8px;
}

.project-card .result {
  color: #C77A0A;
  font-weight: 700;
  font-size: 15px;
  margin-top: 12px;
}

/* Case Study */
.case-study-featured {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
}

.case-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 40px;
}

.case-info,
.case-solutions,
.case-results {
  background: rgba(42, 42, 42, 0.5);
  padding: 32px;
  border-left: 4px solid #C77A0A;
  border-radius: 4px;
}

.case-info h3,
.case-solutions h3,
.case-results h3 {
  color: #C77A0A;
  font-size: 20px;
  margin-bottom: 16px;
}

.case-info p,
.case-solutions p,
.case-results p {
  color: #B0B0B0;
  line-height: 1.7;
}

.case-solutions ul,
.case-results ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.case-solutions ul li,
.case-results ul li {
  color: #B0B0B0;
  padding-left: 24px;
  position: relative;
}

.case-solutions ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #C77A0A;
  font-size: 16px;
}

.case-results ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #C77A0A;
  font-weight: 700;
  font-size: 16px;
}

/* Results Showcase */
.results-showcase {
  padding: 60px 20px;
  background: #1A1A1A;
}

.results-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.result-item {
  flex: 1 1 240px;
  text-align: center;
  padding: 32px 20px;
  background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
  border: 2px solid #404040;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.result-item:hover {
  border-color: #C77A0A;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(199, 122, 10, 0.3);
}

.result-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #C77A0A;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 12px;
}

.result-item p {
  color: #B0B0B0;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* About/Team Sections */
.company-story,
.mission-vision,
.stats-about {
  padding: 60px 20px;
}

.company-story p,
.mission-vision p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  color: #B0B0B0;
  line-height: 1.8;
}

.mission-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.mission-item {
  flex: 1 1 300px;
  background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
  padding: 32px;
  border: 2px solid #404040;
  border-left: 4px solid #C77A0A;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mission-item:hover {
  border-color: #C77A0A;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(199, 122, 10, 0.3);
}

.mission-item h3 {
  color: #C77A0A;
  margin-bottom: 16px;
}

.mission-item ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mission-item ul li {
  color: #B0B0B0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
}

.mission-item ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #C77A0A;
  font-size: 16px;
}

/* Team Structure */
.team-structure {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
}

.team-intro {
  text-align: center;
  color: #B0B0B0;
  margin-bottom: 40px;
  font-size: 18px;
}

.team-departments {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.department {
  flex: 1 1 240px;
  background: rgba(42, 42, 42, 0.5);
  padding: 28px 24px;
  border: 2px solid #404040;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.department:hover {
  border-color: #C77A0A;
  background: rgba(199, 122, 10, 0.05);
  transform: translateY(-4px);
}

.department h3 {
  color: #C77A0A;
  margin-bottom: 12px;
  font-size: 20px;
}

.department p {
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.6;
}

/* Office/Contact Info */
.office-location,
.office-contact {
  padding: 60px 20px;
  text-align: center;
}

.address,
.office-hours {
  color: #B0B0B0;
  margin: 20px 0;
  line-height: 1.8;
  font-size: 16px;
}

.office-info {
  max-width: 600px;
  margin: 40px auto;
  text-align: center;
}

.office-info p {
  color: #B0B0B0;
  margin-bottom: 20px;
  line-height: 1.8;
}

/* Contact Forms */
.contact-form-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
}

.form-wrapper {
  max-width: 700px;
  margin: 40px auto;
  background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
  padding: 40px;
  border: 2px solid #404040;
  border-radius: 4px;
}

.form-note {
  background: rgba(199, 122, 10, 0.1);
  padding: 24px;
  border-left: 4px solid #C77A0A;
  border-radius: 4px;
  margin-bottom: 24px;
}

.form-note p {
  color: #B0B0B0;
  margin-bottom: 16px;
  line-height: 1.7;
}

.form-note strong {
  color: #C77A0A;
}

.form-note ul {
  list-style: none;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-note ul li {
  color: #B0B0B0;
  padding-left: 24px;
  position: relative;
  font-size: 14px;
}

.form-note ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #C77A0A;
}

/* Contact Methods */
.contact-methods {
  padding: 60px 20px;
}

.methods-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.method-card {
  flex: 1 1 240px;
  background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
  padding: 28px 24px;
  border: 2px solid #404040;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.method-card:hover {
  border-color: #C77A0A;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(199, 122, 10, 0.3);
}

.method-card h3 {
  color: #C77A0A;
  margin-bottom: 12px;
  font-size: 18px;
}

.method-card p {
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.6;
}

/* Quick Contact */
.quick-contact {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
}

.contact-details {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-item {
  flex: 1 1 260px;
  background: rgba(42, 42, 42, 0.5);
  padding: 28px 24px;
  border: 2px solid #404040;
  border-left: 4px solid #C77A0A;
  border-radius: 4px;
}

.contact-item h3 {
  color: #C77A0A;
  margin-bottom: 12px;
  font-size: 18px;
}

.contact-item p {
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.6;
}

/* Response Timeline */
.response-time {
  padding: 60px 20px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-step {
  background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
  padding: 24px 28px;
  border-left: 4px solid #C77A0A;
  border-radius: 4px;
  position: relative;
  transition: all 0.3s ease;
}

.timeline-step::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: #C77A0A;
  border-radius: 50%;
  border: 2px solid #1A1A1A;
}

.timeline-step:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(199, 122, 10, 0.3);
}

.timeline-step h3 {
  color: #C77A0A;
  margin-bottom: 8px;
  font-size: 18px;
}

.timeline-step p {
  color: #B0B0B0;
  font-size: 14px;
}

/* Thank You Page */
.thank-you-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.next-steps {
  padding: 60px 20px;
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
}

.steps-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.step-item {
  flex: 1 1 200px;
  background: rgba(42, 42, 42, 0.5);
  padding: 24px 20px;
  border: 2px solid #404040;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.step-item:hover {
  border-color: #C77A0A;
  transform: translateY(-4px);
}

.step-item h3 {
  color: #C77A0A;
  font-size: 16px;
  margin-bottom: 12px;
}

.step-item p {
  color: #B0B0B0;
  font-size: 13px;
}

.while-waiting {
  padding: 60px 20px;
}

.waiting-actions {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.action-card {
  flex: 1 1 280px;
  background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
  padding: 32px 24px;
  border: 2px solid #404040;
  border-radius: 4px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  transition: all 0.3s ease;
}

.action-card:hover {
  border-color: #C77A0A;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(199, 122, 10, 0.3);
}

.action-card h3 {
  color: #FFFFFF;
  margin-bottom: 8px;
}

.action-card p {
  color: #B0B0B0;
  font-size: 14px;
}

.contact-reminder {
  padding: 40px 20px;
  background: rgba(199, 122, 10, 0.1);
  border-top: 2px solid #404040;
  border-bottom: 2px solid #404040;
  text-align: center;
}

.contact-reminder h2 {
  margin-bottom: 20px;
}

.contact-reminder p {
  color: #B0B0B0;
  font-size: 16px;
  margin-bottom: 12px;
}

.hours {
  color: #C77A0A;
  font-weight: 600;
}

.testimonial-single {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1A1A1A 0%, #2A2A2A 100%);
}

/* Legal Content */
.legal-content {
  padding: 60px 20px;
}

.legal-content h1 {
  text-align: center;
  margin-bottom: 16px;
}

.updated {
  text-align: center;
  color: #C77A0A;
  font-size: 14px;
  margin-bottom: 40px;
  font-weight: 600;
}

.text-section {
  max-width: 900px;
  margin: 0 auto 40px;
  background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
  padding: 32px;
  border: 2px solid #404040;
  border-left: 4px solid #C77A0A;
  border-radius: 4px;
}

.text-section h2 {
  color: #C77A0A;
  font-size: 24px;
  margin-bottom: 16px;
}

.text-section h3 {
  color: #FFFFFF;
  font-size: 18px;
  margin: 20px 0 12px;
}

.text-section p {
  color: #B0B0B0;
  line-height: 1.8;
  margin-bottom: 16px;
}

.text-section ul {
  list-style: none;
  margin: 16px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.text-section ul li {
  color: #B0B0B0;
  padding-left: 24px;
  position: relative;
  line-height: 1.7;
}

.text-section ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #C77A0A;
  font-size: 16px;
}

.text-section strong {
  color: #C77A0A;
}

.text-section a {
  color: #C77A0A;
  text-decoration: underline;
}

.text-section a:hover {
  color: #E89B1E;
}

/* CTA Section */
.cta-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #C77A0A 0%, #8B5A08 100%);
  text-align: center;
  border-top: 3px solid #404040;
  border-bottom: 3px solid #404040;
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.cta-section h2::after {
  background: #FFFFFF;
  margin-left: auto;
  margin-right: auto;
}

.cta-section p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-primary {
  background: #FFFFFF;
  color: #C77A0A;
  border-color: #FFFFFF;
}

.cta-section .btn-primary:hover {
  background: #1A1A1A;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cta-section .btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cta-section .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

.guarantee {
  margin-top: 32px;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Footer - Industrial Style */
footer {
  background: linear-gradient(135deg, #0F0F0F 0%, #1A1A1A 100%);
  padding: 60px 20px 30px;
  border-top: 3px solid #404040;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-column {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-column img {
  height: 40px;
  width: auto;
  margin-bottom: 12px;
  filter: brightness(1.1);
}

.footer-column h4 {
  color: #C77A0A;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column p {
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.7;
}

.footer-column a {
  color: #B0B0B0;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 6px 0;
}

.footer-column a:hover {
  color: #C77A0A;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  color: #707070;
  font-size: 13px;
  padding-top: 30px;
  border-top: 1px solid #404040;
  margin-top: 20px;
}

/* Addon List */
.addon-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.addon-item {
  background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
  padding: 28px 32px;
  border: 2px solid #404040;
  border-left: 4px solid #C77A0A;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
}

.addon-item:hover {
  border-color: #C77A0A;
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(199, 122, 10, 0.3);
}

.addon-item h3 {
  color: #FFFFFF;
  font-size: 20px;
}

.addon-item .price {
  font-size: 24px;
  font-weight: 700;
  color: #C77A0A;
  font-family: 'Montserrat', sans-serif;
}

.addon-item p {
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.6;
}

/* Cookie Consent Banner */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2A2A2A 0%, #1A1A1A 100%);
  border-top: 3px solid #C77A0A;
  padding: 24px 20px;
  z-index: 1998;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

#cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1 1 400px;
  color: #B0B0B0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#accept-all {
  background: linear-gradient(135deg, #C77A0A, #8B5A08);
  color: #FFFFFF;
  border-color: #C77A0A;
}

#accept-all:hover {
  background: linear-gradient(135deg, #E89B1E, #C77A0A);
  transform: translateY(-2px);
}

#reject-all {
  background: transparent;
  color: #B0B0B0;
  border-color: #404040;
}

#reject-all:hover {
  border-color: #707070;
  color: #E0E0E0;
}

#cookie-settings {
  background: transparent;
  color: #C77A0A;
  border-color: #C77A0A;
}

#cookie-settings:hover {
  background: rgba(199, 122, 10, 0.1);
}

/* Cookie Preferences Modal */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-modal.show {
  display: flex;
}

.modal-content {
  background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
  border: 3px solid #C77A0A;
  border-radius: 4px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 32px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: 2px solid #C77A0A;
  color: #C77A0A;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: #C77A0A;
  color: #FFFFFF;
  transform: rotate(90deg);
}

.modal-content h2 {
  color: #FFFFFF;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: rgba(42, 42, 42, 0.5);
  border: 2px solid #404040;
  border-radius: 4px;
}

.cookie-category h3 {
  color: #C77A0A;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #B0B0B0;
  font-size: 14px;
  margin-bottom: 12px;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #404040;
  transition: 0.3s;
  border-radius: 26px;
}

.toggle-slider:before {
  position: absolute;
  content: '';
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: #FFFFFF;
  transition: 0.3s;
  border-radius: 50%;
}

input:checked + .toggle-slider {
  background-color: #C77A0A;
}

input:checked + .toggle-slider:before {
  transform: translateX(24px);
}

input:disabled + .toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

#save-preferences {
  flex: 1;
  padding: 14px 28px;
  background: linear-gradient(135deg, #C77A0A, #8B5A08);
  color: #FFFFFF;
  border: 2px solid #C77A0A;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

#save-preferences:hover {
  background: linear-gradient(135deg, #E89B1E, #C77A0A);
  transform: translateY(-2px);
}

/* Quick Links Grid */
.links-grid,
.quick-links .links-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.link-card {
  flex: 1 1 220px;
  background: linear-gradient(135deg, #2A2A2A, #1A1A1A);
  padding: 24px 20px;
  border: 2px solid #404040;
  border-radius: 4px;
  text-align: center;
  color: #C77A0A;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  display: block;
}

.link-card:hover {
  border-color: #C77A0A;
  background: rgba(199, 122, 10, 0.1);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(199, 122, 10, 0.3);
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .subheadline {
    font-size: 16px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  /* Trust badges stack */
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  .trust-badges span {
    text-align: center;
  }
  
  /* CTA buttons stack */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Stats grid to column */
  .stats-grid {
    flex-direction: column;
  }
  
  .stat-item {
    flex: 1 1 100%;
  }
  
  /* Services grid */
  .services-grid,
  .addon-grid,
  .pricing-grid {
    flex-direction: column;
  }
  
  .service-card,
  .addon-card,
  .pricing-tier {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .pricing-tier.featured {
    transform: scale(1);
  }
  
  /* Features grid */
  .features-grid {
    flex-direction: column;
  }
  
  .feature-item {
    flex: 1 1 100%;
  }
  
  /* Portfolio grid */
  .projects-grid {
    flex-direction: column;
  }
  
  .project-card {
    flex: 1 1 100%;
  }
  
  /* Results grid */
  .results-grid {
    flex-direction: column;
  }
  
  .result-item {
    flex: 1 1 100%;
  }
  
  /* Mission grid */
  .mission-grid {
    flex-direction: column;
  }
  
  .mission-item {
    flex: 1 1 100%;
  }
  
  /* Team departments */
  .team-departments {
    flex-direction: column;
  }
  
  .department {
    flex: 1 1 100%;
  }
  
  /* Payment grid */
  .payment-grid {
    flex-direction: column;
  }
  
  .payment-option {
    flex: 1 1 100%;
  }
  
  /* Contact methods */
  .methods-grid,
  .contact-details {
    flex-direction: column;
  }
  
  .method-card,
  .contact-item {
    flex: 1 1 100%;
  }
  
  /* Steps grid */
  .steps-grid {
    flex-direction: column;
  }
  
  .step-item {
    flex: 1 1 100%;
  }
  
  /* Waiting actions */
  .waiting-actions {
    flex-direction: column;
  }
  
  .action-card {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
  }
  
  /* Cookie banner */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-text {
    flex: 1 1 100%;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Modal adjustments */
  .modal-content {
    padding: 32px 20px;
  }
  
  .modal-buttons {
    flex-direction: column;
  }
  
  #save-preferences {
    width: 100%;
  }
  
  /* Links grid */
  .links-grid {
    flex-direction: column;
  }
  
  .link-card {
    flex: 1 1 100%;
  }
}

/* Tablet breakpoint */
@media (min-width: 769px) and (max-width: 1024px) {
  /* Services grid - 2 columns */
  .services-grid {
    justify-content: space-between;
  }
  
  .service-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  /* Pricing grid - 2 columns */
  .pricing-grid {
    justify-content: space-between;
  }
  
  .pricing-tier {
    flex: 1 1 calc(50% - 12px);
  }
  
  /* Projects grid - 2 columns */
  .projects-grid {
    justify-content: space-between;
  }
  
  .project-card {
    flex: 1 1 calc(50% - 12px);
  }
}

/* Print styles */
@media print {
  header,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .cta-section,
  footer {
    display: none;
  }
  
  body {
    background: #FFFFFF;
    color: #000000;
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: #000000;
  }
  
  p {
    color: #333333;
  }
}

/* Accessibility improvements */
:focus {
  outline: 2px solid #C77A0A;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #C77A0A;
  outline-offset: 2px;
}

/* Smooth scroll for anchor links */
html {
  scroll-behavior: smooth;
}

/* Loading animation for images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Selection color */
::selection {
  background: #C77A0A;
  color: #FFFFFF;
}

::-moz-selection {
  background: #C77A0A;
  color: #FFFFFF;
}

/* Scrollbar styling for webkit browsers */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #1A1A1A;
}

::-webkit-scrollbar-thumb {
  background: #404040;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #C77A0A;
}

/* End of Industrial Modern CSS */
