/* Color Palette */
:root {
  --primary: #6C63FF;
  --primary-light: #8A84FF;
  --primary-dark: #4A42D4;
  --background: #121212;
  --surface: #1E1E1E;
  --surface-light: #2D2D2D;
  --text-primary: #FFFFFF;
  --text-secondary: #B3B3B3;
  --accent: #00E5FF;
  --success: #4CAF50;
  --warning: #FFC107;
  --error: #F44336;
}

html, body {
  background-color: var(--background);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

.container {
  width: 94%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.header {
  background-color: var(--surface);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

.logo {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Audiowide', sans-serif;
  letter-spacing: -1px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  text-decoration: none;
}

.logo-sup {
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 400;
  font-size: 0.7em;
  vertical-align: super;
  color: #b3e0ff;
  letter-spacing: 0;
}

.navLinks {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.navLinks a {
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navLinks a:hover {
  color: var(--primary-light);
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--primary);
  color: var(--text-primary);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
}

.mainContent {
  flex: 1;
}

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.heroBackground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.heroBackground::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at center, rgba(30,30,30,0.6) 0%, rgba(18,18,18,0.9) 100%);
  pointer-events: none;
  z-index: 1;
}

.heroImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.heroContent {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 6rem 0 4rem;
}

.heroContent h1 {
  font-size: 3.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

.heroSubtitle {
  font-size: 1.5rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.heroButtons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.services {
  padding: 6rem 0;
}

.services h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.serviceGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.serviceCard {
  background: var(--surface-light);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: box-shadow 0.3s;
}

.serviceCard:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,0.16);
}

.serviceImage {
  position: relative;
  width: 100%;
  height: 180px;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.serviceImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

.serviceImage::after {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to top, rgba(30,30,30,0.5) 60%, rgba(30,30,30,0.0) 100%);
  z-index: 1;
  pointer-events: none;
}

.cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--text-primary);
  padding: 4rem 0;
  text-align: center;
}

.ctaContent h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.ctaContent p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.footer {
  background-color: var(--surface);
  padding: 4rem 0 2rem;
  margin-top: auto;
}

.footerContent {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footerSection h4 {
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.footerLogo {
  font-family: 'Audiowide', sans-serif;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footerSection ul {
  list-style: none;
  padding: 0;
}

.footerSection ul li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.footerBottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--surface-light);
  color: var(--text-secondary);
}

.contact {
  padding: 6rem 0;
}

.contactContent {
  max-width: 600px;
  margin: 0 auto;
  background: var(--surface-light);
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contactContent h1 {
  text-align: center;
  margin-bottom: 1rem;
}

.subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.formGroup {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.formGroup label {
  font-weight: 600;
}

.formGroup input,
.formGroup textarea {
  padding: 0.75rem 1rem;
  border-radius: 4px;
  border: 1px solid var(--surface-light);
  background: var(--background);
  color: var(--text-primary);
  font-size: 1rem;
  resize: none;
}

.formGroup input:focus,
.formGroup textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.submitButton {
  width: 100%;
  margin-top: 1rem;
}

.contactInfo {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
}

.infoItem h3 {
  margin-bottom: 0.5rem;
}

.thanks {
  padding: 6rem 0;
}

.thanksContent {
  max-width: 600px;
  margin: 0 auto;
  background: var(--surface-light);
  border-radius: 12px;
  padding: 3rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  text-align: center;
}

.thanksContent h1 {
  margin-bottom: 1rem;
}

.thanksContent p {
  margin-bottom: 2rem;
  color: var(--text-secondary);
  font-size: 1.25rem;
}

.servicesList ul {
  columns: 2;
  -webkit-columns: 2;
  -moz-columns: 2;
  font-size: 0.95rem;
  color: #7a7a7a;
  column-gap: 2rem;
  margin: 0;
  padding: 0;
}

.servicesList ul li {
  margin-bottom: 0.5rem;
  color: #7a7a7a;
  break-inside: avoid;
}

@media (max-width: 600px) {
  .servicesList ul {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
  }
}

@media (max-width: 768px) {
  .nav {
    flex-direction: row;
    gap: 1rem;
  }
  .navLinks {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .serviceGrid {
    grid-template-columns: .87fr;
  }
  .footerContent {
    grid-template-columns: 1fr;
  }
  .contactContent {
    padding: 2rem 1rem;
  }
}

@media (max-width: 430px) {
  .container {
    padding: 0 0.25rem;
    width: 100%;
    min-width: 0;
  }
  .heroContent {
    padding: 3rem 0 2rem;
  }
  .heroContent h1 {
    font-size: 2rem;
  }
  .heroSubtitle {
    font-size: 1.1rem;
  }
  .heroButtons {
    flex-direction: column;
    gap: 0.75rem;
  }
  .services {
    padding: 2.5rem 0;
  }
  .services h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .serviceGrid {
    grid-template-columns: 1fr;
    min-width: 0;
    width: 100%;
  }
  .serviceCard {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 0.5rem 0.25rem;
    margin: 0 auto 1rem auto;
  }
  .serviceImage {
    height: 100px;
  }
  .cta {
    padding: 2rem 0;
  }
  .ctaContent h2 {
    font-size: 1.3rem;
  }
  .ctaContent p {
    font-size: 1rem;
  }
  .footer {
    padding: 2rem 0 1rem;
  }
  .footerContent {
    gap: 1rem;
  }
  .footerLogo {
    font-size: 1.2rem;
  }
  .servicesList ul {
    font-size: 0.85rem;
    column-gap: 1rem;
  }
  .thanksContent, .contactContent {
    padding: 1.5rem 0.5rem;
  }
  .thanksContent h1, .contactContent h1 {
    font-size: 1.5rem;
  }
  .thanksContent p, .contactContent p, .subtitle {
    font-size: 1rem;
  }
  .formGroup input, .formGroup textarea {
    font-size: 0.95rem;
    padding: 0.5rem 0.75rem;
  }
  .btn, .btn-outline, .submitButton {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 3px;
  margin: 4px 0;
  background: var(--primary);
  border-radius: 2px;
  transition: 0.3s;
}
.mobileMenu {
  display: flex;
}
@media (max-width: 768px) {
  .hamburger {
    display: flex !important;
  }
  .mobileMenu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
  }
  .mobileMenu.open {
    display: flex;
  }
  .navLinks {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    width: 100%;
    padding: 1rem 0;
  }
}
@media (max-width: 430px) {
  .logo {
    font-size: 1.5rem;
  }
  .header {
    padding: 0.25rem 0;
  }
  .nav {
    min-height: 40px;
  }
} 