/* BASE STYLES */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
html {
  margin: 0;
  padding: 0;
  font-family: "Futura", Arial, sans-serif;
  background: linear-gradient(135deg, #fffafa, #fff6f9);
  color: #333;
  overflow: hidden;
  height: 100%;
}

a {
  text-decoration: none;
  color: #9d5bff;
}

/* SPLIT LAYOUT */
.split-container {
  display: flex;
  height: 100vh;
}

/* LEFT PANEL */
.left-panel {
  width: 40%;
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: linear-gradient(135deg, #fffafa, #fff6f9);
}

.side-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 60px;
  height: 78px;
  border-radius: 0px;
}

/* PROFILE */
.profile-wrapper {
  margin-top: 80px;
  position: relative;
  width: 160px;
  height: 160px;
}

.profile-wrapper::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 185px;
  height: 185px;
  border-radius: 50%;
  background: rgba(157, 91, 255, 0.35);
  animation: pulse 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.45;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.15;
  }
  100% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.45;
  }
}

.profile-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid white;
  position: relative;
  z-index: 1;
}

.status-bubble-green {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: #2ecc71;
  border-radius: 50%;
  border: 3px solid white;
  z-index: 2;
}

.status-bubble-red {
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 28px;
  height: 28px;
  background: #f44336;
  border-radius: 50%;
  border: 3px solid white;
  z-index: 2;
}

.profile-header {
  margin-top: 20px;
  font-size: 1.6rem;
  font-weight: 700;
}

.availability-text-green {
  margin-top: 0px;
  font-size: 1rem;
  font-weight: 400;
  color: #2ecc71;
}

.availability-text-red {
  margin-top: 0px;
  font-size: 1rem;
  font-weight: 400;
  color: #f44336;
}

.profile-subtext {
  margin-top: 10px;
  font-size: 1rem;
  line-height: 1.4;
}

.book-btn {
  background: linear-gradient(90deg, #9d5bff, #ff5da2);
  font-family: "Futura", Arial, sans-serif;
  color: white;
  border: none;
  padding: 2rem 7rem;
  font-size: 1.5rem;
  border-radius: 12px;
  cursor: pointer;
  margin-top: 25px;
  transition: transform 0.3s, opacity 0.3s;
}
.book-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.button-subtext {
  margin-top: 15px;
  font-size: 1.2rem;
}
.giftcard-link {
  display: block;
  margin-top: 6px;
  font-size: 1.2rem;
}
.calendar-link {
  display: inline;
  margin-top: 6px;
  font-size: 1.2rem;
  cursor: pointer;
}

/* RIGHT PANEL */
.right-panel {
  width: 60%;
  overflow-y: auto;
  padding: 2rem;
  scroll-behavior: smooth;
}

.section {
  margin-bottom: 2.5rem;
}

/* This wrapper forces the iframe to take full height */
.iframe-wrapper {
  height: 100vh;       /* Take full viewport height */
  padding: 0;          /* Remove padding so iframe can fill it */
  margin: 0;           /* Remove margin so it doesn't shrink */
}

/* The iframe now fills the wrapper */
.iframe-wrapper .fullscreen-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ICONS SECTION */
.icon-cards {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.icon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  border-radius: 12px;
  width: 32%;
  background: linear-gradient(to bottom, white 50%, #9d5bff 50%);
  color: white;
  border: 2px solid #9d5bff;
  text-align: center;
}
.icon-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
}

/* 3 STEP PROCESS */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.step-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  align-items: flex-start;
  background: #fff;
  border: 2px solid #9d5bff;
}
.step-number {
  font-size: 1.6rem;
  font-weight: 700;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #9d5bff, #ff5da2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-content h3 {
  margin: 0 0 0.3rem 0;
  font-size: 1.1rem;
  color: #9d5bff;
}
.step-content p {
  margin: 0;
  font-size: 0.95rem;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}
.pricing-card {
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  background: #fff;
  border: 2px solid #9d5bff;
}
.pricing-card h4 {
  margin: 0 0 0.3rem 0;
}
.pricing-card p {
  margin: 0;
}

