/* about-styles.css - Matching Blog Theme Design */

/*--------------------------------------------------------------
# CSS Custom Properties - Matching Blog Color Scheme
--------------------------------------------------------------*/
:root {
  /* Primary Blog Colors */
  --primary-color: #1C1C1C;
  --accent-red: #FF3B30;
  --accent-orange: #FF6A00;
  --secondary-silver: #C0C0C0;
  --electric-lime: #CCFF00;
  --electric-cyan: #00FFFF;
  --text-white: #FFFFFF;
  --text-gray: #CCCCCC;
  --bg-dark: #0A0A0A;
  --bg-darker: #060606;
  
  /* Spacing System */
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-xxl: 3rem;
  --space-xxxl: 4rem;
  
  /* Typography Scale */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
}

/*--------------------------------------------------------------
# Base Layout - Dark Theme
--------------------------------------------------------------*/
.content-wrapper {
  background: var(--primary-color);
  min-height: 100vh;
  color: var(--text-white);
  padding-top: 80px;
}

.about-us {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-lg);
}

/*--------------------------------------------------------------
# Hero Banner - Dark Gaming Style
--------------------------------------------------------------*/
.hero-banner {
  position: relative;
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--primary-color) 50%, var(--bg-dark) 100%);
  min-height: 80vh;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: var(--space-xxl);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 59, 48, 0.2);
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, var(--accent-red) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, var(--accent-orange) 0%, transparent 50%);
  opacity: 0.1;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  z-index: 2;
}

.hero-content {
  text-align: center;
  color: var(--text-white);
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 3;
}

.hero-title {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: clamp(var(--text-3xl), 6vw, var(--text-5xl));
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
  background: linear-gradient(45deg, var(--text-white), var(--secondary-silver));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-transform: uppercase;
  line-height: 1.1;
}

.hero-subtitle {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: clamp(var(--text-lg), 3vw, var(--text-2xl));
  font-weight: 600;
  margin-bottom: var(--space-md);
  color: var(--accent-red);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-description {
  font-family: 'Inter', sans-serif;
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  line-height: 1.6;
  margin-bottom: var(--space-xl);
  color: var(--text-gray);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-lg);
  max-width: 600px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: var(--space-md);
  background: rgba(255, 59, 48, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 59, 48, 0.2);
  transition: all 0.3s ease;
}

.stat-item:hover {
  border-color: var(--accent-red);
  background: rgba(255, 59, 48, 0.2);
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 800;
  color: var(--accent-red);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--text-gray);
  text-transform: uppercase;
}

/*--------------------------------------------------------------
# Section Headers - Consistent Styling
--------------------------------------------------------------*/
.section-header {
  text-align: center;
  margin-bottom: var(--space-xxl);
}

.company-intro,
.our-story,
.our-expertise,
.our-commitment,
.testimonials {
  margin-bottom: var(--space-xxl);
}

.company-intro h2,
.our-story h2,
.our-expertise h2,
.our-commitment h2,
.testimonials h2 {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 700;
  color: var(--text-white);
  text-align: center;
  margin-bottom: var(--space-lg);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
}

.company-intro h2::after,
.our-story h2::after,
.our-expertise h2::after,
.our-commitment h2::after,
.testimonials h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  margin: var(--space-md) auto 0;
  border-radius: 2px;
}

/*--------------------------------------------------------------
# Company Intro Section
--------------------------------------------------------------*/
.company-intro {
  background: var(--bg-dark);
  padding: var(--space-xxl);
  border-radius: 20px;
  border: 1px solid rgba(255, 59, 48, 0.2);
  transition: all 0.3s ease;
}

.company-intro:hover {
  border-color: var(--accent-red);
  box-shadow: 0 10px 30px rgba(255, 59, 48, 0.1);
}

.intro-text p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  line-height: 1.7;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

/*--------------------------------------------------------------
# Our Story Section - Side by Side Layout
--------------------------------------------------------------*/
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.story-content {
  background: var(--bg-dark);
  padding: var(--space-xxl);
  border-radius: 20px;
  border: 1px solid rgba(255, 59, 48, 0.2);
  transition: all 0.3s ease;
}

.story-content:hover {
  border-color: var(--accent-red);
  box-shadow: 0 10px 30px rgba(255, 59, 48, 0.1);
}

