
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500&display=swap');

:root {
  --primary-color: #007aff;
  --secondary-color: #5856d6;
  --accent-color: #ff9500;
  --text-primary: #1d1d1f;
  --text-secondary: #86868b;
  --text-tertiary: #a1a1a6;
  --background-primary: #ffffff;
  --background-secondary: #f5f5f7;
  --background-tertiary: #fbfbfd;
  --border-color: #d2d2d7;
  --border-light: #f5f5f7;
  --apple-blue: #007aff;
  --apple-purple: #5856d6;
  --apple-orange: #ff9500;
  --apple-gray: #8e8e93;
  
  /* Simple shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  /* Border radius system */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--background-secondary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.6;
  font-size: 16px;
  transition: background-color 0.2s ease;
}

/* Header */
header {
  background: var(--background-primary);
  padding: 3rem 2rem 2rem 2rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

header h1 {
  color: var(--text-primary);
  font-weight: 600;
  margin: 0 0 16px 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
}

.header-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 400;
  color: var(--text-secondary);
  margin: 0;
  max-width: 600px;
  line-height: 1.5;
}

/* Navigation */
nav {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav a, nav button {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

nav a:hover, nav button:hover {
  color: var(--apple-blue);
  background-color: rgba(0, 122, 255, 0.1);
}

nav .social-link {
  background: var(--apple-blue);
  color: white;
  border-radius: var(--radius-lg);
  padding: 6px 12px;
  font-size: 15px;
  font-weight: 500;
}

nav .social-link:hover {
  background: var(--apple-blue);
  color: white;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

nav .social-link::after {
  display: none;
}

/* Main Content */
main {
  padding: 40px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

/* Footer */
footer {
  background: var(--background-secondary);
  border-top: 1px solid var(--border-color);
  margin-top: 60px;
  padding: 40px 24px;
}

.footer-content {
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}

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

.footer-content p {
  font-size: 14px;
  line-height: 1.42857;
  color: var(--text-secondary);
  margin: 0;
  letter-spacing: -0.016em;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.42857;
  letter-spacing: -0.016em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 4px 0;
}

.contact-link:hover {
  color: var(--apple-blue);
  transform: translateX(2px);
}

.contact-link i {
  width: 16px;
  font-size: 12px;
  color: var(--apple-blue);
}

.footer-flags {
  display: flex;
  align-items: center;
  gap: 12px;
}

.flag-icon {
  font-size: 24px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  filter: grayscale(0.2);
}

.flag-icon:hover {
  transform: scale(1.1);
  filter: grayscale(0);
}

/* Contact Methods Styling */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 32px;
}

.contact-method {
  background: var(--background-secondary);
  border-radius: 16px;
  padding: 24px;
  border: 0.5px solid var(--border-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-method:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-method-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-method-header i {
  font-size: 20px;
  color: var(--apple-blue);
}

.contact-method-header h4 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.radio-info span {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.42857;
}

/* Apple Typography */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-weight: 600;
  line-height: 1.08349;
  letter-spacing: -0.015em;
  margin: 0 0 20px 0;
  font-feature-settings: "kern";
}

h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.125;
  letter-spacing: -0.003em;
  margin-bottom: 24px;
}

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.16667;
  letter-spacing: -0.005em;
}

p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.47059;
  letter-spacing: -0.022em;
  margin-bottom: 20px;
}

/* Ultra-Modern Cards with Cisco/Gov Inspiration */
.card {
  background: var(--background-primary);
  border-radius: 24px;
  padding: 48px 40px;
  border: 0.5px solid var(--border-light);
  margin-bottom: 32px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 16px 32px rgba(0, 0, 0, 0.04),
    0 8px 16px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 122, 255, 0.2), transparent);
}

.card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--apple-blue);
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 0 2px 2px;
}

.card:hover::after {
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 32px 64px rgba(0, 0, 0, 0.08),
    0 16px 32px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 122, 255, 0.1);
}

/* Subtle divider lines */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-color), transparent);
  margin: 60px 0;
  border: none;
}

/* Animations */

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

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

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


/* 🌙 Apple Dark Mode */
body.dark-mode {
  --text-primary: #f5f5f7;
  --text-secondary: #a1a1a6;
  --text-tertiary: #8e8e93;
  --background-primary: #000000;
  --background-secondary: #1d1d1f;
  --background-tertiary: #2d2d30;
  --border-color: #424245;
  --border-light: #2d2d30;
  --apple-blue: #0a84ff;
  --apple-purple: #5e5ce6;
  --apple-orange: #ff9f0a;
  --apple-gray: #98989d;
  
  /* Dark mode shadows */
  --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.3), 0 1px 2px 0 rgba(0, 0, 0, 0.2);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
}

