html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
	display: flex;
    flex-direction: column;
    font-family: Arial, sans-serif;
    color: #fff;
    background: url('../img/background-image.jpg') no-repeat center center fixed;
    background-size: cover;
}

.wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #071012;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    text-shadow: 0 0 5px #fff;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-left: 20px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
}

main {
	flex: 1;
    padding: 50px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7); /* Added background for readability */
}

.intro {
    margin-bottom: 50px;
}

.intro h1 {
    font-size: 36px;
    text-shadow: 0 0 10px #fff;
}

.intro p {
    font-size: 20px;
}

.evidence {
    position: relative;
    margin-top: 50px; /* Pushes the section down */
}

.line {
    width: 80%;
    height: 2px;
    background: #fff;
    margin: 0 auto 10px; /* Adjusted bottom margin for less space */
}

.evidence h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-shadow: 0 0 5px #fff;
}

.gallery {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.gallery-item {
    width: 200px;
    height: 150px;
    overflow: hidden;
    border: 2px solid #fff;
    box-shadow: 0 0 10px #000;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(70%);
}

footer {
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    text-align: center;
    margin-top: 20px; /* Adjusted top margin for better spacing */
}

footer p {
    margin-top: 20px;
    font-size: 14px;
}

.additional {
    margin: 50px 0; /* Adjust the margin as needed */
    text-align: center;
    background: rgba(0, 0, 0, 0.7); /* Background for readability */
    padding: 85px;
}

.additional h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-shadow: 0 0 5px #fff;
}

.additional p {
    font-size: 20px;
    text-shadow: 0 0 5px #fff;
}

.live-stream-button {
    position: absolute;
    top: 80px; /* Adjust this value as needed to position below the header */
    right: 20px; /* Adjust this value as needed */
    background-color: rgba(0, 0, 0, 0.8); /* Semi-transparent background */
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    z-index: 1000; /* Ensure it stays on top */
}

.live-stream-button a {
    color: #fff;
    text-decoration: none;
    margin: 0 10px;
    font-size: 16px;
    font-weight: bold;
}

.live-stream-button a:hover {
    text-decoration: underline;
}

.blink {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

/* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0, 0, 0, 0.9); /* Black with opacity */
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    position: relative; /* Added to make it easier to center */
    top: 50%; /* Start in the middle */
    transform: translateY(-50%); /* Center vertically */
    animation-name: zoom;
    animation-duration: 0.6s;
}

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

.close {
    position: absolute;
    top: 150px;
    right: 620px;
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

.services h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-shadow: 0 0 5px #fff;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    font-size: 20px;
    margin: 10px 0;
    text-shadow: 0 0 5px #fff;
}
.logo-image {
    display: block;
    margin: 0 auto 20px; /* Center the logo and add some space below it */
    width: 150px; /* Adjust the width as needed */
    height: auto;
}

/* Services Section */
.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 20px;
}

.service-icon {
    width: 30px;
    height: auto;
    margin-right: 10px;
    vertical-align: middle;
}

.service-list h3 {
    font-size: 22px;
    margin-bottom: 10px;

}

.service-list p {
    font-size: 18px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f76c6c;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

.btn:hover {
    background-color: #ff4747;
}

/* FAQ Section */
.faq h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-shadow: 0 0 5px #fff;
}

.faq .accordion-item h4 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    cursor: pointer;
}

.accordion-item h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* space between icon, text, and arrow */
  text-align: center;
}

.faq .accordion-content {
    display: none;
    padding: 10px;
    background-color: #f4f4f4;
    margin-bottom: 15px;
    color: black;
}

/* Accordion Styles for Services and FAQ */
.accordion-content {
    display: none;
    padding: 10px;
    background-color: #444;
    margin-top: 10px;
    color: white;
}

/* Adds a line above the services section */
.section-divider {
    width: 80%; /* Adjust the width of the line */
    height: 2px; /* Height of the line */
    background-color: #fff; /* Color of the line */
    margin: 0 auto 20px; /* Center the line and add space below */
}

/* Changes curser when hover over */
.accordion-item h3 {
    cursor: pointer; /* Makes the text appear clickable */
    transition: color 0.3s ease; /* Smooth transition effect */
}

.accordion-item h3:hover {
    color: #f76c6c; /* Change color when hovering */
}

.accordion-item h4 {
    cursor: pointer; /* Makes the text appear clickable */
    transition: color 0.3s ease; /* Smooth transition effect */
}

.accordion-item h4:hover {
    color: #f76c6c; /* Change color when hovering */
}

