body {
  margin: 0;
  background-color: #111;
  color: #00ff66;
  font-family: 'Share Tech Mono', monospace;
  line-height: 1.6;
}

/* Enhanced Typography Hierarchy */
h1 {
  font-size: 2.2em;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(0,255,102,0.3);
  margin: 20px 0;
}

h2 {
  font-size: 1.8em;
  font-weight: bold;
  margin: 25px 0 15px 0;
}

h3 {
  font-size: 1.3em;
  font-weight: bold;
  margin: 20px 0 10px 0;
}

header, nav, footer {
  text-align: center;
}

nav {
  position: sticky;
  top: 0;
  background: #111;
  padding: 15px 0;
  z-index: 10;
  border-bottom: 1px solid #00ff66;
  box-shadow: 0 2px 10px rgba(0,255,102,0.1);
}

nav a {
  color: #00ff66;
  text-decoration: none;
  margin: 0 8px;
  padding: 8px 16px;
  display: inline-block;
  border: 1px solid #00ff66;
  border-radius: 6px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.08em;
  background: transparent;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0,255,102,0.08);
}

nav a:hover {
  background: #00ff66;
  color: #111;
  box-shadow: 0 4px 16px rgba(0,255,102,0.25);
  transform: translateY(-1px);
}

nav a.current {
  background: #00ff66;
  color: #111;
  font-weight: bold;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

.hero {
  text-align: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 60px 20px;
  margin-bottom: 40px;
  border: 1px solid #00ff66;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,255,102,0.1);
}

.hero h2 {
  font-size: 2.2em;
  margin-bottom: 15px;
  text-shadow: 0 0 15px rgba(0,255,102,0.3);
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #cccccc;
}

.cta-btn {
  border: 2px solid #00ff66;
  padding: 15px 30px;
  text-decoration: none;
  color: #00ff66;
  margin: 15px 10px;
  display: inline-block;
  font-size: 1.1em;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s ease;
  background: transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-btn:hover {
  background: #00ff66;
  color: #111;
  box-shadow: 0 6px 20px rgba(0,255,102,0.3);
  transform: translateY(-2px);
}

.cta-btn.secondary {
  border: 2px solid #666;
  color: #666;
}

.cta-btn.secondary:hover {
  background: #666;
  color: #111;
  box-shadow: 0 6px 20px rgba(102,102,102,0.3);
}

.ascii-box {
  background: #111;
  border: 1px dashed #00ff66;
  padding: 15px;
  text-align: center;
  margin: 30px 0;
  white-space: pre-wrap;
}

section h2 {
  border-bottom: 1px solid #00ff66;
  padding-bottom: 5px;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.service-item {
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  padding: 20px;
  border: 1px solid #00ff66;
  color: #00ff66;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,255,102,0.1);
  border-radius: 8px;
}

.service-item:hover {
  background: linear-gradient(135deg, #00ff66 0%, #00cc55 100%);
  color: #111;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,255,102,0.2);
}

.service-item h3 {
  margin-top: 0;
  font-size: 1.2em;
}

/* Trust Elements */
.trust-section {
  margin: 40px 0;
  padding: 30px;
  border: 1px dashed #00ff66;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  text-align: center;
  border-radius: 8px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.trust-badge {
  padding: 10px 15px;
  border: 1px solid #00ff66;
  border-radius: 6px;
  background: #111;
  font-size: 0.9em;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.brand-partners {
  margin-top: 20px;
  color: #888;
  font-size: 0.9em;
  line-height: 1.8;
}

/* Enhanced Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
  border: 1px solid #00ff66;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,255,102,0.1);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  background: #111;
  border: 1px solid #00ff66;
  color: #00ff66;
  font-family: 'Share Tech Mono', monospace;
  border-radius: 6px;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00ff66;
  box-shadow: 0 0 10px rgba(0,255,102,0.3);
  background: #1a1a1a;
}

.contact-form button {
  width: 100%;
  padding: 15px;
  background: transparent;
  border: 2px solid #00ff66;
  color: #00ff66;
  font-family: 'Share Tech Mono', monospace;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: #00ff66;
  color: #111;
  box-shadow: 0 6px 20px rgba(0,255,102,0.3);
}

.contact-info {
  text-align: center;
  margin: 30px 0;
  padding: 20px;
  background: #1a1a1a;
  border: 1px solid #00ff66;
  border-radius: 8px;
}

.contact-info h3 {
  margin-top: 0;
  color: #00ff66;
}

.contact-info a {
  color: #00ff66;
  text-decoration: none;
  font-weight: bold;
}

.contact-info a:hover {
  text-decoration: underline;
}
.service-item:hover {
  background: #003300;
  color: #00ff66;
  box-shadow: 0 4px 16px rgba(0,255,102,0.18);
  text-decoration: none;
}
.service-item h3, .service-item p {
  color: #00ff66;
  text-decoration: none;
}
.service-item h3 {
  margin-top: 0;
  font-size: 18px;
}
.service-item img {
  border: none;
}
a {
  color: #00ff66;
  text-decoration: none;
}
a:visited {
  color: #00ff66;
}
a:hover {
  color: #111;
  background: #00ff66;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

input, textarea, button {
  background: #111;
  color: #00ff66;
  border: 1px solid #00ff66;
  padding: 8px;
  font-family: monospace;
}

button:hover {
  background: #00ff66;
  color: #000;
}

footer {
  margin-top: 60px;
  padding: 40px 20px 20px 20px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  border-top: 2px solid #00ff66;
  text-align: center;
}

.footer-content {
  max-width: 960px;
  margin: 0 auto;
}

.footer-nav {
  margin-bottom: 20px;
}

.footer-nav a {
  color: #00ff66;
  text-decoration: none;
  margin: 0 15px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-nav a:hover {
  border-color: #00ff66;
  background: rgba(0,255,102,0.1);
}

.footer-contact {
  margin: 20px 0;
  font-size: 16px;
}

.footer-contact a {
  color: #00ff66;
  text-decoration: none;
  font-weight: bold;
  margin: 0 10px;
  padding: 5px 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  background: #00ff66;
  color: #111;
}

.footer-license {
  margin: 15px 0;
  font-size: 14px;
  color: #888;
}

.footer-copyright {
  font-size: 13px;
  color: #555;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px dashed #333;
}
}

#back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: none;
  background: #111;
  border: 1px solid #00ff66;
  padding: 10px;
  color: #00ff66;
  cursor: pointer;
  z-index: 100;
}

@media (max-width: 768px) {
  /* Hide desktop navigation */
  nav {
    display: none;
  }

  /* Show mobile toggle button with enhanced styling */
  #mobile-toggle {
    display: block !important;
    background: transparent;
    border: 2px solid #00ff66;
    border-radius: 6px;
    font-size: 24px;
    color: #00ff66;
    padding: 10px 15px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 1000;
    transition: all 0.3s ease;
    min-width: 48px;
    min-height: 48px;
  }

  #mobile-toggle:hover {
    background: #00ff66;
    color: #111;
    box-shadow: 0 4px 15px rgba(0,255,102,0.3);
  }

  /* Enhanced mobile menu styling */
  #mobile-menu {
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  #mobile-menu a {
    display: block;
    padding: 20px 30px;
    text-align: center;
    border: 1px solid #00ff66;
    border-radius: 8px;
    color: #00ff66;
    text-decoration: none;
    font-size: 18px;
    width: 80%;
    max-width: 300px;
    margin: 10px 0;
    transition: all 0.3s ease;
    background: transparent;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #mobile-menu a:hover {
    background: #00ff66;
    color: #111;
    transform: scale(1.05);
  }

  /* Hero section mobile improvements */
  .hero {
    padding: 40px 15px;
    margin-bottom: 30px;
  }

  .hero h2 {
    font-size: 1.8em;
    line-height: 1.3;
  }

  .hero p {
    font-size: 1.1em;
  }

  .cta-btn {
    width: 100%;
    max-width: 300px;
    margin: 10px 0;
    padding: 18px 20px;
    text-align: center;
  }

  /* Services grid mobile */
  .services {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .service-item {
    padding: 20px 15px;
  }

  /* Trust section mobile */
  .trust-section {
    padding: 20px 15px;
    margin: 30px 0;
  }

  .trust-badges {
    flex-direction: column;
    align-items: center;
  }

  .trust-badge {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }

  /* Contact form mobile */
  .contact-form {
    padding: 20px 15px;
    margin: 0 10px;
  }

  .contact-info {
    margin: 20px 10px;
    padding: 15px;
  }

  /* Typography mobile adjustments */
  h1 {
    font-size: 1.8em;
  }

  h2 {
    font-size: 1.5em;
  }

  h3 {
    font-size: 1.2em;
  }

  /* Container mobile padding */
  .container {
    padding: 15px;
  }

  /* Container adjustments */
  .container {
    padding: 15px;
    max-width: 100%;
  }

  /* Hero section mobile */
  .hero {
    padding: 30px 15px;
    margin-bottom: 20px;
  }

  .hero h2 {
    font-size: 20px;
  }

  /* Services grid mobile */
  .services {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* Slideshow mobile adjustments */
  .slideshow-container {
    max-width: 100% !important;
    padding: 0 10px;
  }

  .slideshow-image-container {
    max-width: 100% !important;
    height: 250px !important;
    margin: 0 auto 15px auto !important;
  }

  .slideshow-controls {
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
  }

  .slide-btn {
    padding: 15px 25px;
    font-size: 16px;
    width: 200px;
    margin: 0 auto;
  }

  /* Navigation adjustments */
  nav a {
    font-size: 14px;
    padding: 4px 8px;
    margin: 0 5px;
  }

  /* Text adjustments */
  h1 {
    font-size: 24px !important;
  }

  h2 {
    font-size: 20px;
  }

  p {
    font-size: 14px;
    line-height: 1.5;
  }

  /* Form adjustments */
  .contact-form {
    gap: 15px;
  }

  input, textarea, button {
    padding: 12px;
    font-size: 16px;
  }

  /* Gallery navigation mobile */
  .gallery-nav {
    margin: 20px 0;
    padding: 15px;
  }

  .gallery-links {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 8px;
  }

  .gallery-link {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* Additional mobile breakpoint for very small screens */
@media (max-width: 480px) {
  .slideshow-image-container {
    height: 200px !important;
  }

  .slide-btn {
    width: 180px;
    padding: 12px 20px;
    font-size: 14px;
  }

  #mobile-menu a {
    font-size: 16px;
    width: 90%;
  }

  .hero h2 {
    font-size: 18px;
  }
}

#mobile-toggle { display: none; }

/* Slideshow Styles */
.slideshow {
  text-align: center;
  margin: 20px 0;
}

.slideshow-container {
  max-width: 600px;
  margin: 0 auto;
}

/* Fixed slideshow image container */
.slideshow-image-container {
  width: 100% !important;
  max-width: 400px !important;
  height: 300px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #000 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  position: relative !important;
  border: 1px solid #00ff66 !important;
}

/* Consistent slideshow image sizing */
#mainSlideImage {
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  display: block !important;
}

/* Image caption overlay */
.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.9));
  color: #00ff66;
  padding: 20px 15px 15px 15px;
  font-size: 14px;
  line-height: 1.4;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 10;
}

.slideshow-image-container:hover .image-caption {
  transform: translateY(0);
}

.slideshow-controls {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  position: relative;
  z-index: 10;
}

.slide-btn {
  background: #1a1a1a;
  color: #00ff66;
  border: 1px solid #00ff66;
  padding: 12px 20px;
  cursor: pointer;
  font-family: 'Share Tech Mono', monospace;
  font-size: 14px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.slide-btn:hover {
  background: #00ff66;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 255, 102, 0.3);
}

.slide-btn:active {
  transform: translateY(0);
}

#imageCounter {
  color: #00ff66;
  font-weight: bold;
}

/* Gallery Navigation */
.gallery-nav {
  background: #1a1a1a;
  border: 1px solid #00ff66;
  border-radius: 8px;
  padding: 20px;
  margin: 30px 0;
  text-align: center;
}

.gallery-nav h3 {
  color: #00ff66;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
}

.gallery-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  max-width: 800px;
  margin: 0 auto;
}

