@charset "utf-8";

/* ===== GOOGLE FONT (Optional - Techy Font) ===== */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&family=Rajdhani:wght@400;500;600&display=swap');

/* ===== UNIVERSAL STYLES ===== */

* {
  box-sizing: border-box;
}

body {
  font-family: 'Rajdhani', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #e8e8e8;
  background-color: #0a0a0f;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  font-size: 1.05em;
}

header {
  background: linear-gradient(135deg, #0b0d17 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  padding: 30px 20px;
  text-align: center;
  border-bottom: 2px solid #00d4ff;
  position: relative;
}

header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

header h1 {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  font-size: 2.8em;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.6), 0 0 30px rgba(0, 212, 255, 0.3);
  letter-spacing: 4px;
  color: #ffffff;
  text-transform: uppercase;
}

header p.tagline {
  margin: 12px 0 0 0;
  font-style: normal;
  color: #00d4ff;
  font-size: 1.1em;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ===== NAVIGATION ===== */

nav {
  background: linear-gradient(180deg, #0f0f1a 0%, #0b0d17 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #00d4ff;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

nav li {
  flex: 1;
  max-width: 200px;
}

nav a {
  display: block;
  background: transparent;
  color: #a29bfe;
  text-align: center;
  text-decoration: none;
  padding: 15px 20px;
  font-family: 'Orbitron', sans-serif;
  font-weight: 500;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-bottom: 3px solid transparent;
  transition: color 0.3s ease, border-bottom 0.3s ease, text-shadow 0.3s ease;
}

nav a:hover {
  color: #00d4ff;
  border-bottom: 3px solid #00d4ff;
  text-shadow: 0 0 15px rgba(0, 212, 255, 0.8);
}

/* ===== MAIN CONTENT ===== */

main {
  padding: 30px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  font-family: 'Orbitron', sans-serif;
  color: #00d4ff;
  text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
  border-bottom: 2px solid #ff006e;
  padding-bottom: 10px;
  margin-top: 30px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 1.5em;
}

h3 {
  font-family: 'Orbitron', sans-serif;
  color: #a29bfe;
  margin-top: 25px;
  letter-spacing: 1px;
  font-size: 1.1em;
}

p {
  margin-bottom: 15px;
  color: #c0c0c0;
}

/* ===== HERO SECTION ===== */

.hero {
  position: relative;
  text-align: center;
  color: #ffffff;
  margin-bottom: 30px;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.2);
  border: 1px solid #1a1a2e;
}

.hero img {
  width: 100%;
  height: auto;
  min-height: 300px;
  max-height: 500px;
  object-fit: cover;
  display: block;
  filter: brightness(0.6) saturate(1.1);
}

.hero-text {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10, 10, 15, 0.95);
  padding: 25px 45px;
  border-radius: 3px;
  border: 1px solid #00d4ff;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.4), inset 0 0 20px rgba(0, 212, 255, 0.05);
}

.hero-text h2 {
  color: #ffffff;
  border: none;
  margin: 0 0 10px 0;
  font-size: 1.6em;
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.7);
}