.story-content h2 {
  text-align: left;
}

.story-content h2::after {
  margin: var(--space-md) 0 0;
}

.story-text p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: var(--space-lg);
}

.story-text p:last-child {
  margin-bottom: var(--space-xl);
}

.founder-signature {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  font-family: 'Inter', sans-serif;
  font-style: italic;
  color: var(--secondary-silver);
  font-size: var(--text-sm);
}

.signature-line {
  width: 50px;
  height: 2px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
}

.story-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 59, 48, 0.2);
  transition: all 0.3s ease;
}

.story-image:hover {
  border-color: var(--accent-red);
  transform: scale(1.02);
  box-shadow: 0 15px 35px rgba(255, 59, 48, 0.2);
}

.story-image img {
  width: 100%;
  height: auto;
  display: block;
}

.image-overlay {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  color: var(--text-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: 10px;
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.05em;
}

/*--------------------------------------------------------------
# Expertise Section - Gaming Style Cards
--------------------------------------------------------------*/
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.expertise-item {
  background: var(--bg-dark);
  padding: var(--space-xxl);
  border-radius: 20px;
  border: 1px solid rgba(255, 59, 48, 0.2);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.expertise-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 59, 48, 0.1), transparent);
  transition: left 0.5s ease;
}

.expertise-item:hover::before {
  left: 100%;
}

.expertise-item:hover {
  transform: translateY(-10px);
  border-color: var(--accent-red);
  box-shadow: 0 20px 40px rgba(255, 59, 48, 0.2);
}

.expertise-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: var(--text-2xl);
  position: relative;
  z-index: 2;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.expertise-item h3 {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: clamp(var(--text-lg), 3vw, var(--text-xl));
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-md);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

.expertise-item p {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-gray);
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 2;
}

.expertise-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  position: relative;
  z-index: 2;
}

.expertise-features span {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  color: var(--accent-red);
  font-weight: 500;
}

/*--------------------------------------------------------------
# Commitment Section - Grid Layout
--------------------------------------------------------------*/
.our-commitment {
  background: var(--bg-dark);
  padding: var(--space-xxl);
  border-radius: 20px;
  border: 1px solid rgba(255, 59, 48, 0.2);
  transition: all 0.3s ease;
}

.our-commitment:hover {
  border-color: var(--accent-red);
  box-shadow: 0 10px 30px rgba(255, 59, 48, 0.1);
}

.commitment-intro {
  font-family: 'Inter', sans-serif;
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  line-height: 1.7;
  color: var(--text-gray);
  max-width: 800px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}

.commitment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.commitment-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  background: rgba(255, 59, 48, 0.05);
  padding: var(--space-xl);
  border-radius: 15px;
  border: 1px solid rgba(255, 59, 48, 0.2);
  transition: all 0.3s ease;
  text-align: left;
}

.commitment-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-red);
  background: rgba(255, 59, 48, 0.1);
}

.commitment-icon {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: var(--text-xl);
}

.commitment-content h3 {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: clamp(var(--text-lg), 3vw, var(--text-xl));
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.commitment-content p {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-gray);
  margin: 0;
}

/*--------------------------------------------------------------
# Testimonials - Blog Style Cards
--------------------------------------------------------------*/
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

.testimonial-item {
  background: var(--bg-dark);
  padding: var(--space-xxl);
  border-radius: 20px;
  border: 1px solid rgba(255, 59, 48, 0.2);
  position: relative;
  transition: all 0.3s ease;
  text-align: left;
}

.testimonial-item::before {
  content: '"';
  position: absolute;
  top: -5px;
  left: var(--space-lg);
  font-size: 4rem;
  color: var(--accent-red);
  font-family: Georgia, serif;
  opacity: 0.3;
  line-height: 1;
}

.testimonial-item:hover {
  transform: translateY(-10px);
  border-color: var(--accent-red);
  box-shadow: 0 20px 40px rgba(255, 59, 48, 0.2);
}

.testimonial-content p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  line-height: 1.7;
  color: var(--text-gray);
  margin-bottom: var(--space-lg);
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.testimonial-author img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-red);
  flex-shrink: 0;
}

