@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- Design System Tokens & Custom Variables --- */
:root {
  /* Colors */
  --bg-dark: #090d16;
  --bg-card: rgba(20, 27, 45, 0.7);
  --bg-card-hover: rgba(30, 41, 67, 0.85);
  --primary-blue: #1e6091;
  --primary-red: #d90429;
  --accent-blue: #3a86c8;
  --accent-red: #ef233c;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-light: rgba(255, 255, 255, 0.08);
  --border-active-blue: rgba(58, 134, 200, 0.4);
  --border-active-red: rgba(239, 35, 60, 0.4);
  
  /* Gradients */
  --grad-blue-red: linear-gradient(135deg, #1e6091 0%, #d90429 100%);
  --grad-blue-glow: radial-gradient(circle, rgba(30, 96, 145, 0.15) 0%, rgba(9, 13, 22, 0) 70%);
  --grad-red-glow: radial-gradient(circle, rgba(217, 4, 41, 0.12) 0%, rgba(9, 13, 22, 0) 70%);
  --grad-dark: linear-gradient(180deg, #090d16 0%, #05070c 100%);
  
  /* Fonts */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --header-height: 80px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Shadows */
  --shadow-glow-blue: 0 0 30px rgba(30, 96, 145, 0.25);
  --shadow-glow-red: 0 0 30px rgba(217, 4, 41, 0.2);
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

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

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

body {
  background-color: var(--bg-dark);
  background-image: var(--grad-dark);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  background: var(--grad-blue-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-title span.blue {
  color: var(--accent-blue);
}

.section-title span.red {
  color: var(--accent-red);
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* --- Glow Background Orbs --- */
.glow-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
}

.glow-orb.blue {
  background: var(--grad-blue-glow);
  top: -200px;
  left: -200px;
}

.glow-orb.red {
  background: var(--grad-red-glow);
  bottom: -200px;
  right: -200px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--grad-blue-red);
  color: var(--text-main);
  box-shadow: 0 4px 15px rgba(30, 96, 145, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 4, 41, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
}

/* --- Header & Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
}

.header.scrolled {
  background: rgba(9, 13, 22, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  height: 70px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 44px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
}

.logo-text .blue {
  color: #1e6091; /* Tech */
}

.logo-text .red {
  color: #d90429; /* See */
}

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

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--grad-blue-red);
  transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-cta {
  display: flex;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 96, 145, 0.1);
  border: 1px solid rgba(30, 96, 145, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 24px;
}

.hero-tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-red);
  box-shadow: 0 0 8px var(--accent-red);
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 800;
}

.hero-title span.grad {
  background: var(--grad-blue-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(58, 134, 200, 0.15) 0%, rgba(9, 13, 22, 0) 70%);
  z-index: 0;
  animation: pulse-glow 8s infinite alternate ease-in-out;
}

.logo-display-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-card);
  z-index: 1;
  transition: var(--transition-smooth);
  animation: float-logo 6s infinite ease-in-out;
  overflow: hidden;
}

.logo-display-card:hover {
  border-color: var(--border-active-blue);
  box-shadow: var(--shadow-glow-blue);
}

.logo-display-card img {
  max-width: 520px;
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-md);
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.3));
}

/* --- Who We Are Section --- */
.who-we-are {
  background: rgba(5, 8, 15, 0.5);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.who-left {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.quote-card-secondary {
  border-left-color: var(--accent-blue);
}

.quote-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--accent-red);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-card);
  position: relative;
}

.quote-icon {
  position: absolute;
  top: -20px;
  right: 20px;
  font-size: 4rem;
  color: rgba(239, 35, 60, 0.1);
  font-family: var(--font-heading);
  line-height: 1;
}

.quote-text {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.7;
  color: var(--text-main);
  margin-bottom: 20px;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad-blue-red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
}

.author-info h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.author-info p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.who-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.who-tagline {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.who-tagline span.blue {
  color: var(--accent-blue);
}

.who-paragraphs p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.who-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 10px;
}

.who-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-blue);
}

.who-feature-item span {
  font-weight: 500;
  font-size: 0.95rem;
}

