@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Orbitron:wght@700&display=swap');

.tab-nav {
  position: fixed;
  top: 0; left: 0; width: 100vw;
  z-index: 100;
  background: rgba(22, 28, 54, 0.88);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  box-shadow: 0 2px 18px #00eaff22;
  border-bottom: 2px solid #00eaff33;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 62px;
}
.tab-nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0 18px;
}
.tab-link {
  display: block;
  padding: 10px 28px 7px 28px;
  font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: #eaf6ff;
  background: none;
  border: none;
  border-radius: 13px 13px 0 0;
  text-decoration: none;
  letter-spacing: 0.8px;
  transition: color 0.18s, background 0.18s;
  position: relative;
  outline: none;
}
.tab-link:hover, .tab-link:focus {
  color: #00eaff;
  background: rgba(0,234,255,0.08);
}
.tab-link.active {
  background: #00eaff22;
  color: #003366;
  border-radius: 8px;
  box-shadow: 0 2px 8px #00eaff33;
  font-weight: bold;
  text-decoration: underline;
}

.tab-link.active:after {
  content: '';
  display: block;
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: -5px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(90deg, #00eaff 0%, #7f5cff 100%);
  box-shadow: 0 0 14px #00eaff88, 0 0 6px #7f5cff44;
  opacity: 0.95;
  transition: opacity 0.18s;
}
@media (max-width: 700px) {
  .tab-link {
    font-size: 0.98rem;
    padding: 9px 10px 7px 10px;
  }
  .tab-nav {
    height: 48px;
  }
}

/* Hamburger menu for mobile */
@media (max-width: 700px) {
  .hamburger {
    display: flex !important;
  }
  .tab-nav ul {
    display: none !important;
    flex-direction: column;
    position: absolute;
    top: 54px;
    left: 0;
    width: 100vw;
    background: rgba(22,28,54,0.98);
    box-shadow: 0 8px 32px #00eaff33;
    padding: 18px 0 18px 0;
    z-index: 199;
    border-radius: 0 0 18px 18px;
    gap: 0;
  }
  .tab-nav ul.menu-open {
    display: flex !important;
  }
  .tab-nav ul li {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
  }
  .tab-link {
    width: 100%;
    padding: 16px 0 14px 0;
    font-size: 1.12rem;
    border-radius: 0;
    border-bottom: 1px solid #00eaff22;
    background: none;
  }
  .tab-link:last-child {
    border-bottom: none;
  }
  /* Hamburger icon animation */
  .hamburger.is-active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}


body {
  scroll-behavior: smooth;

  color: #222e3a;
  background: #009e88;
  min-height: 100vh;
  margin: 0;
  font-family: 'Montserrat', 'Orbitron', Arial, sans-serif;
  position: relative;
  overflow-x: hidden;
  padding-top: 74px;
}


.animated-bg-blobs {
  position: fixed;
  z-index: 0;
  top: 0; left: 0; width: 100vw; height: 100vh;
  pointer-events: none;
  overflow: hidden;
}
.bg-svg {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0; left: 0;
}
.blob {
  filter: blur(32px);
  opacity: 0.65;
  mix-blend-mode: lighten;
  transition: opacity 0.8s;
}
.blob1 {
  animation: blobMove1 16s ease-in-out infinite alternate;
}
.blob2 {
  animation: blobMove2 20s ease-in-out infinite alternate;
}
@keyframes blobMove1 {
  0% { transform: translate(0, 0); }
  50% { transform: translate(70px, 60px); }
  100% { transform: translate(0, 0); }
}
@keyframes blobMove2 {
  0% { transform: translate(0, 0); }
  50% { transform: translate(-80px, 50px); }
  100% { transform: translate(0, 0); }
}

.section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 42px auto;
  z-index: 2;
}
.section-divider-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00eaff 60%, #7f5cff 100%);
  margin: 0 7px;
  box-shadow: 0 0 12px #00eaff88, 0 0 6px #7f5cff44;
}

