/* Cyberpunk Theme - Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Courier New", "Courier", monospace;
  line-height: 1.6;
  color: #00f3ff;
  background-color: #0a0e27;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0, 243, 255, 0.03) 2px, rgba(0, 243, 255, 0.03) 4px);
  font-size: 16px;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px 60px;
  background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
  border-bottom: 3px solid #ff00ff;
  box-shadow:
    0 0 30px rgba(255, 0, 255, 0.3),
    inset 0 0 100px rgba(0, 243, 255, 0.05);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #00f3ff, transparent);
  box-shadow: 0 0 10px #00f3ff;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #00f3ff;
  letter-spacing: 4px;
  text-transform: uppercase;
  text-shadow:
    0 0 10px #00f3ff,
    0 0 20px #00f3ff,
    0 0 30px #00f3ff,
    2px 2px 0px rgba(255, 0, 255, 0.5);
  font-family: "Impact", "Arial Black", sans-serif;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from { text-shadow: 0 0 10px #00f3ff, 0 0 20px #00f3ff, 0 0 30px #00f3ff, 2px 2px 0px rgba(255, 0, 255, 0.5); }
  to { text-shadow: 0 0 20px #00f3ff, 0 0 30px #00f3ff, 0 0 40px #00f3ff, 2px 2px 0px rgba(255, 0, 255, 0.8); }
}

.hero p {
  font-size: 18px;
  color: #b8e6ff;
  margin-bottom: 12px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero .hero-tagline {
  font-size: 22px;
  color: #00f3ff;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 0 0 5px rgba(0, 243, 255, 0.5);
}

.hero .cta {
  display: inline-block;
  padding: 15px 40px;
  background: linear-gradient(135deg, #ff00ff 0%, #00f3ff 100%);
  color: #0a0e27;
  text-decoration: none;
  border: 2px solid #00f3ff;
  font-size: 18px;
  font-weight: 700;
  margin-top: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow:
    0 0 20px rgba(0, 243, 255, 0.6),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero .cta:hover {
  background: linear-gradient(135deg, #00f3ff 0%, #ff00ff 100%);
  box-shadow:
    0 0 40px rgba(0, 243, 255, 0.9),
    0 0 60px rgba(255, 0, 255, 0.6);
  transform: translateY(-2px);
}

/* Section spacing */
section {
  padding: 60px 20px;
  background: linear-gradient(180deg, #0a0e27 0%, #151933 100%);
  margin-bottom: 2px;
  border-top: 1px solid rgba(0, 243, 255, 0.2);
  position: relative;
}

section h2 {
  font-size: 32px;
  margin-bottom: 30px;
  text-align: center;
  color: #ff00ff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-family: "Impact", "Arial Black", sans-serif;
  text-shadow:
    0 0 10px #ff00ff,
    0 0 20px #ff00ff;
  border-bottom: 2px solid #ff00ff;
  padding-bottom: 15px;
  display: inline-block;
  width: auto;
  margin-left: 50%;
  transform: translateX(-50%);
}

section p {
  font-size: 16px;
  line-height: 1.8;
  color: #b8e6ff;
  max-width: 800px;
  margin: 0 auto 20px;
}

/* Gallery */
.gallery-disclaimer {
  text-align: center;
  font-size: 16px;
  color: #00f3ff;
  margin: 0 auto 30px;
  padding: 20px;
  background: rgba(0, 243, 255, 0.1);
  border: 2px solid rgba(0, 243, 255, 0.3);
  border-radius: 4px;
  max-width: 800px;
  line-height: 1.8;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 40px;
  padding: 0;
}

.gallery img {
  width: 100%;
  height: auto;
  min-height: 300px;
  max-height: 450px;
  object-fit: cover;
  object-position: center center;
  display: block;
  cursor: zoom-in;
  border: 3px solid #00f3ff;
  box-shadow:
    0 0 20px rgba(0, 243, 255, 0.6),
    inset 0 0 30px rgba(0, 243, 255, 0.1);
  transition: all 0.3s ease;
  background-color: #0a0e27;
  filter: brightness(0.9) contrast(1.1);
  position: relative;
}

.gallery img:hover {
  transform: scale(1.05);
  border-color: #ff00ff;
  box-shadow:
    0 0 30px rgba(255, 0, 255, 0.8),
    0 0 60px rgba(0, 243, 255, 0.4),
    inset 0 0 40px rgba(255, 0, 255, 0.2);
  filter: brightness(1.1) contrast(1.2);
  z-index: 10;
}

/* Offerings and Process */
.offerings,
.process {
  background: linear-gradient(180deg, #0f1329 0%, #1a1f3a 100%);
  border-top: 2px solid rgba(255, 0, 255, 0.3);
}

.offerings .container,
.process .container {
  max-width: 900px;
}

.offerings p,
.process p {
  margin-bottom: 24px;
  text-align: left;
  background: rgba(0, 243, 255, 0.05);
  padding: 20px;
  border-left: 4px solid #00f3ff;
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
}

.offerings ul,
.process ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.offerings li,
.process li {
  padding: 12px 0;
  font-size: 16px;
  color: #b8e6ff;
  line-height: 1.7;
}

/* Contact */
.contact {
  text-align: center;
  background: linear-gradient(180deg, #0a0e27 0%, #1a1f3a 100%);
  padding: 70px 20px;
  border-top: 3px solid #ff00ff;
  box-shadow: inset 0 0 100px rgba(255, 0, 255, 0.1);
}

.contact p {
  text-align: center;
  margin-bottom: 20px;
  font-size: 18px;
  color: #b8e6ff;
}

.contact-form {
  max-width: 600px;
  margin: 30px auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  margin-bottom: 20px;
  border: 2px solid #00f3ff;
  background: rgba(0, 243, 255, 0.05);
  font-size: 16px;
  font-family: "Courier New", "Courier", monospace;
  color: #00f3ff;
  box-shadow: 0 0 15px rgba(0, 243, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff00ff;
  background: rgba(255, 0, 255, 0.05);
  box-shadow:
    0 0 20px rgba(255, 0, 255, 0.4),
    inset 0 0 20px rgba(255, 0, 255, 0.1);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form button {
  background: linear-gradient(135deg, #ff00ff 0%, #00f3ff 100%);
  color: #0a0e27;
  padding: 15px 40px;
  border: 2px solid #00f3ff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "Courier New", "Courier", monospace;
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.6);
  transition: all 0.3s ease;
  width: auto;
}

.contact-form button:hover {
  background: linear-gradient(135deg, #00f3ff 0%, #ff00ff 100%);
  box-shadow:
    0 0 40px rgba(0, 243, 255, 0.9),
    0 0 60px rgba(255, 0, 255, 0.6);
  transform: translateY(-2px);
}

.email-link {
  display: inline-block;
  margin-top: 20px;
  color: #00f3ff;
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  text-shadow: 0 0 10px #00f3ff;
  padding: 10px 20px;
  border: 2px solid #00f3ff;
  box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
  transition: all 0.3s ease;
}

.email-link:hover {
  color: #ff00ff;
  border-color: #ff00ff;
  text-shadow: 0 0 10px #ff00ff;
  box-shadow: 0 0 30px rgba(255, 0, 255, 0.6);
}

/* Footer */
footer {
  text-align: center;
  padding: 40px 20px;
  color: #7ca3b8;
  font-size: 14px;
  background: #0a0e27;
  border-top: 2px solid rgba(0, 243, 255, 0.3);
  box-shadow: 0 -5px 20px rgba(0, 243, 255, 0.1);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 14, 39, 0.95);
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90vh;
  border: 4px solid #00f3ff;
  box-shadow:
    0 0 50px rgba(0, 243, 255, 0.8),
    0 0 100px rgba(255, 0, 255, 0.4);
  object-fit: contain;
  cursor: zoom-out;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: #ff00ff;
  font-size: 60px;
  font-weight: bold;
  cursor: pointer;
  text-shadow:
    0 0 10px #ff00ff,
    0 0 20px #ff00ff;
  transition: all 0.2s ease;
  line-height: 1;
}

.lightbox-close:hover {
  color: #00f3ff;
  text-shadow:
    0 0 20px #00f3ff,
    0 0 40px #00f3ff;
  transform: scale(1.1);
}

/* Responsive - Tablet */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 36px;
    letter-spacing: 2px;
  }

  .hero p {
    font-size: 16px;
  }

  section h2 {
    font-size: 26px;
    letter-spacing: 2px;
  }

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery img {
    min-height: 220px;
    max-height: 350px;
  }

  .lightbox-close {
    top: 20px;
    right: 30px;
    font-size: 50px;
  }

  .container {
    padding: 0 16px;
  }
}

/* Responsive - Tablet */
@media (max-width: 768px) {
  .gallery img {
    cursor: default;
  }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .hero {
    padding: 50px 16px 40px;
  }

  .hero h1 {
    font-size: 28px;
    letter-spacing: 1px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero .cta {
    padding: 12px 30px;
    font-size: 16px;
  }

  section {
    padding: 50px 16px;
  }

  section h2 {
    font-size: 22px;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
  }

  section p {
    font-size: 15px;
  }

  .gallery {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .gallery img {
    min-height: 280px;
    max-height: 450px;
    width: 100%;
    max-width: 100%;
  }

  .contact {
    padding: 60px 16px;
  }

  .contact-form button {
    width: 100%;
  }

  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 40px;
  }

  .lightbox {
    padding: 10px;
  }
}

/* Extra small devices */
@media (max-width: 375px) {
  .gallery img {
    min-height: 250px;
    max-height: 400px;
  }

  .hero h1 {
    font-size: 24px;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .gallery img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}
