/* Gaming Studio Website - Main Styles */

/* ===== GLOBAL STYLES ===== */
:root {
  --primary-color: #2563eb;
  --secondary-color: #10b981;
  --accent-color: #f59e0b;
  --danger-color: #ef4444;
  --warning-color: #f59e0b;
  --info-color: #06b6d4;
  --success-color: #10b981;
  --dark-color: #1f2937;
  --light-color: #f8fafc;
  --text-dark: #374151;
  --text-light: #6b7280;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  font-size: 16px;
  background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--dark-color);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-light);
}

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: var(--transition);
}

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

.btn {
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  box-shadow: var(--shadow-md);
}

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

/* ===== HEADER & NAVIGATION ===== */
.navbar {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark-color) !important;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--text-dark) !important;
  margin: 0 8px;
  padding: 8px 16px !important;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.navbar-nav .nav-link:hover {
  background-color: var(--light-color);
  color: var(--primary-color) !important;
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

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

.hero-section h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: white;
}

.hero-section h2 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-section p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-section img {
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-lg);
}

/* ===== CARDS & COMPONENTS ===== */
.card {
  border: none;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  overflow: hidden;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

/* Feature Cards */
.feature-card {
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  background: white;
  transition: var(--transition);
}

.feature-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-md);
}

.feature-card i {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Service Cards */
.service-card {
  transition: var(--transition);
}

.service-card .price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 1rem;
}

/* Team Cards */
.team-card {
  padding: 2rem;
  text-align: center;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid var(--light-color);
}

.team-social-links {
  margin-top: 1rem;
}

.social-icons-grid {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.linkedin-link { background-color: #0077b5; }
.instagram-link { background-color: #e4405f; }
.facebook-link { background-color: #1877f2; }

.social-link:hover {
  transform: scale(1.1);
  color: white;
}

/* Price Cards */
.price-card {
  transition: var(--transition);
}

.price-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

.price-card .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
}

/* Review Cards */
.review-card {
  background: var(--light-color);
  border-left: 4px solid var(--primary-color);
}

.review-card .blockquote-footer {
  color: var(--text-light);
  font-style: italic;
}

/* Case Study Cards */
.case-card .card-img-top {
  height: 220px;
}

/* Process Steps */
.process-step {
  padding: 1.5rem;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

/* Timeline */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--border-color);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: 50%;
  padding-right: 2rem;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 50%;
  padding-left: 2rem;
}

.timeline-content {
  background: white;
  padding: 1.5rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.timeline-date {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.875rem;
  font-weight: 600;
}

/* Career Cards */
.career-card .badge {
  font-size: 0.75rem;
}

/* Impact Cards */
.impact-card {
  text-align: center;
  padding: 2rem;
}

.impact-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Info Cards */
.info-card {
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.info-card i {
  color: var(--secondary-color);
}

/* Contact Section */
.contact-info {
  padding: 2rem;
  background: var(--light-color);
  border-radius: var(--border-radius);
}

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

.contact-item i {
  color: var(--primary-color);
}

/* FAQ Cards */
.faq-card {
  transition: var(--transition);
}

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

/* Gallery */
.gallery img {
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.gallery img:hover {
  transform: scale(1.05);
}

/* Material Cards */
.material-card,
.process-card,
.cert-card,
.goal-card,
.research-card,
.tech-card,
.innovation-card,
.partnership-card {
  transition: var(--transition);
}

.material-card:hover,
.process-card:hover,
.cert-card:hover,
.goal-card:hover,
.research-card:hover,
.tech-card:hover,
.innovation-card:hover,
.partnership-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.process-card,
.tech-card,
.impact-card {
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
}

/* Future Tech */
.future-tech {
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.future-tech:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tech-year {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, var(--dark-color), #111827);
  color: white;
}

footer h5 {
  color: white;
  margin-bottom: 1rem;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

footer a:hover {
  color: white;
}

footer hr {
  border-color: rgba(255, 255, 255, 0.2);
}

/* ===== FORMS ===== */
.form-control {
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
  padding: 12px 16px;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* ===== BREADCRUMB ===== */
.breadcrumb {
  background: transparent;
  padding: 0;
}

.breadcrumb-item img {
  opacity: 0.7;
  transition: var(--transition);
}

.breadcrumb-item img:hover {
  opacity: 1;
}

/* ===== UTILITIES ===== */
.bg-light {
  background-color: var(--light-color) !important;
}

.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-success { color: var(--success-color) !important; }
.text-danger { color: var(--danger-color) !important; }
.text-warning { color: var(--warning-color) !important; }
.text-info { color: var(--info-color) !important; }

/* Icon Colors */
.fa-leaf, .fa-seedling { color: var(--success-color) !important; }
.fa-heart, .fa-heartbeat { color: var(--danger-color) !important; }
.fa-award, .fa-certificate { color: var(--warning-color) !important; }
.fa-recycle, .fa-infinity { color: var(--info-color) !important; }
.fa-water, .fa-tint { color: var(--primary-color) !important; }
.fa-wind, .fa-air-freshener { color: var(--info-color) !important; }

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== RESPONSIVE SPACING ===== */
.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

section {
  position: relative;
}

/* ===== CUSTOM BADGE COLORS ===== */
.badge.bg-primary { background-color: var(--primary-color) !important; }
.badge.bg-success { background-color: var(--success-color) !important; }
.badge.bg-info { background-color: var(--info-color) !important; }
.badge.bg-warning { background-color: var(--warning-color) !important; }

/* ===== SMOOTH SCROLLING ===== */
html {
  scroll-behavior: smooth;
}

/* ===== LOADING STATES ===== */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

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

/* Focus styles for better accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}