body.dark-mode nav {
  background: rgba(29, 29, 31, 0.8);
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.1);
}

body.dark-mode .expertise-badge {
  background: rgba(10, 132, 255, 0.15);
  color: var(--apple-blue);
  border-color: rgba(10, 132, 255, 0.3);
}

/* Responsive iframe wrapper */
.iframe-container {
  position: relative;
  width: 100%;
  max-width: 1280px;
  margin: 2rem auto;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--background-primary);
}

.iframe-container iframe {
  width: 100%;
  height: 500px;
  border: none;
  display: block;
}

/* Skills grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.skill-card {
  background: var(--background-primary);
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

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

.skill-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.skill-card h3 {
  margin: 0.5rem 0;
  color: var(--text-primary);
}

.skill-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* Gallery styles */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-lg);
}

/* Modern Social Links with Cisco/Gov Styling */
.social-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin: 48px 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--apple-blue);
  color: white;
  text-decoration: none;
  border-radius: 28px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -0.016em;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 
    0 8px 16px rgba(0, 122, 255, 0.3),
    0 4px 8px rgba(0, 122, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.social-link::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 cubic-bezier(0.4, 0, 0.2, 1);
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 16px 32px rgba(0, 122, 255, 0.4),
    0 8px 16px rgba(0, 122, 255, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-decoration: none;
  color: white;
}

.social-link.linkedin {
  background: linear-gradient(135deg, #0077b5, #00a0dc);
}

/* Banner */
.site-banner {
  background: var(--apple-orange);
  color: white;
  text-align: center;
  padding: 0.75rem;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

/* Ultra-Modern Mobile Responsive */
@media (max-width: 768px) {
  nav {
    padding: 8px 16px;
    gap: 4px;
  }
  
  nav a, nav button {
    padding: 3px 6px;
    font-size: 13px;
    min-height: 32px;
  }
  
  main {
    padding: 40px 20px;
  }
  
  header {
    padding: 2rem 1.5rem;
    min-height: 30vh;
  }
  
  .hero-section {
    padding: 60px 32px;
    margin: 60px 0;
    border-radius: 24px;
  }
  
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 60px 0;
  }
  
  .expertise-card {
    padding: 32px 24px;
  }
  
  .card {
    padding: 32px 24px;
    border-radius: 20px;
  }
  
  .social-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .iframe-container iframe {
    height: 400px;
  }
  
  .footer-content {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }
  
  .footer-left {
    align-items: center;
    text-align: center;
  }
  
  .contact-methods {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  main {
    padding: 1rem;
  }
  
  .skills-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
  
  .iframe-container iframe {
    height: 300px;
  }
}

/* 🌟 GOLD GLOW EFFECTS */
:root {
  --gold-color: #ffd700;
  --gold-glow: 0 0 20px #ffd700, 0 0 40px #ffd700, 0 0 60px #ffd700;
  --gold-glow-soft: 0 0 10px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.2);
}

/* Add gold glow to interactive elements */
nav a:hover, nav button:hover {
  color: var(--gold-color);
  background-color: rgba(255, 215, 0, 0.1);
  box-shadow: var(--gold-glow-soft);
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 32px 64px rgba(0, 0, 0, 0.08),
    0 16px 32px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    var(--gold-glow-soft);
  border-color: rgba(255, 215, 0, 0.3);
}

.expertise-card:hover {
  animation: morphBounce 0.8s ease-in-out infinite, liquidWave 1.5s ease-in-out infinite;
  box-shadow: 
    0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04),
    var(--gold-glow-soft);
  border-color: var(--gold-color);
}

.social-link:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 
    0 16px 32px rgba(255, 215, 0, 0.4),
    0 8px 16px rgba(255, 215, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.break-img:hover {
  transform: scale(1.1);
  box-shadow: var(--gold-glow);
  background: var(--gold-color) !important;
}

/* 🚀 EXCITING MODERN CSS EFFECTS */

/* Ultra-Modern Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-secondary) 100%);
  padding: 120px 60px;
  border-radius: 32px;
  margin: 120px 0;
  text-align: center;
  border: 0.5px solid var(--border-light);
  overflow: hidden;
  box-shadow: 
    0 32px 64px rgba(0, 0, 0, 0.04),
    0 16px 32px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 122, 255, 0.3), transparent);
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 122, 255, 0.1), transparent);
}

/* Ultra-Modern Hero Text */
.hero-title {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin: 0 0 24px 0;
  background: var(--apple-blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.hero-subtitle {
  font-size: clamp(19px, 3vw, 24px);
  line-height: 1.33333;
  font-weight: 400;
  letter-spacing: -0.009em;
  color: var(--text-secondary);
  margin-bottom: 48px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* Pulse Button Effect */
.pulse-button {
  position: relative;
  display: inline-block;
}

.cta-button {
  background: var(--apple-blue);
  border: 2px solid var(--apple-blue);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  animation: pulse 2s infinite;
  box-shadow: var(--shadow-md);
}

.cta-button:hover {
  background: var(--apple-purple);
  border-color: var(--apple-purple);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

/* Ultra-Modern Expertise Cards */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin: 80px 0;
}

.expertise-card {
  background: var(--background-primary);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  border: 0.5px solid var(--border-light);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
  box-shadow: 
    0 16px 32px rgba(0, 0, 0, 0.04),
    0 8px 16px rgba(0, 0, 0, 0.02),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.expertise-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}

.expertise-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--apple-blue);
  transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0 0 2px 2px;
}

.expertise-card:hover::after {
  height: 100%;
}

.expertise-card:hover {
  animation: morphBounce 0.8s ease-in-out infinite, liquidWave 1.5s ease-in-out infinite;
  box-shadow: var(--shadow-xl);
  border-color: var(--apple-blue);
}

.skill-icon {
  font-size: 32px;
  color: var(--apple-blue);
  margin-bottom: 16px;
  display: block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.expertise-card:hover .skill-icon {
  color: var(--apple-purple);
  transform: scale(1.05);
}

.expertise-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 122, 255, 0.1);
  color: var(--apple-blue);
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.008em;
  border: 1px solid rgba(0, 122, 255, 0.2);
}

/* Stats Showcase */
.stats-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
  padding: 2rem;
  background: linear-gradient(45deg, var(--background-secondary), var(--background-primary));
  border-radius: 1rem;
  border: 1px solid var(--border-color);
}

.stat-item {
  text-align: center;
  padding: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.stat-item:hover {
  transform: scale(1.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--apple-blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: pulse 2s ease-in-out infinite;
}

.stat-label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  font-weight: 500;
}

/* Service Cards */
.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.service-card {
  background: var(--background-primary);
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
  position: relative;
}

.service-card.premium {
  border: 2px solid var(--primary-color);
  box-shadow: 0 0 30px rgba(37, 99, 235, 0.2);
}

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

.service-header {
  padding: 2rem;
  background: var(--apple-blue);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.service-header::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;
}

.service-card:hover .service-header::before {
  left: 100%;
}

.service-header i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: float 3s ease-in-out infinite;
}

.service-content {
  padding: 2rem;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.feature-tag {
  background: var(--primary-color);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.service-footer {
  padding: 0 2rem 2rem 2rem;
}

.service-btn {
  width: 100%;
  padding: 1rem;
  background: var(--apple-orange);
  color: white;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Testimonial Section */
.testimonial-section {
  background: var(--apple-blue);
  color: white;
  padding: 4rem 2rem;
  border-radius: 1rem;
  margin: 3rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.testimonial-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.quote-icon {
  font-size: 4rem;
  opacity: 0.3;
  margin-bottom: 2rem;
  animation: pulse 3s ease-in-out infinite;
}

.testimonial-section blockquote {
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 2rem 0;
  position: relative;
}

.testimonial-author {
  margin-top: 2rem;
}

.testimonial-author strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.testimonial-author span {
  opacity: 0.8;
  font-size: 0.9rem;
}

/* Contact CTA */
.contact-cta {
  background: var(--background-secondary);
  padding: 3rem 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid var(--border-color);
  margin: 3rem 0;
}

.cta-content h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: var(--apple-blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.cta-primary {
  background: var(--apple-blue);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: white;
}

.cta-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-family: inherit;
  font-size: inherit;
}

.cta-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-3px);
  text-decoration: none;
}

/* Breaking 4th Wall Images */
.breaking-images {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 50;
}

.break-img {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--apple-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-md);
  animation: floatGentle 4s ease-in-out infinite;
}

.break-img:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-lg);
}

