/* Dark tech-noir theme for useintellimod.com */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #0a0a0f;
  color: #c8d0d8;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

/* Navigation */
nav {
  background: rgba(10, 10, 15, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 180, 216, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav .logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: #00b4d8;
  text-decoration: none;
  letter-spacing: -0.02em;
}

nav .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav .nav-links a {
  color: #8899aa;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav .nav-links a:hover,
nav .nav-links a.active {
  color: #00b4d8;
}

/* Hero section */
.hero {
  position: relative;
  height: 80vh;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 10, 15, 0.92) 0%,
    rgba(10, 10, 15, 0.6) 50%,
    rgba(10, 10, 15, 0.92) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.hero-content .tagline {
  font-size: 1.25rem;
  color: #00b4d8;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-content .subtitle {
  font-size: 1.1rem;
  color: #8899aa;
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Buttons */
.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: #00b4d8;
  color: #0a0a0f;
}

.btn-primary:hover {
  background: #00d4f0;
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: #00b4d8;
  border: 1px solid #00b4d8;
}

.btn-secondary:hover {
  background: rgba(0, 180, 216, 0.1);
  transform: translateY(-1px);
}

/* Page content */
.page-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-header h1 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.page-header p {
  color: #8899aa;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* About section */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.about-section.reverse {
  direction: rtl;
}

.about-section.reverse > * {
  direction: ltr;
}

.about-image {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 180, 216, 0.1);
}

.about-text h2 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.about-text p {
  color: #8899aa;
  margin-bottom: 1rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-text .highlight {
  color: #00b4d8;
  font-weight: 600;
}

/* Contact page */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-image-wrapper {
  position: sticky;
  top: 100px;
}

.contact-image {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0, 180, 216, 0.1);
}

.contact-form {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(0, 180, 216, 0.1);
  border-radius: 12px;
  padding: 2.5rem;
}

.contact-form h2 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-form .intro {
  color: #8899aa;
  margin-bottom: 2rem;
  font-size: 1.05rem;
  border-left: 3px solid #00b4d8;
  padding-left: 1rem;
  font-style: italic;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #c8d0d8;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  color: #c8d0d8;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #00b4d8;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.email-link {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.email-link p {
  color: #8899aa;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.email-link a {
  color: #00b4d8;
  text-decoration: none;
  font-weight: 500;
}

.email-link a:hover {
  text-decoration: underline;
}

/* Divider */
.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, #00b4d8, transparent);
  margin: 0 auto 1.5rem;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid rgba(0, 180, 216, 0.1);
  color: #556677;
  font-size: 0.85rem;
}

footer a {
  color: #00b4d8;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .about-section {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  nav .nav-links {
    gap: 1rem;
  }
}