.pricing-card.featured {
  border: 3px solid #9d5bff;
  box-shadow: 0 0 12px rgba(157, 91, 255, 0.25);
  position: relative;
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #9d5bff, #ff5da2);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* SKILLS SECTION */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.skill-card {
  background: #fff;
  border: 2px solid #9d5bff;
  padding: 1rem;
  border-radius: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.skill-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 0.8rem;
}
.skill-card h4 {
  margin: 0 0 0.3rem 0;
  font-size: 1.1rem;
  color: #9d5bff;
}
.skill-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.3;
}

/* REVIEWS */
.reviews-summary {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.review-summary-card {
  flex: 1 1 30%;
  background: #fff;
  border: 2px solid #9d5bff;
  border-radius: 12px;
  text-align: center;
  padding: 1rem;
}
.review-summary-card h3 {
  margin: 0 0 0.5rem 0;
  color: #9d5bff;
  font-size: 1.2rem;
}
.review-summary-card p {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
}

.review-card {
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: 1rem;
  background: #fff0f7;
  color: #333;
  border: 2px solid #9d5bff;
}

.review-card svg {
  width: 20px;
  height: 20px;
  fill: #9d5bff;
  margin-right: 2px;
}

.see-all-reviews-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.8rem 2rem;
  border: 2px solid #9d5bff;
  border-radius: 12px;
  color: #9d5bff;
  font-weight: bold;
  background: none;
  cursor: pointer;
  text-align: center;
}
.see-all-reviews-btn:hover {
  background: #f3e5ff;
}

/* CONTACT & HOURS */
.section h2 {
  color: #9d5bff;
  margin-bottom: 1rem;
}

/* FOOTER */
.footer {
  text-align: center;
  padding: 2rem 0 1rem 0;
  color: #777;
  font-size: 0.9rem;
}

.footer a {
  color: #9d5bff;
  font-weight: 600;
}

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

@media (max-width: 800px) {
  .footer {
    padding-bottom: 5rem;
  }
}

/* MOBILE STICKY CTA BAR */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: -80px;
  left: 0;
  width: 100%;
  background: linear-gradient(90deg, #9d5bff, #ff5da2);
  padding: 1rem;
  text-align: center;
  z-index: 9999;
  transition: bottom 0.35s ease;
}

.mobile-cta-button {
  width: 100%;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: "Futura", Arial, sans-serif;
  letter-spacing: 0.5px;
  cursor: pointer;
}

@media (max-width: 800px) {
  body,
  html {
    overflow: auto;
    height: auto;
  }
  .split-container {
    flex-direction: column;
    height: auto;
  }
  .left-panel {
    width: 100%;
    height: auto;
    position: relative;
    padding-bottom: 2rem;
  }
  .profile-wrapper {
    margin-top: 60px;
  }
  .side-logo {
    width: 50px;
    height: 65px;
  }
  .book-btn {
    display: block;
    width: 100%;
    padding: 1.8rem 2rem;
  }
  .giftcard-link,
  .button-subtext {
    font-size: 1.2rem;
  }

  .icon-cards {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
    padding: 0;
  }
  .icon-card {
    width: 100%;
  }

  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  .pricing-card {
    width: 100%;
  }

  .skills-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .right-panel {
    width: 100%;
    padding: 1.5rem 1rem;
    overflow-x: hidden;
  }

  .reviews-summary {
    flex-direction: column;
  }
  .review-summary-card {
    flex: 1 1 100%;
  }

  .mobile-cta-bar {
    display: block;
  }
}

/* =========================== */
/*        MODAL STYLES         */
/* =========================== */

/* Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 1rem;
}

/* Modal */
.modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 680px;
  padding: 0.2rem;
  border-radius: 16px;
  position: relative;
  border: 3px solid #9d5bff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.25);
  animation: modalFade 0.25s ease-out;
}

@keyframes modalFade {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.8rem;
  color: #9d5bff;
  cursor: pointer;
  font-weight: bold;
}

.modal-close:hover {
  color: #ff5da2;
}

.calendar-iframe {
  width: 100%;
  height: 700px; /* Adjust as needed */
  border: none;
  border-radius: 10px;
  overflow: hidden;
}

@media (max-width: 600px) {
  .calendar-iframe {
    height: 85vh;
  }
}