/* --- Services Section --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0) 100%);
  z-index: -1;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition-smooth);
}

.service-card:nth-child(even)::after {
  background: var(--accent-red);
}

.service-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-card:hover.blue-card {
  border-color: var(--border-active-blue);
  box-shadow: var(--shadow-glow-blue);
}

.service-card:hover.red-card {
  border-color: var(--border-active-red);
  box-shadow: var(--shadow-glow-red);
}

.service-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.blue-card .service-icon-wrapper {
  background: rgba(30, 96, 145, 0.15);
  color: var(--accent-blue);
  border: 1px solid rgba(30, 96, 145, 0.3);
}

.red-card .service-icon-wrapper {
  background: rgba(217, 4, 41, 0.12);
  color: var(--accent-red);
  border: 1px solid rgba(217, 4, 41, 0.25);
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-main);
  opacity: 0.85;
}

.service-list-item svg {
  width: 14px;
  height: 14px;
}

.blue-card .service-list-item svg {
  color: var(--accent-blue);
}

.red-card .service-list-item svg {
  color: var(--accent-red);
}

/* --- Vision & Mission Section --- */
.vision-mission {
  position: relative;
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.vm-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
  transition: var(--transition-smooth);
}

.vm-card.blue-vm {
  border-top: 4px solid var(--accent-blue);
}

.vm-card.red-vm {
  border-top: 4px solid var(--accent-red);
}

.vm-card:hover {
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.vm-card.blue-vm:hover {
  border-color: var(--border-active-blue);
  box-shadow: var(--shadow-glow-blue);
}

.vm-card.red-vm:hover {
  border-color: var(--border-active-red);
  box-shadow: var(--shadow-glow-red);
}

.vm-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 30px;
}

.vm-badge {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  border-radius: 50px;
}

.blue-vm .vm-badge {
  background: rgba(30, 96, 145, 0.15);
  color: var(--accent-blue);
}

.red-vm .vm-badge {
  background: rgba(217, 4, 41, 0.12);
  color: var(--accent-red);
}

.vm-badge-icon {
  font-size: 2rem;
}

.blue-vm .vm-badge-icon {
  color: rgba(30, 96, 145, 0.2);
}

.red-vm .vm-badge-icon {
  color: rgba(217, 4, 41, 0.15);
}

.vm-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.vm-content {
  color: var(--text-muted);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 30px;
  flex-grow: 1;
}

.vm-footer-link {
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blue-vm .vm-footer-link {
  color: var(--accent-blue);
}

.red-vm .vm-footer-link {
  color: var(--accent-red);
}

.vm-footer-link svg {
  transition: var(--transition-fast);
}

.vm-footer-link:hover svg {
  transform: translateX(4px);
}

/* --- Team Section --- */
.team {
  background: rgba(5, 8, 15, 0.5);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.team-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 32px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 8px 4px 28px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(30, 96, 145, 0.45) transparent;
}

.team-grid::-webkit-scrollbar {
  height: 6px;
}

.team-grid::-webkit-scrollbar-track {
  background: transparent;
}

.team-grid::-webkit-scrollbar-thumb {
  background: rgba(30, 96, 145, 0.45);
  border-radius: 999px;
}

.team-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(30, 96, 145, 0.65);
}

.team-card {
  flex: 0 0 280px;
  min-width: 280px;
  scroll-snap-align: start;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-8px);
  background: var(--bg-card-hover);
  border-color: var(--border-active-blue);
}

.team-card:nth-child(even):hover {
  border-color: var(--border-active-red);
}

.photo-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 auto 24px auto;
  position: relative;
  background: linear-gradient(135deg, rgba(30, 96, 145, 0.1) 0%, rgba(217, 4, 41, 0.1) 100%);
  border: 2px dashed rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--grad-blue-red);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 1;
}

.photo-placeholder-content {
  z-index: 2;
  transition: var(--transition-smooth);
  color: var(--text-muted);
}

.photo-placeholder-content svg {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}

.photo-placeholder-content p {
  font-size: 0.75rem;
  font-weight: 500;
}

.team-card:hover .photo-placeholder {
  border-style: solid;
  border-color: var(--accent-blue);
}

.team-card:nth-child(even):hover .photo-placeholder {
  border-color: var(--accent-red);
}

.team-card:hover .photo-placeholder::before {
  opacity: 0.15;
}

.team-card:hover .photo-placeholder-content {
  color: var(--text-main);
  transform: scale(1.05);
}

.team-card h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}

.team-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent-blue);
  margin-bottom: 12px;
}

.team-card:nth-child(even) .team-role {
  color: var(--accent-red);
}