/* Default arrow indicator style */
.arrow-indicator {
    font-size: 18px;
    margin-left: 10px;
    transition: transform 0.3s ease; /* Smooth arrow rotation */
}

/* Rotate the arrow when content is expanded */
.accordion-item.active .arrow-indicator {
    transform: rotate(180deg); /* Flips the arrow */
}

/* Custom ghost cursor for gallery items in the evidence section */
.evidence .gallery-item {
   cursor: url('../img/GhostCurser.png'), auto !important;
}

/* Optional hover effect to highlight gallery items */
.evidence .gallery-item:hover {
    transform: scale(1.05); /* Slight zoom on hover */
    transition: transform 0.3s ease;
}
.services-wrapper {
    background-color: rgba(0, 0, 0, 0.5); /* Black background with 50% transparency */
    padding: 40px;
    border-radius: 12px;
    margin: 40px auto;
    max-width: 1200px;
}

/* Heading styles */
.services-wrapper h2 {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

/* Custom ghost cursor for service titles and FAQ */
.services-wrapper .accordion-item h3, 
.services-wrapper .accordion-item h4 {
    cursor: url('../img/GhostCurser.png'), auto !important; /* Replace with your actual path */
}

/* Optional: Hover effect for visual feedback */
.services-wrapper .accordion-item h3:hover,
.services-wrapper .accordion-item h4:hover {
    color: #f76c6c;
}

/* Additional styling for accordion items */
.accordion-item h3, .accordion-item h4 {
    cursor: pointer;
    transition: color 0.3s ease;
}
/* Spider styling */
#spider {
    position: fixed;
    top: 0;
    width: 30px;
    height: 30px;
    background: url('../img/spider.png') no-repeat center center;
    background-size: contain;
    pointer-events: all;
    z-index: 1000;
    display: none; /* Hidden initially */
}

/* Drop animation */
@keyframes dropSpider {
    from {
        top: 0;
    }
    to {
        top: 50vh; /* Drop halfway down the viewport */
    }
}

/* Crawl up animation */
@keyframes crawlUpSpider {
    from {
        top: 50vh;
    }
    to {
        top: 0;
    }
}

/* Apply the drop animation */
#spider.drop {
    animation: dropSpider 60s linear forwards;
}

/* Apply the crawl up animation on hover */
#spider.crawl-up {
    animation: crawlUpSpider 5s linear forwards;
}

/* Spider Thread */
#spider-thread {
    position: fixed;
    top: 0;
    width: 2px;
    background-color: white;
    z-index: 999;
    display: none; /* Hidden initially */
}

/* Wiggle Animation */
@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* Apply the wiggle animation */
#spider.wiggle {
    animation: wiggle 0.5s ease-in-out infinite; /* Infinite loop for continuous wiggle */
}
/* adds a ghostly effect to the contact button */
.accordion-content {
  text-align: center;
  padding: 20px;
}

.contact-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  cursor: url('../img/GhostCurser.png'), pointer; /* Optional ghost cursor */
}

.contact-button:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
}
/* pop up schedule */
/* Calendar Modal */
#calendarModal,
#bookingModal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(17, 17, 17, 0.95);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  z-index: 9999;
  box-shadow: 0 0 15px #000;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
}

/* Close button inside modals */
.close-button {
  position: absolute;
  top: 8px;
  right: 10px;
  background: transparent;
  color: #fff;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

/* Buttons inside modals */
#calendarModal button,
#bookingModal button {
  padding: 6px 12px;
  margin-top: 5px;
  background-color: #444;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Input fields */
#bookingModal input,
#bookingModal textarea {
  width: 100%;
  padding: 8px;
  background: #222;
  color: #fff;
  border: 1px solid #444;
  border-radius: 4px;
}

/* Label styling */
#bookingModal label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}


/* word filter */
.ghostly {
  color: #ccc;
  font-style: italic;
  text-shadow: 0 0 5px #aaa;
  transition: opacity 0.5s ease;
}

/*page effect */
.ghost-word {
  color: #aaffff;
  font-style: italic;
  animation: flicker 1.5s infinite;
}

@keyframes flicker {
  0%, 18%, 22%, 25%, 53%, 57%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0;
  }
}

/* Modern homepage frame */
.home-page {
  padding: 0;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(3, 8, 12, 0.45) 0%, rgba(3, 8, 12, 0.92) 44%, #071012 100%);
}