.gallery-link {
  background: #111;
  border: 1px solid #333;
  color: #00ff66;
  text-decoration: none;
  padding: 12px 15px;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.2s ease;
  display: block;
}

.gallery-link:hover {
  background: #00ff66;
  color: #111;
  border-color: #00ff66;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 255, 102, 0.3);
}

.gallery-link.current {
  background: #003300;
  border-color: #00ff66;
  color: #00ff66;
  cursor: default;
}

.gallery-link.current:hover {
  background: #003300;
  color: #00ff66;
  transform: none;
  box-shadow: none;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
  margin: 20px 0;
}

.thumb {
  text-align: center;
}

.thumb img {
  width: 100%;
  max-width: 200px;
  height: 150px;
  object-fit: cover;
  border: 1px solid #00ff66;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.thumb img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(0,255,102,0.3);
}

.caption {
  color: #00ff66;
  font-size: 0.9em;
  margin-top: 5px;
}

/* Enhanced Slideshow Styles */
.slideshow-container {
  margin: 20px 0;
}

.thumbnail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin: 20px 0;
  max-height: 400px;
  overflow-y: auto;
  padding: 10px;
  border: 1px solid #00ff66;
  background: #0a0a0a;
}

.thumbnail {
  position: relative;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.thumbnail img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border: 1px solid #333;
  border-radius: 4px;
}

.thumbnail:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,255,102,0.4);
}

.thumbnail:hover img {
  border-color: #00ff66;
}

.thumbnail.active img {
  border-color: #00ff66;
  box-shadow: 0 0 8px rgba(0,255,102,0.6);
}

/* Fullscreen Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.95);
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
}

.modal-content {
  animation: zoom 0.3s;
}

@keyframes zoom {
  from {transform: scale(0.5)}
  to {transform: scale(1)}
}

.close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #00ff66;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: #fff;
  text-decoration: none;
}

.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #00ff66;
  font-weight: bold;
  font-size: 18px;
  transition: 0.3s ease;
  border-radius: 0 3px 3px 0;
  background-color: rgba(0,0,0,0.5);
  user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
  background-color: rgba(0,255,102,0.8);
  color: #111;
}

.modal-caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #00ff66;
  padding: 10px 0;
  height: 30px;
}