.team-location {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.team-socials {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  color: var(--text-muted);
}

.social-icon:hover {
  background: var(--accent-blue);
  color: var(--text-main);
  transform: translateY(-2px);
}

.team-card:nth-child(even) .social-icon:hover {
  background: var(--accent-red);
}

/* --- Contact & Get in Touch Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.contact-info-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
}

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

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(30, 96, 145, 0.1);
  border: 1px solid rgba(30, 96, 145, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-blue);
  flex-shrink: 0;
}

.contact-item:nth-child(even) .contact-icon {
  background: rgba(217, 4, 41, 0.08);
  border-color: rgba(217, 4, 41, 0.2);
  color: var(--accent-red);
}

.contact-text h4 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-text p, .contact-text a {
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-text a:hover {
  color: var(--accent-blue);
}

.contact-item:nth-child(even) .contact-text a:hover {
  color: var(--accent-red);
}

/* Form Styles */
.contact-form-container {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
  font-family: var(--font-heading);
}

.form-control {
  background: rgba(9, 13, 22, 0.5);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  width: 100%;
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-blue);
  box-shadow: 0 0 10px rgba(58, 134, 200, 0.15);
  background: rgba(9, 13, 22, 0.7);
}

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-size: 16px;
  padding-right: 48px;
  cursor: pointer;
}

select.form-control option {
  background-color: var(--bg-dark);
  color: var(--text-main);
}

/* Solutions / Choices Selection Tags */
.solutions-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}

.solution-tag {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

/* Full-size invisible checkbox overlay so taps register on all devices */
.solution-tag input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.solution-tag span {
  display: inline-block;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: var(--transition-fast);
  user-select: none;
  pointer-events: none;
}

.solution-tag:hover span {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
}

.solution-tag input:checked + span,
.solution-tag.is-selected span {
  background: rgba(30, 96, 145, 0.15);
  border-color: var(--accent-blue);
  color: var(--text-main);
  box-shadow: 0 0 12px rgba(30, 96, 145, 0.2);
}

/* Submit Button & Loader */
.submit-btn-wrapper {
  margin-top: 10px;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

/* Success Message Alert */
.form-success-alert {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.25);
  color: #10b981;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  animation: slide-up-fade 0.4s ease forwards;
  display: none;
}

.form-success-alert svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* --- Footer Section --- */
.footer {
  background: #05070a;
  padding: 60px 0 30px 0;
  border-top: 1px solid var(--border-light);
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-nav a:hover {
  color: var(--text-main);
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: var(--border-light);
  margin-bottom: 24px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* --- Keyframe Animations --- */
@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(1.1); opacity: 0.75; }
}

@keyframes float-logo {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

@keyframes slide-up-fade {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* --- Entrance Reveal Effects --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive Media Queries --- */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-desc {
    margin: 0 auto 36px auto;
  }
  
  .who-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .vm-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  /* Mobile Menu Styles */
  .nav-menu {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: #090d16;
    border-top: 1px solid var(--border-light);
    flex-direction: column;
    padding: 40px 24px;
    gap: 28px;
    transform: translateX(100%);
    transition: var(--transition-smooth);
    z-index: 99;
  }
  
  .nav-menu.active {
    transform: translateX(0);
  }
  
  .nav-toggle {
    display: block;
  }
  
  .nav-cta {
    display: none; /* Hide top CTA on mobile navigation bar, put it in the menu if desired */
  }
  
  .nav-menu .btn-cta {
    width: 100%;
    display: flex !important;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* --- Projects Section --- */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 32px;
}

@media (max-width: 992px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-6px);
  background: var(--bg-card-hover);
}

.project-card.blue-proj:hover {
  border-color: var(--border-active-blue);
  box-shadow: var(--shadow-glow-blue);
}

.project-card.red-proj:hover {
  border-color: var(--border-active-red);
  box-shadow: var(--shadow-glow-red);
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.project-logo {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-light);
  transition: var(--transition-fast);
}

.blue-proj .project-logo {
  color: var(--accent-blue);
}

.red-proj .project-logo {
  color: var(--accent-red);
}

.project-card:hover .project-logo {
  background: rgba(255, 255, 255, 0.08);
}

.project-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.project-badge {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 12px;
  border-radius: 50px;
}

.project-badge.flutter {
  background: rgba(30, 96, 145, 0.15);
  color: var(--accent-blue);
}

.project-badge.swiftui {
  background: rgba(217, 4, 41, 0.12);
  color: var(--accent-red);
}

.project-badge.swift {
  background: rgba(30, 96, 145, 0.15);
  color: var(--accent-blue);
}

.project-badge.ios {
  background: rgba(217, 4, 41, 0.12);
  color: var(--accent-red);
}

.project-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.project-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.project-tagline {
  font-size: 1rem;
  font-weight: 600;
  background: var(--grad-blue-red);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
}

.project-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.project-highlights li {
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 20px;
  line-height: 1.5;
}

.project-highlights li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-blue);
  font-weight: 900;
}

.red-proj .project-highlights li::before {
  color: var(--accent-red);
}