.break-img-1 {
  top: 15%;
  left: 8%;
  background: var(--apple-blue);
}

.break-img-2 {
  top: 25%;
  right: 12%;
  background: var(--apple-orange);
}

.break-img-3 {
  bottom: 35%;
  left: 6%;
  background: var(--apple-purple);
}

.break-img-4 {
  bottom: 20%;
  right: 15%;
  background: var(--apple-blue);
}


/* 📻 MORSE CODE GAME EASTER EGG */
.morse-game-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10052;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-out;
}

.morse-game-container {
  background: var(--background-primary);
  border-radius: 24px;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 
    0 32px 64px rgba(0, 0, 0, 0.2),
    0 16px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 0.5px solid var(--border-light);
  animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.morse-game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 0.5px solid var(--border-light);
  background: var(--background-secondary);
  border-radius: 24px 24px 0 0;
}

.morse-game-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  background: var(--apple-blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.close-game {
  background: rgba(255, 59, 48, 0.1);
  border: 1px solid rgba(255, 59, 48, 0.2);
  color: #ff3b30;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
}

.close-game:hover {
  background: rgba(255, 59, 48, 0.2);
  transform: scale(1.05);
}

.morse-game-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Game Stats */
.game-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat {
  background: var(--background-secondary);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  border: 0.5px solid var(--border-light);
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 500;
}

.stat-value {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--apple-blue);
  font-family: 'JetBrains Mono', monospace;
}

