/* ===== CSS VARIABLES ===== */
:root {
  --primary-blue: #2e6f95;
  --primary-orange: #D4841A;
  --text-dark: #333;
  --text-gray: #666;
  --text-light: #888;
  --white: #ffffff;
  --shadow-light: rgba(0, 0, 0, 0.05);
  --shadow-medium: rgba(0, 0, 0, 0.08);
  --shadow-heavy: rgba(0, 0, 0, 0.12);
  --border-radius: 8px;
  --border-radius-large: 16px;
  --transition: all 0.2s ease;
}

/* ===== BASE STYLES ===== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text-dark);
  padding: 0.75rem 1rem 1.5rem 1rem;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
  opacity: 0;
  transform: translateY(10px);
  animation: slideUp 1.5s ease-out forwards;
  animation-delay: 1s;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-blue);
  letter-spacing: 0.5px;
  margin: 0 0 1rem 0;
}

p {
  font-size: 1rem;
  color: var(--text-gray);
  margin-top: 0.25rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  animation: slideUp 1.5s ease-out forwards;
  animation-delay: 1.5s;
}

/* ===== IMAGES ===== */
img {
  max-width: 625px;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1.5s ease-out forwards;
  animation-delay: 0.5s;
}

/* ===== BRAND COLORS ===== */
.accent { color: var(--primary-blue); }
.iq { color: var(--primary-orange); }

/* ===== ABOUT SECTION ===== */
.about-snippet {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.5rem;
  font-style: italic;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  animation: slideUp 1.5s ease-out forwards;
  animation-delay: 1.8s;
}

/* ===== WHAT WE DO SECTION ===== */
.what-we-do {
  text-align: center;
  margin-top: 0.75rem;
  padding: 2rem 1.5rem;
  max-width: 800px;
  width: 100%;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
  animation-delay: 2s;
  
  /* Glass morphism effect */
  background: rgba(255, 255, 255, 0.3);
  border-radius: var(--border-radius-large);
  box-shadow: 0 8px 32px var(--shadow-light);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.what-we-do p {
  max-width: 700px;
  margin: 0 auto 1rem auto;
  color: #555;
  font-weight: 400;
}

/* ===== SERVICES LIST ===== */
.what-we-do ul {
  list-style: none;
  padding: 0;
  margin: 1rem auto;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 1000px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 1rem;
}

.what-we-do li {
  margin: 0;
  padding: 1rem 1.5rem;
  color: var(--text-dark);
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px var(--shadow-medium);
  border-left: 4px solid var(--primary-orange);
  font-weight: 500;
  transition: var(--transition);
  flex: 1 1 280px;
  min-width: 250px;
  max-width: 100%;
}

.what-we-do li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-heavy);
}

/* ===== LINKEDIN LINK ===== */
.linkedin-link {
  margin-top: 2rem;
  opacity: 0;
  animation: fadeIn 1.5s ease-in-out forwards;
  animation-delay: 2s;
}

.linkedin-link a {
  color: #0077b5;
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
}

.linkedin-link a:hover {
  color: #005885;
}

/* ===== COMING SOON ===== */
.what-we-do .coming-soon {
  margin-top: 2.5rem;
  color: var(--text-light);
  font-style: italic;
  font-size: 1rem;
  padding: 1rem;
  border-top: 1px solid #eee;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes slideUp {
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  body {
    padding: 0.25rem 0.5rem 0.5rem 0.5rem;
  }
  
  h1 {
    font-size: 1.3rem;
    margin-bottom: 0.25rem;
  }
  
  h2 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }
  
  p {
    font-size: 0.9rem;
    margin-top: 0.25rem;
    line-height: 1.4;
  }
  
  .about-snippet {
    font-size: 0.8rem;
    margin-top: 0.25rem;
    line-height: 1.3;
  }
  
  .what-we-do {
    margin-top: 0.25rem;
    padding: 1.5rem 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 20px var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  .what-we-do p {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
  }
  
  .what-we-do ul {
    margin: 0.5rem auto;
    gap: 0.5rem;
  }
  
  .what-we-do li {
    flex: 1 1 100%;
    min-width: auto;
    padding: 0.6rem 0.8rem;
    font-size: 0.85rem;
    border-radius: 6px;
    box-shadow: 0 1px 4px var(--shadow-medium);
  }
  
  .linkedin-link {
    margin-top: 0.5rem;
  }
  
  .linkedin-link a {
    font-size: 0.8rem;
  }
}