.card-title {
  font-size: 2.3rem;
  font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #00eaff;
  margin-bottom: 18px;
  margin-top: 0;
  letter-spacing: 1px;
  text-align: left;
  text-shadow: 0 2px 12px #00eaff44;
}
.card-subtitle {
  font-size: 1.09rem;
  color: #fff;
  margin-bottom: 18px;
  margin-top: -12px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  opacity: 0.96;
  text-shadow: 0 1px 8px #181e3c44;
}

/* Pricing Section Styles */
.pricing-section {
  padding: 48px 0 36px 0;
  background: linear-gradient(120deg, #181e3c 80%, #222 100%);
  text-align: center;
}
.pricing-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 36px;
}
.pricing-card {
  background: #23254a;
  border-radius: 16px;
  box-shadow: 0 4px 20px #00eaff22;
  padding: 32px 26px 28px 26px;
  width: 270px;
  max-width: 90vw;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.18s, box-shadow 0.18s;
}
.pricing-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px #00eaff44;
}
.pricing-card h3 {
  margin: 0 0 10px 0;
  font-size: 1.25em;
  color: #00eaff;
}
.pricing-card .price {
  font-size: 1.5em;
  font-weight: 700;
  margin: 8px 0 18px 0;
  color: #7f5cff;
}
.pricing-card .discount {
  font-size: 0.95em;
  color: #00eaff;
  font-weight: 400;
}
.pricing-card .cta-btn {
  margin-top: 10px;
  padding: 10px 24px;
  font-size: 1em;
  border-radius: 8px;
  background: linear-gradient(90deg,#00eaff 0%,#7f5cff 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px #00eaff22;
  text-decoration: none;
  transition: background 0.16s;
}
.pricing-card .cta-btn:hover {
  background: linear-gradient(90deg,#7f5cff 0%,#00eaff 100%);
}

/* How to Book Section */
.how-to-book-section {
  background: #21244a;
  padding: 36px 0 24px 0;
  text-align: center;
}
.how-to-book-list {
  max-width: 520px;
  margin: 0 auto;
  text-align: left;
  color: #fff;
  font-size: 1.1em;
  line-height: 1.7;
  padding-left: 0;
}
.how-to-book-list li {
  margin-bottom: 10px;
}

/* Workshop Inquiry Section */
.workshop-inquiry-section {
  background: #23254a;
  padding: 40px 0 36px 0;
  text-align: center;
}
.workshop-form {
  max-width: 420px;
  margin: 0 auto;
  background: #1a1b36;
  border-radius: 14px;
  box-shadow: 0 2px 12px #00eaff22;
  padding: 28px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.workshop-form label {
  color: #7f5cff;
  font-weight: 600;
  margin-bottom: 3px;
  text-align: left;
}
.workshop-form input, .workshop-form textarea {
  background: #23254a;
  color: #fff;
  border: 1px solid #00eaff44;
  border-radius: 7px;
  padding: 8px 10px;
  font-size: 1em;
  margin-bottom: 2px;
  outline: none;
  transition: border 0.15s;
}
.workshop-form input:focus, .workshop-form textarea:focus {
  border: 1.5px solid #00eaff;
}
.workshop-form .cta-btn {
  margin-top: 8px;
  padding: 10px 22px;
  font-size: 1em;
  border-radius: 8px;
  background: linear-gradient(90deg,#00eaff 0%,#7f5cff 100%);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px #00eaff22;
  transition: background 0.16s;
}
.workshop-form .cta-btn:hover {
  background: linear-gradient(90deg,#7f5cff 0%,#00eaff 100%);
}

/* Book via email box smaller and more compact */
.book-email-compact {
  font-size: 0.88em !important;
  padding: 5px 12px !important;
  border-radius: 7px !important;
  display: inline-block;
  background: linear-gradient(90deg,#00eaff 0%,#7f5cff 100%) !important;
  color: #fff !important;
  font-weight: 500 !important;
  box-shadow: 0 2px 8px #00eaff22 !important;
  margin-top: 10px !important;
  margin-bottom: 0 !important;
  line-height: 1.4;
}
.book-email-compact a {
  color: #fff !important;
  font-weight: 700;
  text-decoration: underline;
  font-size: 0.95em;
}



.service-img {
  width: 100%;
  border-radius: 12px;
  margin-top: 12px;
  margin-bottom: 2px;
  box-shadow: 0 2px 12px #00eaff22;
  object-fit: cover;
  max-height: 170px;
  display: block;
  transition: transform 0.25s cubic-bezier(.4,2,.4,1), box-shadow 0.2s;
}
.service-img:hover {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 8px 32px #00eaff55;
}

/* Client Logos Bar */
.client-logos-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin: 32px auto 28px auto;
  padding: 16px 0;
  background: rgba(22, 28, 54, 0.07);
  border-radius: 18px;
  box-shadow: 0 2px 12px #00eaff18;
  flex-wrap: wrap;
  max-width: 900px;
}
.client-logo {
  max-height: 38px;
  width: auto;
  margin: 0 18px;
  object-fit: contain;
  vertical-align: middle;
  transition: transform 0.18s, box-shadow 0.18s;
}
.client-logo:focus, .client-logo:hover {
  transform: scale(1.08);
  box-shadow: 0 2px 12px #00eaff55;
}
  filter: grayscale(0.2) brightness(0.92);
  opacity: 0.88;
  margin: 0 16px;
  transition: filter 0.18s, opacity 0.18s, transform 0.18s;
}
.client-logo:focus, .client-logo:hover {
  filter: grayscale(0) brightness(1.1) drop-shadow(0 2px 8px #00eaff55);
  opacity: 1;
  outline: 2px solid #00eaff;
  transform: scale(1.05);
}

/* Why Choose Me Section */
.why-choose-section {
  background: rgba(127, 92, 255, 0.08);
  border: 1.5px solid #7f5cff33;
  border-radius: 22px;
  margin-bottom: 32px;
  box-shadow: 0 2px 18px #7f5cff22;
  padding: 36px 22px 28px 22px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.why-list {
  margin-top: 18px;
  padding-left: 1.4em;
  color: #00eaff;
  font-size: 1.08rem;
  line-height: 1.7;
  font-family: 'Montserrat', Arial, sans-serif;
}
.why-list li {
  margin-bottom: 8px;
  list-style-type: disc;
  color: #00eaff;
}
  margin-top: 18px;
  padding-left: 1.4em;
  color: #003366;
  font-size: 1.08rem;
  line-height: 1.7;
  font-family: 'Montserrat', Arial, sans-serif;
}
.why-list li {
  margin-bottom: 8px;
  list-style-type: disc;
}

/* Floating Book Now Button */
.floating-book-btn {
  position: fixed;
  bottom: 22px;
  right: 18px;
  z-index: 999;
  background: #00eaff;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 16px 28px;
  font-size: 1.1rem;
  font-weight: bold;
  box-shadow: 0 8px 32px #00eaff44;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: none;
}
@media (max-width: 700px) {
  .floating-book-btn { display: block; }
}

/* Contact Form Styles */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.contact-form input, .contact-form textarea {
  padding: 10px;
  border-radius: 7px;
  border: 1px solid #c9e6f3;
  font-size: 1rem;
}
.contact-form button {
  background: #00eaff;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 10px 0;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #007ea7;
}

/* Footer Styles */
.site-footer {
  background: #003366;
  color: #fff;
  text-align: center;
  padding: 26px 10px 10px 10px;
  font-size: 1rem;
  margin-top: 48px;
}

.site-footer a { color: #00eaff; margin: 0 8px; }
.site-footer .footer-socials img {
  width: 28px;
  height: 28px;
  margin: 0 6px;
  vertical-align: middle;
  border-radius: 50%;
  background: #fff;
}

/* Privacy Policy */
.privacy-policy {
  font-size: 0.95rem;
  margin: 32px auto 0 auto;
  max-width: 800px;
  color: #333a4a;
  background: #f4f7fa;
  padding: 18px 22px;
  border-radius: 8px;
  box-shadow: 0 2px 12px #00eaff11;
}
  font-size: 0.95rem;
  margin: 32px auto 0 auto;
  max-width: 800px;
  color: #333a4a;
  background: #f4f7fa;
  padding: 18px 22px;
  border-radius: 8px;
  box-shadow: 0 2px 12px #00eaff11;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222e3a;
  color: #fff;
  padding: 12px 16px;
  text-align: center;
  z-index: 10000;
  font-size: 1rem;
  box-shadow: 0 -2px 12px #00eaff22;
}

.cookie-banner button {
  background: #00eaff;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 18px;
  margin-left: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-banner button:hover {
  background: #007ea7;
}

/* Testimonials Section Styles */
.testimonial-section {
  margin-top: 64px;
  margin-bottom: 64px;
  text-align: center;
  background: rgba(36, 40, 76, 0.97);
  border-radius: 22px;
  box-shadow: 0 2px 18px #00eaff22;
  padding: 56px 24px 44px 24px;
}

.testimonial-carousel {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 18px;
}
.testimonial-quote {
  flex: 0 0 32%;
  min-width: 240px;
  max-width: 370px;
  margin: 18px 16px;
  opacity: 1;
  background: rgba(22, 28, 54, 0.92);
  border-radius: 18px;
  border: 1.5px solid #00eaff33;
  box-shadow: 0 2px 18px #00eaff22;
  font-size: 1.09rem;
  color: #eaf6ff;
  font-style: italic;
  position: relative;
  padding: 32px 22px 24px 22px;
}
.testimonial-author {
  display: block;
  margin-top: 12px;
  color: #7f5cff;
  font-weight: 700;
  font-size: 1rem;
}

/* FAQ Section Styles */
.faq-section {
  margin-top: 0;
  margin-bottom: 48px;
  text-align: center;
  background: rgba(36, 40, 76, 0.97);
  border-radius: 22px;
  box-shadow: 0 2px 18px #00eaff22;
  padding: 36px 10px 28px 10px;
}
.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 0;
}
.faq-list details {
  background: rgba(36,40,76,0.92);
  border-radius: 14px;
  border: 1.5px solid #00eaff33;
  box-shadow: 0 2px 18px #00eaff22;
  color: #eaf6ff;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: box-shadow 0.2s;
}
.faq-list details[open] {
  box-shadow: 0 4px 24px #00eaff33;
  border-color: #00eaff;
}
.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: #00eaff;
  padding: 18px 22px;
  outline: none;
  border-radius: 14px;
  font-size: 1.09rem;
  transition: background 0.2s;
}
.faq-list summary:focus {
  background: #00336633;
  box-shadow: 0 0 0 2px #00eaff;
}
.faq-list div {
  padding: 0 22px 16px 22px;
  color: #eaf6ff;
  font-size: 1.05rem;
}

/* Resources Section Styles */
.resources-section {
  margin-top: 0;
  margin-bottom: 48px;
  text-align: center;
  background: rgba(36, 40, 76, 0.97);
  border-radius: 22px;
  box-shadow: 0 2px 18px #00eaff22;
  padding: 36px 10px 28px 10px;
}
.resources-list {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 10px 0;
}
.resources-list a {
  color: #00eaff;
  font-weight: 700;
  text-decoration: underline;
  transition: color 0.2s;
}
.resources-list a:focus, .resources-list a:hover {
  color: #7f5cff;
  outline: 2px solid #00eaff;
}

.faq-list details {
  background: rgba(36,40,76,0.92);
  border-radius: 14px;
  border: 1.5px solid #00eaff33;
  box-shadow: 0 2px 18px #00eaff22;
  color: #eaf6ff;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: box-shadow 0.2s;
}
.faq-list details[open] {
  box-shadow: 0 4px 24px #7f5cff33;
}
.faq-list summary {
  cursor: pointer;
  font-size: 1.13rem;
  font-weight: 600;
  padding: 22px 26px;
  outline: none;
  color: #00eaff;
  background: none;
  border: none;
  border-radius: 14px;
  transition: background 0.2s;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-answer {
  padding: 0 26px 18px 26px;
  color: #c9bfff;
  font-size: 1.02rem;
  text-align: left;
}

/* Blog Section Styles */
.blog-section {
  margin-top: 0;
  margin-bottom: 48px;
  text-align: center;
}
.blog-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 32px;
}
.blog-card {
  background: rgba(34,38,79,0.85);
  border-radius: 18px;
  border: 1.5px solid #7f5cff33;
  box-shadow: 0 2px 18px #7f5cff22;
  max-width: 350px;
  min-width: 260px;
  padding: 32px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, border 0.2s, transform 0.2s;
}
.blog-card, .resources-list li {
  transition: box-shadow 0.22s cubic-bezier(.22,1,.36,1), transform 0.18s cubic-bezier(.22,1,.36,1);
}
.blog-card:hover, .resources-list li:hover {
  box-shadow: 0 8px 32px #00eaff33, 0 2px 18px #7f5cff22;
  transform: scale(1.03);
  z-index: 2;
}

.section-divider-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: linear-gradient(90deg, #00eaff 0%, #7f5cff 100%);
  border-radius: 50%;
  margin: 0 6px;
  animation: bounce 1.3s infinite alternate cubic-bezier(.22,1,.36,1);
}
.section-divider-dot:nth-child(2) { animation-delay: 0.2s; }
.section-divider-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-9px); }
}

.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: linear-gradient(90deg, #00eaff 0%, #7f5cff 100%);
  color: #fff;
  font-weight: 700;
  font-size: 1.12em;
  border-radius: 50%;
  margin-right: 13px;
  box-shadow: 0 2px 10px #00eaff22;
  letter-spacing: 1px;
}

.blog-card:hover {
  box-shadow: 0 8px 32px #00eaff33, 0 2px 18px #7f5cff22;
  border: 2px solid #00eaff;
  transform: translateY(-4px) scale(1.03);
}
.blog-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #00eaff;
  margin-bottom: 10px;
}
.blog-summary {
  color: #c9bfff;
  font-size: 1.02rem;
  margin-bottom: 18px;
}
.blog-readmore {
  color: #7f5cff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  margin-top: auto;
  transition: color 0.2s;
}
.blog-readmore:hover {
  color: #00eaff;
}
@media (max-width: 900px) {
  .blog-cards {
    flex-direction: column;
    align-items: center;
  }
}