.home-hero {
  min-height: calc(100vh - 190px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(250px, 0.75fr);
  gap: 34px;
  align-items: end;
  padding: 72px min(7vw, 88px) 56px;
}

.home-hero__content {
  max-width: 860px;
}

.home-hero .logo-image {
  width: 140px;
  margin: 0 0 24px;
}

.home-hero h1 {
  margin: 0 0 20px;
  max-width: 900px;
  font-size: clamp(38px, 5.8vw, 68px);
  line-height: 1.04;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.65);
}

.home-hero p:last-of-type {
  max-width: 760px;
  margin: 0;
  color: #d8e4e3;
  font-size: 20px;
  line-height: 1.65;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.home-page .live-stream-button {
  position: static;
  justify-self: end;
  width: min(100%, 360px);
  padding: 20px;
  border: 1px solid rgba(216, 244, 239, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(216, 244, 239, 0.08), rgba(216, 244, 239, 0)),
    rgba(7, 14, 18, 0.78);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(7px);
}

.home-page .live-stream-button span {
  display: block;
  margin-bottom: 10px;
  color: #aab7b8;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-page .live-stream-button div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.home-page .live-stream-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  margin: 0;
  border: 1px solid rgba(216, 244, 239, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.home-page .additional {
  width: min(100% - min(14vw, 144px), 1120px);
  margin: 0 auto;
  padding: 34px clamp(24px, 5vw, 72px) 38px;
  border: 1px solid rgba(216, 244, 239, 0.14);
  border-radius: 8px;
  background: rgba(9, 17, 20, 0.86);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.home-page .additional .section-heading {
  display: grid;
  justify-items: center;
  margin: 0 auto 22px;
  text-align: center;
}

.home-page .additional h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  text-shadow: 0 0 14px rgba(216, 244, 239, 0.12);
}

.home-page .additional h2::after {
  content: '';
  display: block;
  width: min(180px, 46vw);
  height: 1px;
  margin: 18px auto 0;
  background: linear-gradient(90deg, transparent, rgba(158, 216, 208, 0.6), transparent);
}

.home-page .additional .mission-copy {
  max-width: 860px;
  margin: 0 auto;
  color: #d8e4e3;
  font-size: 20px;
  line-height: 1.65;
  text-align: center;
  text-wrap: balance;
  text-shadow: none;
}

.home-page .additional .mission-copy .ghost-word,
.home-page .additional #hauntedText {
  display: inline-block;
  color: #d8f4ef;
  font-style: italic;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(158, 216, 208, 0.32);
}

.home-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100% - min(14vw, 144px), 1120px);
  margin: 28px auto 0;
  padding: 0;
}

.home-links a {
  min-height: 112px;
  padding: 20px;
  border-top: 1px solid rgba(216, 244, 239, 0.14);
  border-bottom: 1px solid rgba(216, 244, 239, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  text-decoration: none;
}

.home-links a:first-child {
  border-left: 1px solid rgba(216, 244, 239, 0.14);
  border-radius: 8px 0 0 8px;
}

.home-links a:last-child {
  border-right: 1px solid rgba(216, 244, 239, 0.14);
  border-radius: 0 8px 8px 0;
}

.home-links span {
  display: block;
  margin-bottom: 10px;
  color: #9ed8d0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-links strong {
  display: block;
  color: #e9f3f1;
  line-height: 1.45;
}

.home-page .evidence {
  max-width: 1120px;
  margin: 58px auto 0;
  padding: 0 min(7vw, 72px) 70px;
}

.home-page .line {
  width: 100%;
  height: 1px;
  margin: 0 0 26px;
  background: rgba(216, 244, 239, 0.24);
}

.home-page .evidence .section-heading {
  margin-bottom: 22px;
}

.home-page .evidence h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  text-shadow: 0 0 14px rgba(216, 244, 239, 0.12);
}

.home-page .gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.home-page .gallery-item {
  position: relative;
  width: auto;
  height: auto;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 1px solid rgba(216, 244, 239, 0.18);
  border-radius: 8px;
  background: rgba(9, 17, 20, 0.94);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.38);
}

.home-page button.gallery-item {
  color: inherit;
  font: inherit;
}

.home-page .gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: brightness(0.68) contrast(1.05);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.home-page .gallery-item:hover {
  transform: none;
}

.home-page .gallery-item:hover img {
  transform: scale(1.045);
  filter: brightness(0.95) contrast(1.05);
}

.home-page .gallery-item span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 34px 14px 14px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-align: left;
  background: linear-gradient(180deg, rgba(3, 8, 12, 0), rgba(3, 8, 12, 0.92));
}

.home-page + footer,
.wrapper + footer {
  background: #071012;
}

.home-page ~ .modal,
.modal {
  backdrop-filter: blur(7px);
}

