* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #00BFFF;
  --secondary-color: #ff3333;
  --accent-color: #00BFFF;
  --text-dark: #1a1a1a;
  --text-light: #ffffff;
  --bg-dark: #0a0a0a;
  --bg-light: #0a0a0a;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
}

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

nav {
  background: var(--bg-dark);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo-nav {
  height: 50px;
}

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

nav a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: var(--accent-color);
}

.hero {
  background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a3e 100%);
  color: var(--text-light);
  padding: 4rem 0;
  text-align: center;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  animation: fadeInUp 1s ease-out;
}

.hero-logo {
  max-width: 400px;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
  animation: logoGlow 2s ease-in-out infinite, logoPulse 2s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% {
    filter: drop-shadow(0 0 20px rgba(0, 191, 255, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 40px rgba(0, 191, 255, 0.8));
  }
}

@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  text-shadow: 0 0 20px rgba(0, 191, 255, 0.5);
}

.tagline {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--accent-color);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-color);
  color: var(--bg-dark);
}

.btn-primary:hover {
  background: #00A8FF;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 191, 255, 0.3);
}

.btn-secondary {
  background: var(--secondary-color);
  color: var(--text-light);
}

.btn-secondary:hover {
  background: #ff5555;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(255, 51, 51, 0.3);
}

.btn-accent {
  background: var(--accent-color);
  color: var(--bg-dark);
}

.btn-accent:hover {
  background: #00A8FF;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 191, 255, 0.3);
}

.section {
  padding: 4rem 0;
  background: #ff3333;
  color: var(--text-light);
}

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-blue {
  background: #00BFFF;
  color: var(--bg-dark);
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: var(--text-light);
}

.section-dark .section-title {
  color: var(--primary-color);
}

.section-blue .section-title {
  color: var(--primary-color);
}

.section p {
  color: var(--text-light);
}

.video-section {
  margin: 3rem 0;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

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

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.promo {
  width: 100%;
  max-width: 800px;
  margin: 2rem auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-description {
  text-align: center;
  max-width: 800px;
  margin: 1rem auto 0;
  font-size: 1.1rem;
  line-height: 1.8;
}

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

.service-card {
  background: #00BFFF;
  border: none;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 191, 255, 0.3);
}

.service-card h3 {
  color: var(--bg-dark);
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--bg-dark);
}

.pricing-table {
  background: transparent;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  margin-top: 2rem;
}

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

.pricing-table th {
  background: #00BFFF;
  color: var(--bg-dark);
  padding: 1rem;
  text-align: left;
  font-weight: 700;
}

.pricing-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--text-light);
  background: #ff3333;
}

.pricing-table tr:hover {
  background: rgba(0, 0, 0, 0.2);
}

.booking-form {
  max-width: 600px;
  margin: 2rem auto;
  background: #00BFFF;
  border: none;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--bg-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 10px rgba(0, 191, 255, 0.3);
}

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

.contact-card {
  background: #00BFFF;
  border: none;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.contact-card i {
  font-size: 2rem;
  color: var(--bg-dark);
  margin-bottom: 1rem;
}

.contact-card a {
  color: var(--bg-dark);
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-card h3,
.contact-card p {
  color: var(--bg-dark);
}

.map-container {
  margin: 2rem 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
}

footer {
  background: var(--bg-dark);
  color: var(--text-light);
  padding: 2rem 0;
  text-align: center;
}

footer a {
  color: var(--accent-color);
  text-decoration: none;
}

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

.legal-content {
  max-width: 800px;
  margin: 2rem auto;
  background: #00BFFF;
  border: none;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.legal-content h2 {
  color: var(--bg-dark);
  margin-top: 2rem;
}

.legal-content h3 {
  color: var(--bg-dark);
  margin-top: 1.5rem;
}

.legal-content p,
.legal-content ul,
.legal-content li {
  color: var(--bg-dark);
}

.success-message,
.cancel-message {
  text-align: center;
  padding: 4rem 2rem;
}

.success-message h1 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.cancel-message h1 {
  color: var(--secondary-color);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  nav ul {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1.2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }
}
