/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #0f172a, #111827);
  color: #f9fafb;
  min-height: 100vh;
  line-height: 1.6;
}

/* HEADER */
header {
  background: #1f2937;
  color: #f9fafb;
  text-align: center;
  padding: 20px 0;
  border-bottom: 2px solid #3b82f6;
}

header h1 {
  color: #3b82f6;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: #f9fafb;
  transition: 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #3b82f6;
}

/* HERO */
.hero {
  background: linear-gradient(145deg, #111827, #1f2937);
  text-align: center;
  padding: 100px 20px;
  border-top: 1px solid #3b82f6;
  border-bottom: 1px solid #3b82f6;
}

.hero h2 {
  font-size: 2.5rem;
  color: #60a5fa;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  color: #d1d5db;
  margin-bottom: 25px;
}

.cta-btn {
  background: #3b82f6;
  color: #fff;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #2563eb;
  box-shadow: 0 0 15px #3b82f6;
}

/* SECTION */
section {
  padding: 60px 20px;
  text-align: center;
}

section h2 {
  color: #3b82f6;
  margin-bottom: 25px;
  font-size: 2rem;
}

/* CARD */
.card {
  background: #1f2937;
  border: 1px solid #2d3748;
  border-radius: 12px;
  padding: 25px;
  margin: 15px auto;
  max-width: 600px;
  transition: all 0.3s ease;
  color: #f9fafb;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px #3b82f6;
}

/* FOOTER */
footer {
  background: #1f2937;
  color: #d1d5db;
  text-align: center;
  padding: 20px;
  border-top: 2px solid #3b82f6;
}

footer a {
  color: #3b82f6;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
/* CONTACT & BOOKING FORMS */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #1f2937;
  border: 1px solid #2d3748;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

label {
  display: block;
  color: #f9fafb;
  font-weight: 500;
  margin-bottom: 8px;
}

input, textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #374151;
  background: #111827;
  color: #f9fafb;
  font-size: 1rem;
}

input:focus, textarea:focus {
  border-color: #3b82f6;
  outline: none;
  box-shadow: 0 0 10px #3b82f6;
}

button.cta-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  font-weight: bold;
}
/* PRICING PAGE */
.pricing {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  padding: 40px 20px;
}

.price-card {
  background: #1f2937;
  border: 1px solid #2d3748;
  border-radius: 15px;
  width: 280px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px #3b82f6;
}

.price-card h3 {
  color: #3b82f6;
  margin-bottom: 15px;
  font-size: 1.4rem;
}

.price-card .price {
  font-size: 2rem;
  color: #60a5fa;
  margin-bottom: 20px;
}

.price-card ul {
  list-style: none;
  text-align: left;
  color: #d1d5db;
  margin-bottom: 20px;
}

.price-card ul li {
  margin: 6px 0;
}
.card, .price-card, .contact-form {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.card.visible, .price-card.visible, .contact-form.visible {
  opacity: 1;
  transform: translateY(0);
}