.modal .close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 1001;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 900px) {
  .home-hero,
  .home-links,
  .home-page .gallery {
    grid-template-columns: 1fr;
  }

  .home-page .live-stream-button {
    justify-self: start;
  }

  .home-links a,
  .home-links a:first-child,
  .home-links a:last-child {
    border: 1px solid rgba(216, 244, 239, 0.14);
    border-radius: 8px;
  }
}

/* Professional Services page */
.services-page {
  padding: 0;
  text-align: left;
  background: rgba(3, 8, 12, 0.88);
}

.services-page h1,
.services-page h2,
.services-page h3,
.services-page p {
  margin-top: 0;
}

.services-hero {
  min-height: calc(100vh - 190px);
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 36px;
  align-items: end;
  padding: 72px min(7vw, 88px) 56px;
  background:
    linear-gradient(90deg, rgba(3, 8, 12, 0.97) 0%, rgba(3, 8, 12, 0.78) 50%, rgba(3, 8, 12, 0.42) 100%),
    url('../img/background-image.jpg') center center / cover no-repeat;
}

.services-hero__content {
  max-width: 820px;
}

.eyebrow {
  color: #9ed8d0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.services-hero h1 {
  font-size: clamp(36px, 6vw, 68px);
  line-height: 1.03;
  margin-bottom: 22px;
  max-width: 900px;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}

.hero-copy {
  color: #d8e4e3;
  font-size: 20px;
  line-height: 1.65;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.primary-action,
.secondary-action,
.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
}

.primary-action {
  background: #b8e5dd;
  color: #071012;
  border: 1px solid #b8e5dd;
}

.secondary-action {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.08);
}

.primary-action:hover,
.secondary-action:hover {
  transform: translateY(-1px);
}

.service-summary {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
}

.service-summary div {
  padding: 18px;
  background: rgba(7, 14, 18, 0.78);
}

.service-summary span {
  display: block;
  color: #aab7b8;
  font-size: 13px;
  margin-bottom: 7px;
}

.service-summary strong {
  color: #fff;
  font-size: 19px;
}

.services-band,
.process-section,
.professional-faq,
.booking-cta {
  padding: 58px min(7vw, 88px);
}

.services-band {
  background:
    linear-gradient(180deg, rgba(3, 8, 12, 0.96), rgba(8, 15, 18, 0.98)),
    url('../img/background-image.jpg') center center / cover fixed no-repeat;
  color: #fff;
  border-top: 1px solid rgba(216, 244, 239, 0.12);
  border-bottom: 1px solid rgba(216, 244, 239, 0.1);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 26px;
}

.section-heading h2 {
  color: inherit;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.15;
  margin-bottom: 0;
  text-shadow: none;
}

.services-band .section-heading h2,
.professional-faq .section-heading h2,
.process-section .section-heading h2 {
  text-shadow: 0 0 14px rgba(216, 244, 239, 0.12);
}

.professional-service-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.professional-service-list .service-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  background:
    linear-gradient(135deg, rgba(216, 244, 239, 0.08), rgba(216, 244, 239, 0)),
    rgba(9, 17, 20, 0.94);
  border: 1px solid rgba(216, 244, 239, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.36);
  text-shadow: none;
}

.professional-service-list .service-card h3 {
  justify-content: flex-start;
  min-height: 86px;
  padding: 20px;
  margin: 0;
  color: #fff;
  font-size: 20px;
  text-align: left;
}

.professional-service-list .service-icon {
  width: 38px;
  flex: 0 0 auto;
}

.professional-service-list .service-details {
  flex: 1;
  padding: 0 20px 22px;
  background: transparent;
  color: #d3dddd;
  text-align: left;
}

.professional-service-list .service-details p,
.professional-faq .accordion-content p {
  line-height: 1.6;
}

.professional-service-list .service-details ul {
  margin: 16px 0 20px;
  padding-left: 18px;
}

.professional-service-list .service-details li {
  margin: 8px 0;
  font-size: 16px;
  text-shadow: none;
}

.professional-service-list .contact-button {
  color: #071012;
  background: #b8e5dd;
  border: 1px solid #b8e5dd;
  box-shadow: none;
  cursor: pointer;
}