.hero-text p {
  color: #00d4ff;
  font-size: 1em;
  margin: 0;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ===== SERVICES OVERVIEW (FLEX COLUMNS) ===== */

.services-overview {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.service-card {
  flex: 1 1 250px;
  background: linear-gradient(180deg, #12121a 0%, #1a1a2e 100%);
  border: 1px solid #2a2a4e;
  border-radius: 3px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #00d4ff, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
  border: 1px solid #00d4ff;
}

.service-card img {
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
}

.service-card h3 {
  color: #00d4ff;
  margin: 10px 0;
  font-size: 1em;
}

.service-card p {
  font-size: 0.95em;
  color: #a0a0a0;
}

/* ===== IMAGE GALLERY ===== */

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
}

.gallery img {
  flex: 1 1 200px;
  max-width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #1a1a2e;
}

.gallery img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  border: 1px solid #00d4ff;
}

/* ===== VIDEO SECTION ===== */

.video-section {
  text-align: center;
  margin: 40px 0;
}

.video-section iframe {
  max-width: 100%;
  border-radius: 3px;
  box-shadow: 0 0 40px rgba(255, 0, 110, 0.3);
  border: 2px solid #ff006e;
}

/* ===== LISTS ===== */

ul.feature-list, ol.feature-list {
  background: linear-gradient(180deg, #12121a 0%, #1a1a2e 100%);
  padding: 25px 45px;
  border-left: 3px solid #00d4ff;
  margin: 20px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  border-radius: 3px;
}

ul.feature-list li, ol.feature-list li {
  padding: 12px 0;
  color: #c0c0c0;
  border-bottom: 1px solid #2a2a4e;
}

ul.feature-list li:last-child, ol.feature-list li:last-child {
  border-bottom: none;
}

/* ===== TABLES ===== */

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  box-shadow: 0 3px 25px rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  overflow: hidden;
}

.pricing-table th,
.pricing-table td {
  border: 1px solid #2a2a4e;
  padding: 16px 20px;
  text-align: left;
}

.pricing-table thead {
  background: linear-gradient(135deg, #0b0d17 0%, #1a1a2e 100%);
  color: #00d4ff;
  font-family: 'Orbitron', sans-serif;
  text-transform: uppercase;
  font-size: 0.85em;
  letter-spacing: 1px;
}

.pricing-table tbody tr:nth-child(odd) {
  background-color: rgba(18, 18, 26, 0.9);
}

.pricing-table tbody tr:nth-child(even) {
  background-color: rgba(26, 26, 46, 0.7);
}

.pricing-table tbody tr:hover {
  background-color: rgba(0, 212, 255, 0.1);
}

.pricing-table tfoot {
  background: linear-gradient(135deg, #ff006e 0%, #c9004d 100%);
  color: #ffffff;
  font-weight: bold;
}

/* ===== FORMS ===== */

form {
  background: linear-gradient(180deg, #12121a 0%, #1a1a2e 100%);
  padding: 35px;
  border-radius: 3px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  max-width: 700px;
  margin: 0 auto;
  border: 1px solid #2a2a4e;
}

fieldset {
  border: 1px solid #a29bfe;
  border-radius: 3px;
  padding: 25px;
  margin-bottom: 25px;
}

legend {
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #ff006e 0%, #c9004d 100%);
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 3px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.85em;
}

.form-row {
  display: flex;
  flex-flow: row wrap;
  margin: 18px 0;
}

.form-row label {
  flex: 1 1 150px;
  padding: 12px 5px;
  font-weight: 600;
  color: #a29bfe;
  letter-spacing: 0.5px;
}

.form-row input,
.form-row select,
.form-row textarea {
  flex: 2 1 250px;
  padding: 14px;
  border: 1px solid #2a2a4e;
  border-radius: 3px;
  font-size: 1em;
  background-color: #0a0a0f;
  color: #e8e8e8;
  font-family: 'Rajdhani', sans-serif;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

input:focus, select:focus, textarea:focus {
  background-color: #0f0f18;
  border: 2px solid #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  outline: none;
}

input:valid {
  border: 2px solid #a29bfe;
}

input:invalid {
  border: 2px solid #ff006e;
}

.radio-group, .checkbox-group {
  flex: 2 1 250px;
  padding: 10px 5px;
}

.radio-group label, .checkbox-group label {
  font-weight: normal;
  margin-right: 25px;
  color: #c0c0c0;
}

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

button[type="submit"], button[type="reset"] {
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #ff006e 0%, #c9004d 100%);
  color: #ffffff;
  padding: 15px 40px;
  border: none;
  border-radius: 3px;
  font-size: 0.95em;
  cursor: pointer;
  margin: 10px 10px 0 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

button[type="submit"]:hover {
  background: linear-gradient(135deg, #00d4ff 0%, #00a3cc 100%);
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.6);
}

button[type="reset"] {
  background: linear-gradient(135deg, #2a2a4e 0%, #1a1a2e 100%);
}

button[type="reset"]:hover {
  background: linear-gradient(135deg, #3a3a5e 0%, #2a2a4e 100%);
  transform: translateY(-3px);
}

/* ===== INFO BOXES ===== */

.info-box {
  background: linear-gradient(180deg, #12121a 0%, #1a1a2e 100%);
  padding: 30px;
  border-radius: 3px;
  box-shadow: 0 3px 25px rgba(0, 0, 0, 0.5);
  margin: 20px 0;
  border-left: 3px solid #00d4ff;
}

.info-box h3 {
  margin-top: 0;
  color: #00d4ff;
  border-bottom: 1px solid #ff006e;
  padding-bottom: 10px;
}

.info-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.info-section .info-box {
  flex: 1 1 300px;
}

/* ===== HOURS TABLE ===== */

.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 14px;
  border-bottom: 1px solid #2a2a4e;
  text-align: left;
}

.hours-table th {
  color: #00d4ff;
  width: 50%;
  font-weight: 600;
}

.hours-table td {
  color: #c0c0c0;
}

/* ===== JAVASCRIPT DATE DISPLAY ===== */

#current-date {
  background: linear-gradient(135deg, #0a0a0f 0%, #12121a 100%);
  color: #00d4ff;
  text-align: center;
  padding: 12px;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.8em;
  letter-spacing: 3px;
  border-bottom: 1px solid #2a2a4e;
  text-transform: uppercase;
}

/* ===== FOOTER ===== */

footer {
  background: linear-gradient(135deg, #0b0d17 0%, #1a1a2e 50%, #16213e 100%);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 30px;
  margin-top: 40px;
  border-top: 2px solid #00d4ff;
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 212, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.02) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

footer a {
  color: #00d4ff;
  text-decoration: none;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

footer a:hover {
  color: #ff006e;
  text-shadow: 0 0 15px rgba(255, 0, 110, 0.6);
}

/* ===== DESKTOP STYLES (769px and up) ===== */

@media only screen and (min-width: 769px) {

  nav ul {
    justify-content: center;
  }

  nav li {
    flex: 0 1 200px;
  }

  .services-overview {
    justify-content: center;
  }

  .gallery img {
    flex: 1 1 23%;
    max-width: 24%;
  }

}

/* ===== TABLET STYLES (481px to 768px) ===== */

@media only screen and (max-width: 768px) {

  header h1 {
    font-size: 2em;
  }

  nav ul {
    flex-direction: column;
  }

  nav li {
    max-width: 100%;
  }

  nav a {
    border-bottom: 1px solid #2a2a4e;
    padding: 12px;
  }

  .hero-text {
    padding: 20px 25px;
    bottom: 20px;
  }

  .hero-text h2 {
    font-size: 1.3em;
  }

  .service-card {
    flex: 1 1 100%;
  }

  .gallery img {
    flex: 1 1 48%;
    max-width: 49%;
  }

  .form-row {
    flex-direction: column;
  }

  .form-row label,
  .form-row input,
  .form-row select,
  .form-row textarea {
    flex: 1 1 100%;
  }

  /* Responsive Table */
  .pricing-table, 
  .pricing-table thead, 
  .pricing-table tbody, 
  .pricing-table tfoot,
  .pricing-table tr, 
  .pricing-table th,
  .pricing-table td {
    display: block;
  }

  .pricing-table thead {
    display: none;
  }

  .pricing-table tbody tr {
    margin-bottom: 15px;
    border: 1px solid #a29bfe;
    border-radius: 3px;
  }

  .pricing-table tbody td {
    position: relative;
    padding-left: 50%;
    border: none;
    border-bottom: 1px solid #2a2a4e;
  }

  .pricing-table tbody td::before {
    content: attr(data-label);
    position: absolute;
    top: 16px;
    left: 15px;
    width: 45%;
    font-weight: bold;
    color: #00d4ff;
  }

  .pricing-table tfoot {
    display: none;
  }

}

/* ===== MOBILE STYLES (480px and below) ===== */

@media only screen and (max-width: 480px) {

  header h1 {
    font-size: 1.5em;
    letter-spacing: 2px;
  }

  header p.tagline {
    font-size: 0.85em;
    letter-spacing: 1px;
  }

  .hero-text {
    padding: 15px 20px;
    bottom: 15px;
  }

  .hero-text h2 {
    font-size: 1.1em;
  }

  .hero-text p {
    font-size: 0.85em;
  }

  .gallery img {
    flex: 1 1 100%;
    max-width: 100%;
  }

  button[type="submit"], button[type="reset"] {
    width: 100%;
    margin: 10px 0;
  }

}