.testimonial-info h4 {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: var(--space-xs);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.testimonial-info p {
  font-family: 'Inter', sans-serif;
  font-size: var(--text-sm);
  color: var(--secondary-silver);
  margin: 0 0 var(--space-xs);
  font-style: normal;
}

.rating {
  display: flex;
  gap: 2px;
}

.rating i {
  color: var(--accent-orange);
  font-size: var(--text-sm);
}

/*--------------------------------------------------------------
# Call to Action - Gaming Style
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--primary-color) 50%, var(--bg-dark) 100%);
  padding: var(--space-xxxl) var(--space-lg);
  border-radius: 20px;
  text-align: center;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 59, 48, 0.2);
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 70%, var(--accent-red) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, var(--accent-orange) 0%, transparent 50%);
  opacity: 0.1;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta h2 {
  font-family: 'Bebas Neue', Arial, sans-serif;
  font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: 1.2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: linear-gradient(45deg, var(--text-white), var(--secondary-silver));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta p {
  font-family: 'Inter', sans-serif;
  font-size: clamp(var(--text-base), 2vw, var(--text-lg));
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  color: var(--text-gray);
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
}

.cta .btn {
  font-family: 'Bebas Neue', Arial, sans-serif;
  padding: var(--space-md) var(--space-xl);
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: var(--text-lg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  min-width: 200px;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.cta .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.cta .btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  color: var(--text-white);
  border: 2px solid transparent;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 59, 48, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  border: 2px solid var(--secondary-silver);
}

.btn-secondary:hover {
  background: var(--secondary-silver);
  color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(192, 192, 192, 0.3);
}

/*--------------------------------------------------------------
# Responsive Breakpoints - Mobile First
--------------------------------------------------------------*/

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .about-us {
    padding: var(--space-xl);
  }
  
  .hero-stats {
    max-width: 700px;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .about-us {
    padding: var(--space-xl) var(--space-xxl);
  }
  
  .hero-banner {
    min-height: 85vh;
  }
  
  .story-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxxl);
  }
  
  .story-image {
    order: 2;
  }
  
  .expertise-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
  
  .commitment-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  }
  
  .testimonial-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  }
  
  .blog-container {
    grid-template-columns: 1fr 300px;
    gap: 40px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .about-us {
    padding: var(--space-xxl) var(--space-xxxl);
  }
  
  .hero-banner {
    min-height: 90vh;
  }
  
  .expertise-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .commitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .commitment-item {
    flex-direction: row;
  }
  
  .blog-container {
    grid-template-columns: 1fr 350px;
    gap: 60px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-content {
    max-width: 1000px;
  }
  
  .story-grid {
    gap: 5rem;
  }
  
  .expertise-item,
  .commitment-item,
  .testimonial-item {
    padding: var(--space-xxl);
  }
}

/* Ultra wide screens (1400px and up) */
@media (min-width: 1400px) {
  .about-us {
    max-width: 1400px;
  }
}

/*--------------------------------------------------------------
# Accessibility & Performance Optimizations
--------------------------------------------------------------*/

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .expertise-icon {
    animation: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .hero-banner,
  .cta,
  .expertise-item,
  .commitment-item,
  .testimonial-item,
  .company-intro,
  .story-content,
  .our-commitment {
    border-width: 2px;
  }
}

/* Focus styles for keyboard navigation */
.btn:focus,
.cta-buttons a:focus {
  outline: 3px solid var(--accent-orange);
  outline-offset: 2px;
}

/* Ensure text remains readable during web font load */
.hero-title,
.hero-subtitle,
h2, h3, h4 {
  font-display: swap;
}

/*--------------------------------------------------------------
# Mobile Specific Optimizations
--------------------------------------------------------------*/
@media (max-width: 767px) {
  .hero-banner {
    min-height: 70vh;
    margin-bottom: var(--space-xl);
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    max-width: 300px;
  }
  
  .stat-item {
    padding: var(--space-lg);
  }
  
  .expertise-item,
  .commitment-item,
  .testimonial-item {
    padding: var(--space-lg);
  }
  
  .commitment-item {
    flex-direction: column;
    text-align: center;
  }
  
  .story-content,
  .company-intro,
  .our-commitment {
    padding: var(--space-lg);
  }
  
  .cta {
    padding: var(--space-xl) var(--space-lg);
  }
}

@media (max-width: 480px) {
  .about-us {
    padding: var(--space-md);
  }
  
  .hero-banner {
    border-radius: 15px;
    min-height: 60vh;
  }
  
  .hero-content {
    padding: 0 var(--space-md);
  }
  
  .expertise-icon {
    width: 80px;
    height: 80px;
    font-size: var(--text-xl);
  }
  
  .commitment-icon {
    width: 60px;
    height: 60px;
    font-size: var(--text-lg);
  }
  
  .testimonial-author img {
    width: 60px;
    height: 60px;
  }
  
  .company-intro,
  .story-content,
  .our-commitment {
    padding: var(--space-md);
  }
  
  .expertise-item,
  .commitment-item,
  .testimonial-item {
    padding: var(--space-md);
  }
}

/*--------------------------------------------------------------
# Animation Enhancements
--------------------------------------------------------------*/
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll animations for enhanced user experience */
.expertise-item,
.commitment-item,
.testimonial-item {
  animation: slideInUp 0.6s ease-out;
}

.story-image {
  animation: fadeInScale 0.8s ease-out;
}

/*--------------------------------------------------------------
# Print Styles
--------------------------------------------------------------*/
@media print {
  .hero-banner,
  .cta {
    background: none !important;
    color: black !important;
    border: 1px solid black !important;
  }
  
  .hero-content,
  .cta-content {
    color: black !important;
  }
  
  .btn {
    border: 1px solid black !important;
    background: none !important;
    color: black !important;
  }
  
  .expertise-icon,
  .commitment-icon {
    background: none !important;
    border: 2px solid black !important;
    color: black !important;
  }
  
  .testimonial-item,
  .expertise-item,
  .commitment-item,
  .company-intro,
  .story-content,
  .our-commitment {
    background: none !important;
    border: 1px solid black !important;
  }
}

/*--------------------------------------------------------------
# Additional Blog-Style Elements
--------------------------------------------------------------*/

/* Page header similar to blog */
.page-header {
  background: linear-gradient(135deg, var(--bg-darker) 0%, var(--primary-color) 50%, var(--bg-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: var(--space-xxl);
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, var(--accent-red) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, var(--accent-orange) 0%, transparent 50%);
  opacity: 0.1;
  z-index: 1;
}

/* Hover effects for interactive elements */
.expertise-item:hover .expertise-icon,
.commitment-item:hover .commitment-icon {
  animation: pulse 1s ease-in-out;
}

/* Enhanced gradient text effects */
.gradient-text {
  background: linear-gradient(45deg, var(--accent-red), var(--accent-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Gaming-style glow effects */
.glow-red {
  box-shadow: 0 0 20px rgba(255, 59, 48, 0.3);
}

.glow-orange {
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.3);
}

/* Consistent border radius throughout */
.rounded-lg {
  border-radius: 20px;
}

.rounded-md {
  border-radius: 15px;
}

.rounded-sm {
  border-radius: 10px;
}

/*--------------------------------------------------------------
# Custom Scrollbar to Match Theme
--------------------------------------------------------------*/
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-red));
}

/*--------------------------------------------------------------
# Loading States & Skeleton Screens
--------------------------------------------------------------*/
.skeleton {
  background: linear-gradient(90deg, var(--bg-dark) 25%, var(--primary-color) 50%, var(--bg-dark) 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/*--------------------------------------------------------------
# Additional Responsive Enhancements
--------------------------------------------------------------*/

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
  .expertise-item:hover,
  .commitment-item:hover,
  .testimonial-item:hover,
  .story-image:hover {
    transform: none;
  }
  
  /* Larger touch targets */
  .btn {
    min-height: 44px;
    padding: var(--space-md) var(--space-xl);
  }
}

/* Landscape phone optimizations */
@media (max-height: 500px) and (orientation: landscape) {
  .hero-banner {
    min-height: 100vh;
  }
  
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
  }
}

/* Very small screens (Galaxy Fold, etc.) */
@media (max-width: 320px) {
  .hero-title {
    font-size: var(--text-2xl);
  }
  
  .hero-subtitle {
    font-size: var(--text-base);
  }
  
  .hero-stats {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }
  
  .stat-item {
    padding: var(--space-sm);
  }
  
  .expertise-icon,
  .commitment-icon {
    width: 50px;
    height: 50px;
    font-size: var(--text-base);
  }
}