/* Morse Display */
.morse-display {
  text-align: center;
  padding: 40px;
  background: linear-gradient(135deg, var(--background-primary), var(--background-secondary));
  border-radius: 20px;
  border: 0.5px solid var(--border-light);
}

.current-letter {
  font-size: 80px;
  font-weight: 700;
  color: var(--apple-blue);
  margin-bottom: 16px;
  font-family: 'JetBrains Mono', monospace;
  text-shadow: 0 2px 8px rgba(0, 122, 255, 0.3);
}

.morse-code {
  font-size: 36px;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 24px;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 4px;
}

.morse-visual {
  height: 60px;
  background: var(--background-secondary);
  border-radius: 8px;
  margin: 0 auto;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
}

/* Game Controls */
.game-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.morse-key {
  width: 120px;
  height: 120px;
  border-radius: 60px;
  background: var(--apple-blue);
  border: none;
  color: white;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.1s ease;
  box-shadow: 
    0 8px 16px rgba(0, 122, 255, 0.3),
    0 4px 8px rgba(0, 122, 255, 0.2),
    inset 0 2px 0 rgba(255, 255, 255, 0.2);
  user-select: none;
}

.morse-key:active {
  transform: scale(0.95);
  box-shadow: 
    0 4px 8px rgba(0, 122, 255, 0.4),
    0 2px 4px rgba(0, 122, 255, 0.3),
    inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

.morse-key i {
  font-size: 32px;
}

.control-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.game-btn {
  background: var(--background-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 12px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.game-btn:hover {
  background: var(--apple-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Morse Visual Elements */
.morse-dot, .morse-dash {
  display: inline-block;
  background: var(--apple-blue);
  margin: 0 4px;
  border-radius: 50%;
}

.morse-dot {
  width: 12px;
  height: 12px;
}

.morse-dash {
  width: 30px;
  height: 12px;
  border-radius: 6px;
}

.morse-key.active {
  background: var(--gradient-secondary);
  transform: scale(0.95);
  box-shadow: 
    0 4px 8px rgba(255, 45, 85, 0.4),
    0 2px 4px rgba(255, 45, 85, 0.3),
    inset 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* User Input */
.user-input {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.input-display {
  background: var(--background-secondary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 20px 32px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  min-width: 200px;
  text-align: center;
  letter-spacing: 4px;
  transition: all 0.2s ease;
}

.submit-btn {
  background: var(--apple-blue);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Morse Reference */
.morse-reference {
  background: var(--background-secondary);
  border-radius: 16px;
  padding: 24px;
  border: 0.5px solid var(--border-light);
}

.morse-reference h3 {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

.morse-chart {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 12px;
}

.morse-item {
  background: var(--background-primary);
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  border: 0.5px solid var(--border-color);
}

.input-display {
  background: var(--background-secondary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 16px 24px;
  min-height: 60px;
  width: 100%;
  max-width: 400px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 4px;
}

.input-display.correct {
  border-color: #34c759;
  background: rgba(52, 199, 89, 0.1);
  color: #34c759;
}

.input-display.incorrect {
  border-color: #ff3b30;
  background: rgba(255, 59, 48, 0.1);
  color: #ff3b30;
}

.submit-btn {
  background: var(--apple-blue);
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
}

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

/* Morse Reference */
.morse-reference {
  background: var(--background-secondary);
  padding: 24px;
  border-radius: 16px;
  border: 0.5px solid var(--border-light);
}

.morse-reference h3 {
  margin: 0 0 20px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

.morse-chart {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 12px;
}

.morse-item {
  background: var(--background-primary);
  padding: 8px 12px;
  border-radius: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all 0.2s ease;
}

.morse-item:hover {
  background: var(--apple-blue);
  color: white;
  transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .morse-game-container {
    width: 95%;
    margin: 20px;
    max-height: 85vh;
  }
  
  .morse-game-content {
    padding: 20px;
    gap: 24px;
  }
  
  .game-stats {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .current-letter {
    font-size: 60px;
  }
  
  .morse-code {
    font-size: 28px;
  }
  
  .morse-key {
    width: 100px;
    height: 100px;
  }
  
  .control-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .morse-chart {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ✈️ FLIGHT SIMULATOR LANDING CHALLENGE */
.flight-sim-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10051;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-out;
}

.flight-sim-container {
  background: var(--background-primary);
  border-radius: 24px;
  width: 95%;
  max-width: 1200px;
  max-height: 95vh;
  overflow-y: auto;
  box-shadow: 
    0 32px 64px rgba(0, 0, 0, 0.2),
    0 16px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 0.5px solid var(--border-light);
  animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.flight-sim-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 24px 32px;
  border-bottom: 0.5px solid var(--border-light);
  background: linear-gradient(135deg, #87CEEB, #4682B4);
  color: white;
  border-radius: 24px 24px 0 0;
}

.flight-sim-header h2 {
  margin: 0 0 8px 0;
  font-size: 28px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dedication {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.close-flight-sim {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
}

.close-flight-sim:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.flight-sim-content {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Flight Stats */
.flight-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.flight-stats .stat {
  background: var(--background-secondary);
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  border: 0.5px solid var(--border-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-unit {
  font-size: 12px;
  color: var(--text-tertiary);
  font-weight: 500;
}

/* Runway View */
.runway-view {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  background: linear-gradient(to bottom, #87CEEB 0%, #87CEEB 50%, #228B22 50%, #228B22 100%);
}

.sky {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to bottom, #87CEEB, #E0F6FF);
}

.horizon {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #333;
  z-index: 2;
}

.runway {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 200px;
  background: #444;
  border-radius: 8px 8px 0 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 3;
}

.runway-centerline {
  width: 4px;
  height: 80%;
  background: repeating-linear-gradient(
    to bottom,
    white 0px,
    white 10px,
    transparent 10px,
    transparent 20px
  );
  position: absolute;
}

.runway-numbers {
  color: white;
  font-size: 24px;
  font-weight: bold;
  margin-top: -100px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.aircraft {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  color: #FF6B35;
  z-index: 4;
  transition: all 0.1s ease;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.altitude-indicator {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 40px;
  height: 300px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  display: flex;
  align-items: flex-end;
  padding: 10px 5px;
}

.altitude-bars {
  width: 100%;
  background: linear-gradient(to top, #ff3b30, #ff9500, #34c759);
  border-radius: 2px;
  transition: height 0.1s ease;
}

/* Flight Instruments */
.flight-instruments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.instrument-panel {
  background: #1a1a1a;
  border-radius: 16px;
  padding: 20px;
  border: 2px solid #333;
}

.primary-flight-display {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 200px;
}

.attitude-indicator {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #87ceeb 50%, #8b4513 50%);
  border: 3px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.horizon-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #fff;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.1s ease;
}

.aircraft-symbol {
  font-size: 24px;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  z-index: 2;
}

.speed-tape, .altitude-tape {
  background: #000;
  border: 2px solid #333;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  color: #00ff00;
  font-family: 'JetBrains Mono', monospace;
}

.speed-value, .altitude-value {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 4px;
}

.speed-label, .altitude-label {
  font-size: 12px;
  color: #aaa;
}

.vertical-speed {
  background: #000;
  border: 2px solid #333;
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  color: #ffff00;
  font-family: 'JetBrains Mono', monospace;
}

.vs-value {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 4px;
}

.vs-label {
  font-size: 12px;
  color: #aaa;
}

/* Flight Controls */
.flight-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.control-instructions {
  background: var(--background-secondary);
  border-radius: 12px;
  padding: 16px;
  border-left: 4px solid var(--apple-blue);
}

.control-instructions h4 {
  margin: 0 0 12px 0;
  color: var(--text-primary);
  font-size: 16px;
}

.instruction-item {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  line-height: 1.4;
}

.throttle-slider-container {
  margin: 12px 0;
}

.throttle-slider {
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: #ddd;
  outline: none;
  cursor: pointer;
}

.throttle-slider::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--apple-blue);
  cursor: pointer;
}

.throttle-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--apple-blue);
  cursor: pointer;
  border: none;
}

.throttle-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-secondary);
}

.landing-guidance {
  background: var(--background-secondary);
  border-radius: 12px;
  padding: 16px;
  border-left: 4px solid var(--apple-orange);
}

.landing-guidance h4 {
  margin: 0 0 12px 0;
  color: var(--text-primary);
  font-size: 16px;
}

.guidance-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  font-size: 14px;
}

.guidance-label {
  color: var(--text-secondary);
  font-weight: 500;
}

.guidance-value {
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
}

.guidance-value.good {
  color: #34c759;
}

.guidance-value.warning {
  color: #ff9500;
}

.guidance-value.danger {
  color: #ff3b30;
}

.pitch-up {
  background: var(--apple-blue);
  color: white;
}

.pitch-down {
  background: var(--apple-purple);
  color: white;
}

.throttle-up {
  background: #34c759;
  color: white;
}

.throttle-down {
  background: #ff9500;
  color: white;
}

.control-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.control-group label {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

.control-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.control-btn {
  background: var(--background-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.control-btn:hover {
  background: var(--apple-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.control-btn:active {
  transform: translateY(0);
  background: var(--apple-purple);
}

.landing-challenge {
  grid-column: 1 / -1;
  background: var(--background-secondary);
  padding: 24px;
  border-radius: 16px;
  border: 0.5px solid var(--border-light);
  text-align: center;
}

.landing-challenge h3 {
  margin: 0 0 12px 0;
  color: var(--apple-blue);
}

.landing-challenge p {
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--text-secondary);
}

.challenge-status {
  font-size: 18px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 12px;
  margin: 16px 0;
  background: var(--background-primary);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
}

.challenge-status.success {
  background: rgba(52, 199, 89, 0.1);
  border-color: #34c759;
  color: #34c759;
}

.challenge-status.warning {
  background: rgba(255, 149, 0, 0.1);
  border-color: #ff9500;
  color: #ff9500;
}

.challenge-status.danger {
  background: rgba(255, 59, 48, 0.1);
  border-color: #ff3b30;
  color: #ff3b30;
}

.reset-flight-btn {
  background: var(--apple-orange);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  box-shadow: var(--shadow-md);
}

.reset-flight-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Mobile Responsive for Flight Sim */
@media (max-width: 768px) {
  .flight-sim-container {
    width: 98%;
    margin: 10px;
    max-height: 90vh;
  }
  
  .flight-sim-content {
    padding: 20px;
  }
  
  .flight-stats {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .runway-view {
    height: 300px;
  }
  
  .aircraft {
    font-size: 24px;
  }
  
  .flight-controls {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .control-buttons {
    flex-direction: row;
    justify-content: center;
  }
  
  .control-btn {
    flex: 1;
    max-width: 150px;
  }
}

/* 📞 PHONE SCREENING GAME */
.phone-game-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 10050;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease-out;
}

.phone-game-container {
  background: var(--background-primary);
  border-radius: 24px;
  width: 98%;
  max-width: 1400px;
  max-height: 95vh;
  overflow-y: auto;
  box-shadow: 
    0 32px 64px rgba(0, 0, 0, 0.2),
    0 16px 32px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  border: 0.5px solid var(--border-light);
  animation: slideInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-game-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 24px 32px;
  border-bottom: 0.5px solid var(--border-light);
  background: linear-gradient(135deg, #2E8B57, #20B2AA);
  color: white;
  border-radius: 24px 24px 0 0;
}

.phone-game-header h2 {
  margin: 0 0 8px 0;
  font-size: 28px;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.game-subtitle {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.close-phone-game {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
}

.close-phone-game:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.05);
}

.phone-game-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Game Stats Bar */
.game-stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 20px;
  background: var(--background-secondary);
  border-radius: 16px;
  border: 0.5px solid var(--border-light);
}

.game-stats-bar .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.game-stats-bar .stat-label {
  font-size: 12px;
  color: var(--text-tertiary);
  margin-bottom: 4px;
  font-weight: 500;
}

.game-stats-bar .stat-value {
  font-size: 24px;
  font-weight: 700;
  color: var(--apple-blue);
  font-family: 'JetBrains Mono', monospace;
}

/* Phone Workspace */
.phone-workspace {
  display: grid;
  grid-template-columns: 1fr 300px 250px;
  gap: 20px;
  min-height: 500px;
}

/* Call Info Panel */
.call-info-panel {
  background: var(--background-primary);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.incoming-call-indicator {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: linear-gradient(135deg, #ff3b30, #ff6b6b);
  color: white;
  border-radius: 12px;
  margin-bottom: 20px;
  animation: pulse 1.5s ease-in-out infinite;
}

.incoming-call-indicator i {
  font-size: 18px;
  animation: shake 0.8s ease-in-out infinite;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}

.caller-details {
  background: var(--background-secondary);
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  border: 0.5px solid var(--border-light);
}

.caller-name {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.caller-number, .caller-location, .call-time {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 4px;
  font-family: 'JetBrains Mono', monospace;
}

.call-reason {
  background: rgba(0, 122, 255, 0.1);
  border: 1px solid rgba(0, 122, 255, 0.2);
  border-radius: 12px;
  padding: 16px;
  font-size: 16px;
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.5;
}

/* Directory Panel */
.directory-panel {
  background: var(--background-primary);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.directory-panel h3 {
  margin: 0 0 16px 0;
  font-size: 18px;
  color: var(--text-primary);
  text-align: center;
}

.directory-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  background: var(--background-secondary);
  border-radius: 8px;
  padding: 4px;
}

.dir-tab {
  flex: 1;
  padding: 8px 12px;
  background: transparent;
  border: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.2s ease;
}

.dir-tab.active {
  background: var(--apple-blue);
  color: white;
}

.directory-content {
  min-height: 300px;
}

.dir-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  margin-bottom: 8px;
  background: var(--background-secondary);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
}

.dir-item:hover {
  background: var(--apple-blue);
  color: white;
  transform: translateX(4px);
  box-shadow: var(--gold-glow-soft);
}

.dir-item.selected {
  background: var(--gold-color);
  color: var(--text-primary);
  font-weight: 600;
  box-shadow: var(--gold-glow);
}

.dept-name {
  font-size: 14px;
  font-weight: 500;
}

.dept-ext {
  font-size: 12px;
  font-family: 'JetBrains Mono', monospace;
  opacity: 0.8;
}

/* Call Actions Panel */
.call-actions-panel {
  background: var(--background-primary);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.call-actions-panel h3 {
  margin: 0 0 16px 0;
  font-size: 18px;
  color: var(--text-primary);
  text-align: center;
}

.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
}

.transfer-btn {
  background: var(--apple-blue);
  color: white;
}

.transfer-btn:disabled {
  background: var(--text-tertiary);
  cursor: not-allowed;
}

.hold-btn {
  background: var(--apple-orange);
  color: white;
}

.hangup-btn {
  background: #ff3b30;
  color: white;
}

.voicemail-btn {
  background: var(--apple-purple);
  color: white;
}

.action-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.selected-department {
  background: var(--background-secondary);
  border-radius: 12px;
  padding: 16px;
  border: 1px solid var(--border-color);
}

.selection-display {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
}

.selection-label {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

.selection-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--apple-blue);
}

/* Game Feedback */
.game-feedback {
  background: var(--background-secondary);
  border-radius: 16px;
  padding: 20px;
  border: 0.5px solid var(--border-light);
  text-align: center;
}

.feedback-message {
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-weight: 500;
}

.feedback-score {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  display: inline-block;
  margin-top: 8px;
}

.feedback-score.positive {
  background: rgba(52, 199, 89, 0.1);
  color: #34c759;
  border: 1px solid #34c759;
}

.feedback-score.negative {
  background: rgba(255, 59, 48, 0.1);
  color: #ff3b30;
  border: 1px solid #ff3b30;
}

.feedback-score.neutral {
  background: rgba(255, 149, 0, 0.1);
  color: #ff9500;
  border: 1px solid #ff9500;
}

/* Game Controls */
.game-controls {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.game-control-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--apple-blue);
  color: white;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-md);
}

.game-control-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Mobile Responsive for Phone Game */
@media (max-width: 1024px) {
  .phone-workspace {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .game-stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .phone-game-container {
    width: 98%;
    margin: 10px;
    max-height: 85vh;
  }
  
  .phone-game-content {
    padding: 16px;
  }
  
  .game-stats-bar {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .caller-name {
    font-size: 20px;
  }
  
  .action-buttons {
    grid-template-columns: 1fr;
  }
}

/* 📞 PHONE DIALER INTERFACE (Day 2+) */
.phone-dialer {
  background: var(--background-primary);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  margin-top: 20px;
}

.dialer-header {
  text-align: center;
  margin-bottom: 16px;
}

.dialer-header h4 {
  margin: 0 0 12px 0;
  color: var(--text-primary);
  font-size: 18px;
}

.dialer-display {
  background: #000;
  color: #00ff00;
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 8px;
  text-align: center;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #333;
}

.number-pad {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 16px 0;
}

.num-btn {
  background: var(--background-secondary);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 16px 12px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.num-btn span {
  font-size: 10px;
  color: var(--text-tertiary);
  margin-top: 2px;
  font-weight: 400;
}

.num-btn:hover {
  background: var(--apple-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--gold-glow-soft);
}

.num-btn:active {
  transform: translateY(0);
  background: var(--apple-purple);
}

.dialer-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

.dial-btn {
  padding: 12px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.call-btn {
  background: #34c759;
  color: white;
}

.call-btn:hover {
  background: #28a745;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.clear-btn {
  background: #ff3b30;
  color: white;
}

.clear-btn:hover {
  background: #dc3545;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* 🪟 MULTIPLE WINDOWS SYSTEM */
.windows-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10055;
}

.game-window {
  position: absolute;
  background: var(--background-primary);
  border-radius: 12px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  min-width: 300px;
  max-width: 500px;
  max-height: 400px;
  pointer-events: all;
  animation: windowOpen 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes windowOpen {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.window-header {
  background: linear-gradient(135deg, var(--apple-blue), var(--apple-purple));
  color: white;
  padding: 12px 16px;
  border-radius: 12px 12px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: move;
}

.window-title {
  font-size: 14px;
  font-weight: 600;
}

.window-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  transition: all 0.2s ease;
}

.window-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.window-content {
  padding: 16px;
  max-height: 320px;
  overflow-y: auto;
}

/* Extension Directory Styling */
.extension-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ext-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--background-secondary);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: all 0.2s ease;
}

.ext-item:hover {
  background: var(--apple-blue);
  color: white;
  transform: translateX(4px);
  box-shadow: var(--gold-glow-soft);
}

.ext-name {
  font-size: 14px;
  font-weight: 500;
}

.ext-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 600;
  color: var(--apple-blue);
}

.ext-item:hover .ext-number {
  color: white;
}

/* Call Log Styling */
.call-log-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.log-entry {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 8px;
  align-items: center;
  padding: 8px 12px;
  background: var(--background-secondary);
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-size: 12px;
}

.log-time {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600;
  color: var(--text-secondary);
}

.log-caller {
  font-weight: 500;
  color: var(--text-primary);
}

.log-action {
  font-size: 11px;
  color: var(--text-secondary);
}

.log-status {
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
}

.log-status.success {
  background: rgba(52, 199, 89, 0.1);
  color: #34c759;
}

.log-status.failed {
  background: rgba(255, 59, 48, 0.1);
  color: #ff3b30;
}

/* System Messages Styling */
.message-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.system-message {
  padding: 12px 16px;
  background: var(--background-secondary);
  border-radius: 8px;
  border-left: 4px solid var(--apple-blue);
}

.msg-time {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.msg-content {
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.4;
}

/* Advanced Controls */
.advanced-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
  padding: 16px;
  background: var(--background-secondary);
  border-radius: 16px;
  border: 0.5px solid var(--border-light);
}

.window-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--background-primary);
  color: var(--text-primary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.window-btn:hover {
  background: var(--apple-blue);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.window-btn i {
  font-size: 14px;
}

/* Window Positioning */
#extensionWindow {
  top: 20%;
  left: 10%;
}

#callLogWindow {
  top: 25%;
  right: 10%;
}

#messagesWindow {
  top: 30%;
  left: 30%;
}

/* Mobile Responsive for New Features */
@media (max-width: 768px) {
  .phone-dialer {
    padding: 16px;
  }
  
  .number-pad {
    gap: 8px;
  }
  
  .num-btn {
    padding: 12px 8px;
    font-size: 16px;
  }
  
  .game-window {
    min-width: 280px;
    max-width: 90%;
    max-height: 70vh;
  }
  
  #extensionWindow {
    top: 10%;
    left: 5%;
  }
  
  #callLogWindow {
    top: 15%;
    right: 5%;
  }
  
  #messagesWindow {
    top: 20%;
    left: 5%;
  }
  
  .advanced-controls {
    flex-wrap: wrap;
    gap: 8px;
  }
  
  .window-btn {
    font-size: 12px;
    padding: 8px 12px;
  }
}

/* Video Overlay Styles */
.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: black;
  display: none;
  z-index: 10060;
}

.video-overlay iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer Easter Egg Input */
.footer-easter-egg {
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.footer-easter-egg input:focus {
  opacity: 1 !important;
  outline: none;
  border-color: var(--gold-color);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}