.process-section {
  background: #10191c;
  border-bottom: 1px solid rgba(216, 244, 239, 0.1);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.process-grid > div {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.step-number {
  display: block;
  color: #9ed8d0;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
}

.process-grid h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.process-grid p {
  color: #d2dcdd;
  line-height: 1.6;
  margin-bottom: 0;
}

.professional-faq {
  background: #0b1417;
  color: #fff;
  border-bottom: 1px solid rgba(216, 244, 239, 0.1);
}

.professional-faq .accordion-item {
  max-width: 900px;
  margin: 0 0 12px;
  border: 1px solid rgba(216, 244, 239, 0.15);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.professional-faq .accordion-item h4 {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  margin: 0;
  color: #fff;
  font-size: 19px;
}

.professional-faq .accordion-content {
  padding: 0 20px 20px;
  background: transparent;
  color: #d3dddd;
  text-align: left;
}

.booking-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    linear-gradient(90deg, rgba(7, 16, 18, 1), rgba(11, 25, 28, 0.96));
  color: #fff;
}

.booking-cta h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 10px;
  text-shadow: none;
}

.booking-cta p:last-child {
  color: #d2dcdd;
  max-width: 650px;
  line-height: 1.6;
  margin-bottom: 0;
}

.services-page .arrow-indicator {
  width: 28px;
  height: 28px;
  margin-left: auto;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.services-page .arrow-indicator::before {
  content: '+';
  font-size: 20px;
  line-height: 1;
}

.services-page .accordion-item.active .arrow-indicator {
  transform: none;
}

.services-page .accordion-item.active .arrow-indicator::before {
  content: '-';
}

#calendarModal.schedule-modal,
#bookingModal.schedule-modal {
  display: none;
  position: fixed;
  inset: 0;
  top: 0;
  left: 0;
  transform: none;
  z-index: 9999;
  width: auto;
  max-width: none;
  max-height: none;
  padding: 24px;
  overflow-y: auto;
  color: #fff;
  background: rgba(3, 8, 12, 0.72);
  backdrop-filter: blur(7px);
}

.schedule-modal__panel {
  position: relative;
  width: min(92vw, 560px);
  margin: 8vh auto;
  padding: 28px;
  border: 1px solid rgba(216, 244, 239, 0.18);
  border-radius: 8px;
  background: #0d1518;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

.schedule-modal__panel::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(216, 244, 239, 0.08), rgba(216, 244, 239, 0));
}

.schedule-modal__panel h2,
.schedule-modal__panel h3 {
  position: relative;
  margin: 0 44px 16px 0;
  color: #fff;
  font-size: 28px;
  line-height: 1.15;
  text-shadow: none;
}

.schedule-modal__panel .eyebrow {
  position: relative;
  margin-bottom: 8px;
}

#calendarModal.schedule-modal .close-button,
#bookingModal.schedule-modal .close-button {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 36px;
  height: 36px;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.09);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

#calendarModal.schedule-modal .close-button:hover,
#bookingModal.schedule-modal .close-button:hover {
  background: rgba(255, 255, 255, 0.16);
}

#calendarOutput {
  position: relative;
  color: #d8e4e3;
}

#calendarOutput > p {
  margin: 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
}

#calendarOutput h4 {
  margin: 20px 0 8px;
  color: #fff;
  font-size: 16px;
}

.calendar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.calendar-row {
  display: grid;
  grid-template-columns: minmax(130px, 1fr) auto auto;
  gap: 10px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.calendar-status {
  min-width: 72px;
  font-weight: 700;
}

.calendar-status--open {
  color: #8ff0b2;
}

.calendar-status--booked {
  color: #ff9c9c;
}

#calendarModal.schedule-modal button,
#bookingModal.schedule-modal button,
#calendarModal.schedule-modal #calendarOutput button {
  min-height: 38px;
  padding: 0 14px;
  margin: 0;
  border: 1px solid #d8f4ef;
  border-radius: 6px;
  background: #d8f4ef;
  color: #081012;
  font-weight: 700;
  cursor: pointer;
}

#bookingForm {
  position: relative;
  display: grid;
  gap: 14px;
}

#bookingModal label {
  display: grid;
  gap: 7px;
  margin: 0;
  color: #d8e4e3;
  font-weight: 700;
}

#bookingModal input,
#bookingModal textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
}

#bookingModal input:focus,
#bookingModal textarea:focus {
  outline: 2px solid rgba(158, 216, 208, 0.55);
  outline-offset: 1px;
}

.modal-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.modal-actions button[type="button"] {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

@media (max-width: 900px) {
  .services-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .professional-service-list,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .booking-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  header {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  nav li {
    margin-left: 0;
  }

  .services-hero,
  .services-band,
  .process-section,
  .professional-faq,
  .booking-cta {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services-hero h1 {
    font-size: 34px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .calendar-row {
    grid-template-columns: 1fr;
  }
}