.testimonials-section {
  margin-top: 0;
  margin-bottom: 48px;
  text-align: center;
}
.testimonial-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  margin: 32px 0 24px 0;
}
.testimonial-stat {
  min-width: 128px;
  padding: 28px 18px 18px 18px;
  border-radius: 18px;
  background: rgba(34, 38, 79, 0.85);
  box-shadow: 0 2px 18px #00eaff22;
  border: 1.5px solid #00eaff22;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
}
.stat-value {
  font-size: 2rem;
  font-weight: 700;
  color: #00eaff;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 1.04rem;
  color: #c9bfff;
  opacity: 0.88;
}
.testimonial-quotes {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 28px;
  margin-bottom: 16px;
}
.testimonial-quote {
  flex: 0 0 32%;
  min-width: 270px;
  max-width: 370px;
  margin: 0 4px;
  opacity: 1;
  transition: opacity 0.5s;
  /* rest of testimonial-quote styles */
}

.testimonial-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 36px auto 0 auto;
  padding: 0 12px;
  min-height: 170px;
}
.carousel-track {
  display: flex;
  gap: 22px;
  transition: transform 0.7s cubic-bezier(.77,0,.18,1);
  will-change: transform;
  width: 100%;
}
.carousel-btn {
  background: rgba(34,38,79,0.65);
  border: none;
  color: #00eaff;
  font-size: 2.2rem;
  padding: 10px 16px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 8px;
  box-shadow: 0 2px 10px #00eaff33;
  transition: background 0.2s, color 0.2s;
  z-index: 2;
}
.carousel-btn:hover {
  background: #00eaff;
  color: #181e3c;
}
@media (max-width: 900px) {
  .testimonial-carousel {
    flex-direction: column;
    padding: 0;
  }
  .carousel-track {
    gap: 8px;
  }
  .testimonial-quote {
    flex: 0 0 90vw;
    min-width: 90vw;
    max-width: 95vw;
  }
}

  flex: 1 1 260px;
  min-width: 220px;
  max-width: 380px;
  padding: 28px 22px 22px 22px;
  border-radius: 18px;
  background: rgba(36, 40, 76, 0.92);
  border: 1.5px solid #7f5cff44;
  box-shadow: 0 2px 18px #7f5cff22;
  font-size: 1.09rem;
  color: #eaf6ff;
  font-style: italic;
  position: relative;
}

.booking-section {
  margin-top: 0;
  margin-bottom: 48px;
  text-align: center;
}
.booking-calendar {
  margin: 0 auto;
  margin-top: 32px;
  max-width: 620px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px #00eaff30, 0 2.5px 18px #7f5cff18;
  background: rgba(34, 38, 79, 0.87);
  border: 2px solid #00eaff33;
  padding: 0;
}

@media (max-width: 900px) {
  .testimonial-stats, .testimonial-quotes {
    flex-direction: column;
    align-items: center;
  }
  .booking-calendar {
    max-width: 100%;
    min-width: 0;
  }
}

  width: 100%;
  max-width: 1000px;
  margin: 64px auto 0 auto;
  background: rgba(22, 28, 54, 0.88);
  border-radius: 32px;
  box-shadow: 0 16px 64px 0 #00eaff55, 0 4px 24px 0 #7f5cff33;
  border: 2.5px solid rgba(0,234,255,0.22);
  padding: 56px 48px;
  text-align: left;
  position: relative;
  overflow: hidden;
  margin-bottom: 54px;
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  animation: fadeInUp 1.2s cubic-bezier(.32,1.15,.56,1.02);
  transition: box-shadow 0.18s, border 0.18s;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(80px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.pro-card {
  background: rgba(22, 28, 54, 0.96);
  border-radius: 28px;
  box-shadow: 0 8px 32px #00eaff22;
  color: #eaf6ff;
  position: relative;
  overflow: hidden;
  margin-bottom: 38px;
  padding: 48px 32px 38px 32px;
}
.pro-card:before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, #00eaff44 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.pro-card:after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, #7f5cff33 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.pro-card > * { position: relative; z-index: 2; }

.hero-card.glass {
  background: rgba(34, 38, 79, 0.87);
  box-shadow: 0 16px 64px 0 #00eaff55, 0 4px 24px 0 #7f5cff33;
  border-radius: 32px;
  border: 2.5px solid rgba(0,234,255,0.22);
  padding: 56px 48px;
  max-width: 1000px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  margin: 64px auto 0 auto;
  z-index: 2;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1.2s cubic-bezier(.32,1.15,.56,1.02);
  transition: box-shadow 0.18s, border 0.18s;
}
.profile-pic.hero-pic {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #00eaff;
  margin-bottom: 32px;
  box-shadow: 0 0 0 6px #7f5cff33;
  display: block;
  margin-left: auto;
  margin-right: auto;
  transition: width 0.2s, height 0.2s;
}
.hero-name {
  font-family: 'Orbitron', 'Montserrat', Arial, sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #00eaff;
  margin: 0 0 12px 0;
  letter-spacing: 1.2px;
  text-shadow: 0 2px 16px #00eaff44;
  text-align: center;
  width: 100%;
  display: block;
}
.hero-role {
  font-size: 1.25rem;
  font-weight: 600;
  color: #c9bfff;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.hero-tagline {
  font-size: 1.13rem;
  margin-bottom: 32px;
  color: #eaf6ff;
  opacity: 0.93;
}
.cta-btn {
  display: inline-block;
  padding: 16px 38px;
  background: linear-gradient(90deg, #00eaff 0%, #7f5cff 100%);
  color: #fff;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  box-shadow: 0 2px 8px #00eaff77;
  outline: none;
  border: none;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 18px;
}
.cta-btn:focus, .cta-btn:hover {
  background: linear-gradient(90deg, #7f5cff 0%, #00eaff 100%);
  box-shadow: 0 4px 16px #7f5cffcc;
  transform: scale(1.04);
  outline: 2px solid #00eaff;
}
.book-btn {
  background: linear-gradient(90deg, #7f5cff 0%, #00eaff 100%);
  margin-right: 0;
}
.book-btn:focus, .book-btn:hover {
  background: linear-gradient(90deg, #00eaff 0%, #7f5cff 100%);
}
.hero-btn-row {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  margin-bottom: 0;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
}
  display: inline-block;
  padding: 16px 38px;
  background: linear-gradient(90deg, #00eaff 0%, #7f5cff 100%);
  color: #fff;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  box-shadow: 0 2px 8px #00eaff77;
  outline: none;
  border: none;
  margin-top: 18px;
  margin-bottom: 0;
}
.cta-btn:focus, .cta-btn:hover {
  background: linear-gradient(90deg, #7f5cff 0%, #00eaff 100%);
  box-shadow: 0 4px 16px #7f5cffcc;
  transform: scale(1.04);
  outline: 2px solid #00eaff;
}
  display: inline-block;
  padding: 16px 38px;
  background: linear-gradient(90deg, #00eaff 0%, #7f5cff 100%);
  color: #fff;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  transition: background 0.2s, box-shadow 0.2s, transform 0.18s;
  box-shadow: 0 2px 8px #00eaff77;
  outline: none;
  border: none;
  margin-top: 18px;
  margin-bottom: 0;
}
.cta-btn:focus, .cta-btn:hover {
  background: linear-gradient(90deg, #7f5cff 0%, #00eaff 100%);
  box-shadow: 0 4px 16px #7f5cffcc;
  transform: scale(1.04);
  outline: 2px solid #00eaff;
}

  animation: pulse 1.5s infinite;
  box-shadow: 0 2px 16px #00eaff44;
  transition: background 0.2s, transform 0.2s;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 #00eaff44; }
  70% { box-shadow: 0 0 0 12px #00eaff11; }
  100% { box-shadow: 0 0 0 0 #00eaff44; }
}
.secondary-cta {
  background: #fff;
  color: #00eaff;
  border: 1px solid #00eaff;
  border-radius: 6px;
  padding: 8px 18px;
  margin-left: 12px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  display: inline-block;
}
  background: #fff;
  color: #00eaff;
  border: 1px solid #00eaff;
  border-radius: 6px;
  padding: 8px 18px;
  margin-left: 12px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.secondary-cta:hover {
  background: #00eaff;
  color: #fff;
}
  display: inline-block;
  padding: 16px 46px;
  font-size: 1.18rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #00eaff 0%, #7f5cff 100%);
  border: none;
  border-radius: 26px;
  box-shadow: 0 2px 16px #00eaff44;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
  letter-spacing: 0.4px;
  position: relative;
}
.cta-btn:hover {
  background: linear-gradient(90deg, #7f5cff 0%, #00eaff 100%);
  box-shadow: 0 8px 32px #00eaff66;
  transform: translateY(-2px) scale(1.04);
}

.service-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 0;
  justify-content: space-between;
}
.service-item {
  flex: 1 1 260px;
  min-width: 220px;
  background: rgba(36, 40, 76, 0.92);
  border-radius: 22px;
  box-shadow: 0 2px 18px #00eaff22;
  padding: 32px 20px 28px 20px;
  border: 1.5px solid #00eaff22;
  transition: transform 0.18s, box-shadow 0.18s, border 0.18s;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}
/* .service-item:before removed (robot emoji gone) */
.service-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 36px #00eaff44;
  border-color: #00eaff;
}
.service-item h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #7f5cff;
  font-size: 1.22rem;
  font-weight: 700;
}
.service-item p {
  margin: 0;
  font-size: 1.05rem;
  color: #eaf6ff;
  opacity: 0.92;
}

.expect-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 1.3em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.08rem;
  color: #eaf6ff;
  background: rgba(36, 40, 76, 0.92);
  border-radius: 16px;
  padding: 24px 20px 24px 32px;
  box-shadow: 0 2px 18px #00eaff11;
}
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: 1.3em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.08rem;
  color: #eaf6ff;
}
.expect-list li ul {
  margin-top: 10px;
  margin-bottom: 0;
  padding-left: 1.2em;
  font-size: 1.04rem;
  color: #c9bfff;
}

.pricing-cards {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 28px;
  justify-content: space-between;
  align-items: stretch;
}

  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 28px;
  justify-content: space-between;
}
.pricing-card {
  flex: 1 1 260px;
  min-width: 220px;
  border: 2px solid #7f5cff33;
  border-radius: 22px;
  background: rgba(36, 40, 76, 0.93);
  box-shadow: 0 2px 18px #7f5cff22;
  padding: 36px 24px 32px 24px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s, border 0.18s;
  outline: none;
}
.pricing-card:focus, .pricing-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 12px 36px #7f5cff44;
  border-color: #7f5cff;
  outline: 2px solid #00eaff;
}
.pricing-card.popular {
  border: 2.5px solid #00eaff;
  background: linear-gradient(90deg, #00eaff11 0%, #7f5cff09 100%);
}

  flex: 1 1 260px;
  min-width: 220px;
  border: 1.5px solid #7f5cff44;
  border-radius: 22px;
  background: rgba(36, 40, 76, 0.92);
  box-shadow: 0 2px 18px #7f5cff22;
  padding: 36px 24px 32px 24px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s, box-shadow 0.18s, border 0.18s;
}
.pricing-card:before {
  content: '\1F4B0'; /* 💰 placeholder icon */
  font-size: 2.1rem;
  margin-bottom: 12px;
  color: #7f5cff;
  opacity: 0.85;
  display: block;
}
.pricing-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 36px #7f5cff44;
  border-color: #7f5cff;
}
.pricing-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #00eaff;
  font-size: 1.13rem;
  font-weight: 700;
}
.price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #7f5cff;
  margin: 10px 0 18px 0;
}
.pricing-note {
  margin-top: 32px;
  color: #eaf6ff;
  font-size: 1.08rem;
  opacity: 0.92;
}

.contact-section .card-title {
  margin-bottom: 12px;
  color: #7f5cff;
}
.contact-section p {
  margin-bottom: 18px;
  color: #eaf6ff;
}
.contact-btn {
  display: inline-block;
  padding: 16px 38px;
  background: linear-gradient(90deg, #00eaff 0%, #7f5cff 100%);
  color: #fff;
  border-radius: 28px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  transition: background 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px #00eaff77;
}
.contact-btn:hover, .calendly-btn:hover, button:hover {
  box-shadow: 0 0 16px #00eaff88, 0 2px 12px #7f5cff44;
  filter: brightness(1.08);
  outline: none;
}

html {
  scroll-behavior: smooth;
}

.pro-card, .blog-card, .testimonial-quote, .pricing-card {
  box-shadow: 0 4px 18px #00eaff18, 0 2px 10px #7f5cff0e;
  transition: box-shadow 0.18s, border 0.18s;
}

nav a, .site-footer a {
  position: relative;
  overflow: hidden;
  transition: color 0.18s;
}
nav a::after, .site-footer a::after {
  content: '';
  display: block;
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, #00eaff 0%, #7f5cff 100%);
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(.22,1,.36,1);
}
nav a:hover::after, .site-footer a:hover::after {
  transform: scaleX(1);
}

h2.card-title, .card-title {
  letter-spacing: 1.2px;
  font-weight: 800;
  text-shadow: 0 2px 12px #00eaff11;
}

.contact-btn:hover {
  background: linear-gradient(90deg, #7f5cff 0%, #00eaff 100%);
  box-shadow: 0 4px 16px #7f5cffcc;
}

/* Focus states for all interactive elements */
a:focus, button:focus, .tab-link:focus, .contact-btn:focus, .faq-list summary:focus, .resources-list a:focus {
  outline: 2px solid #00eaff;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px #7f5cff55;
}

@media (max-width: 700px) {
  .pro-card, .service-item, .pricing-card, .hero-card.glass {
    border-radius: 18px !important;
    padding: 24px 10px !important;
  }
  .section-divider {
    margin-bottom: 24px;
  }
  .card-title {
    font-size: 1.3rem;
  }
  .card-subtitle {
    font-size: 1rem;
    margin-bottom: 14px;
  }
  .profile-pic.hero-pic {
    width: 160px;
    height: 160px;
  }
}
