/* Enrollment Page Styles */
:root{
  --turquoise: #40E0D0;    /* Primary turquoise */
  --teal-light: #8dd3c7;   /* Light teal */
  --dark-bg: #1a3333;      /* Dark background */
  --text-light: #e8f5f5;   /* Light text */
  --green-accent: #4a7c2a; /* Green accent */
  --maxw: 720px;           /* comfortable mobile max width */
}

html{
  margin:0;
  padding:0;
  overflow-x: hidden;
}

body{
  margin:0;
  padding:0;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: -10%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: url('./media/background.jpg') center/cover no-repeat;
  background-size: cover;
  z-index: -2;
  pointer-events: none;
  will-change: transform;
}

body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
  pointer-events: none;
}
img, svg, video, iframe {
  max-width: 100%;
  height: auto;
}

.wrap{
  max-width:var(--maxw);
  margin:0 auto;
  padding:20px 18px 120px;
  position: relative;
  z-index: 2;
}

h1,h2,h3{
  font-family: 'Anybody', sans-serif;
  line-height:1.1;
  margin:0 0 12px;
  color:var(--turquoise);
}

h1{
  font-size:calc(40px + 2.2vw);
} /* ~40–48 on phones */

h2{
  font-size:calc(30px + 1.2vw);
} /* ~28–34 */

h3{
  font-size:calc(18px + .9vw);
}  /* ~22–26 */

p,li{
  font-size:18px;
  line-height:1.6;
  margin:0 0 14px;
  color: #ffffff;
}

.muted{
  opacity:.82
}

.hero{
  -webkit-backdrop-filter: blur(20px);
  padding:22px 18px;
  margin-top:14px;
}

.tag{
  display:inline-block;
  background:rgba(64, 224, 208, 0.15);
  color:var(--turquoise);
  padding:6px 10px;
  border-radius:999px;
  font-size:14px;
  font-weight:600;
  margin-bottom:10px;
  border: 1px solid rgba(64, 224, 208, 0.3);
}

.cta{
  display:block;
  text-align:center;
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.25), rgba(74, 124, 42, 0.25));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(64, 224, 208, 0.5);
  color:var(--turquoise);
  text-decoration:none;
  padding:16px 18px;
  border-radius:16px;
  font-weight:700;
  margin:18px 0 6px;
  box-shadow:0 10px 20px rgba(64, 224, 208, 0.3);
  transition: all 0.3s ease;
}

.cta:hover {
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.35), rgba(74, 124, 42, 0.35));
  border-color: var(--turquoise);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(64, 224, 208, 0.4);
}

.cta.secondary{
  background:rgba(0, 0, 0, 0.3);
  color:var(--turquoise);
  border:2px solid var(--turquoise)
}

.cta.secondary:hover {
  background:rgba(64, 224, 208, 0.15);
  transform: translateY(-2px);
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  border:1px solid rgba(64, 224, 208, 0.3);
  padding:10px 12px;
  border-radius:999px;
  font-size:14px;
  color:var(--teal-light);
  background: rgba(26, 51, 51, 0.3);
}

.grid{
  display:grid;
  gap:14px
}

.card{
  background: rgba(26, 51, 51, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(64, 224, 208, 0.3);
  border-radius:20px;
  padding:16px 14px;
  box-shadow:0 8px 22px rgba(0,0,0,.3)
}

.em{
  font-weight:700;
  color:var(--turquoise)
}

.list{
  padding-left:18px
}

/* FAQ-specific list styling */
.card ul {
  margin: 12px 0;
  padding-left: 20px;
  list-style-type: none;
}

.card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--turquoise);
  font-weight: bold;
  font-size: 1.2em;
}

.card p + p {
  margin-top: 12px;
}

.card br {
  display: block;
  content: "";
  margin-top: 8px;
}

/* FAQ emphasis styling */
.card em {
  font-style: normal;
  font-weight: bold;
  color: var(--turquoise);
}

/* FAQ link styling */
.card a {
  color: var(--turquoise);
  text-decoration: underline;
  font-weight: 700;
}

.card a:hover {
  color: var(--turquoise);
  text-decoration: underline;
  opacity: 0.8;
}

.sp{
  height:8px
}

figure.ph{
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px dashed rgba(64, 224, 208, 0.3);
  border-radius:18px;
  background:rgba(26, 51, 51, 0.3);
  color:var(--teal-light);
  font-size:14px;
  height:180px;
  margin:10px 0 18px
}

.table{
  width:100%;
  border-collapse:separate;
  border-spacing:0 10px;
  font-size:16px
}

.table th{
  font-weight:700;
  text-align:left;
  color:var(--turquoise)
}

.table td, .table th{
  padding:10px 12px;
  background:rgba(26, 51, 51, 0.4);
  border: 1px solid rgba(64, 224, 208, 0.2);
}

.table tr{
  box-shadow:0 6px 14px rgba(0,0,0,.04);
  border-radius:12px
}

.table tr td:first-child, .table tr th:first-child{
  border-top-left-radius:12px;
  border-bottom-left-radius:12px
}

.table tr td:last-child, .table tr th:last-child{
  border-top-right-radius:12px;
  border-bottom-right-radius:12px
}

.footnote{
  font-size:13px;
  opacity:.7
}

header.top{
  position:sticky;
  top:0;
  backdrop-filter:saturate(140%) blur(20px);
  -webkit-backdrop-filter:saturate(140%) blur(20px);
  background:rgba(26, 51, 51, 0.85);
  border-bottom:1px solid rgba(64, 224, 208, 0.3);
  z-index:100;
  position: relative;
}

header .bar{
  max-width:var(--maxw);
  margin:0 auto;
  padding:10px 14px;
  display:flex;
  align-items:center;
  gap:10px
}

.logo-img{
  width:40px;
  height:40px;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(64, 224, 208, 0.3));
  transition: all 0.3s ease;
}

.logo-img:hover {
  filter: drop-shadow(0 4px 12px rgba(64, 224, 208, 0.5));
  transform: scale(1.05);
}

.brand{
  font-family:'Anybody', sans-serif;
  font-size:20px;
  color:var(--turquoise)
}

.header-cta{
  margin-left:auto
}

.divider{
  height:1px;
  background:linear-gradient(90deg, rgba(64, 224, 208, 0.2), rgba(64, 224, 208, 0.05), rgba(64, 224, 208, 0.2));
  margin:18px 0
}

footer{
  padding:40px 0 24px;
  text-align:center;
  color:var(--teal-light);
  opacity: 0.8;
  position: relative;
  z-index: 2;
}

a.whatsapp{
  display:inline-flex;
  align-items:center;
  gap:10px
}

.wa-dot{
  width:10px;
  height:10px;
  background:#25D366;
  border-radius:50%
}

.langnav{
  display:flex;
  gap:10px;
  margin-left:8px
}

.langnav a{
  font-size:14px;
  color:var(--teal-light);
  text-decoration:none;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(64, 224, 208, 0.3);
  transition: all 0.3s ease;
}

.langnav a:hover {
  background: rgba(64, 224, 208, 0.15);
  border-color: rgba(64, 224, 208, 0.5);
}

.langnav a.active{
  background:rgba(64, 224, 208, 0.2);
  color:var(--turquoise);
  border-color:rgba(64, 224, 208, 0.5)
}

.video-btn {
  background: rgba(64, 224, 208, 0.15);
  border: 1px solid rgba(64, 224, 208, 0.4);
  color: var(--turquoise);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  margin-left: 4px;
}

.video-btn:hover {
  background: rgba(64, 224, 208, 0.25);
  border-color: var(--turquoise);
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(64, 224, 208, 0.4);
}

.video-btn:active {
  transform: scale(0.95);
}

.badge{
  display:inline-block;
  border:1px solid rgba(64, 224, 208, 0.3);
  background: rgba(26, 51, 51, 0.3);
  border-radius:10px;
  padding:6px 10px;
  font-size:12px;
  color: var(--teal-light);
  opacity:.9
}

.slots{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px
}

.slot{
  background:rgba(26, 51, 51, 0.4);
  border: 1px solid rgba(64, 224, 208, 0.3);
  border-radius:12px;
  padding:10px;
  text-align:center;
  box-shadow:0 6px 12px rgba(0,0,0,.3);
  font-weight:600;
  color: var(--turquoise);
}

.slot.filled{
  opacity:.45;
  text-decoration:line-through
}

/* Language sections - hidden by default */
.lang-section {
  display: none;
}

.lang-section.active {
  display: block;
}

/* Income Calculator */
.calc-intro {
  text-align: center;
  font-size: 16px;
  color: var(--teal-light);
  margin: -8px 0 16px;
  font-style: italic;
  opacity: 0.9;
}

.calculator-card {
  padding: 28px 24px;
}

.calc-slider-container {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(64, 224, 208, 0.15);
}

.calc-slider-label {
  text-align: center;
  color: var(--teal-light);
  font-size: 14px;
  margin-bottom: 12px;
  opacity: 0.9;
}

.calc-display {
  margin-bottom: 24px;
}

.calc-quantity-display {
  text-align: center;
  padding: 20px;
  background: rgba(64, 224, 208, 0.08);
  border-radius: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(64, 224, 208, 0.2);
}

.calc-quantity-label {
  display: block;
  color: var(--teal-light);
  font-size: 13px;
  margin-bottom: 8px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.calc-quantity-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.calc-quantity-value span:first-child {
  color: var(--turquoise);
  font-weight: 700;
  font-size: 42px;
  font-family: 'Anybody', sans-serif;
  line-height: 1;
  transition: all 0.3s ease;
}

.calc-unit-inline {
  color: var(--teal-light);
  font-size: 16px;
  opacity: 0.8;
}

.calc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  font-size: 16px;
}

.calc-label {
  color: var(--teal-light);
  font-weight: 400;
}

.calc-value {
  color: var(--turquoise);
  font-weight: 700;
  font-size: 20px;
  font-family: 'Anybody', sans-serif;
  transition: all 0.3s ease;
}

.calc-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(64, 224, 208, 0.2), rgba(64, 224, 208, 0.05), rgba(64, 224, 208, 0.2));
  margin: 8px 0;
}

.calc-total {
  padding-top: 16px;
}

.calc-breakdown {
  margin: 12px 0;
}

.calc-breakdown .calc-row {
  padding: 10px 0;
  font-size: 15px;
}

.calc-breakdown .calc-label {
  font-size: 15px;
}

.calc-breakdown .calc-value {
  font-size: 18px;
}

.calc-results {
  margin-top: 16px;
}

.calc-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  background: rgba(64, 224, 208, 0.05);
  border-radius: 12px;
  margin-bottom: 10px;
  border: 1px solid rgba(64, 224, 208, 0.15);
}

.calc-income {
  color: var(--turquoise);
  font-weight: 700;
  font-size: 26px;
  font-family: 'Anybody', sans-serif;
  text-shadow: 0 0 20px rgba(64, 224, 208, 0.4);
  transition: all 0.3s ease;
}

.calc-yearly {
  background: rgba(64, 224, 208, 0.08);
  border-color: rgba(64, 224, 208, 0.2);
}

.calc-yearly-label {
  color: var(--teal-light);
  font-size: 14px;
  opacity: 0.9;
}

.calc-yearly-value {
  color: var(--turquoise);
  font-weight: 600;
  font-size: 20px;
  font-family: 'Anybody', sans-serif;
  transition: all 0.3s ease;
}

.calc-slider {
  width: 100%;
  height: 8px;
  border-radius: 5px;
  background: rgba(26, 51, 51, 0.5);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid rgba(64, 224, 208, 0.3);
}

.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), var(--green-accent));
  cursor: pointer;
  border: 2px solid rgba(64, 224, 208, 0.8);
  box-shadow: 0 0 15px rgba(64, 224, 208, 0.5);
  transition: all 0.3s ease;
}

.calc-slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 25px rgba(64, 224, 208, 0.8);
}

.calc-slider::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turquoise), var(--green-accent));
  cursor: pointer;
  border: 2px solid rgba(64, 224, 208, 0.8);
  box-shadow: 0 0 15px rgba(64, 224, 208, 0.5);
  transition: all 0.3s ease;
}

.calc-slider::-moz-range-thumb:hover {
  transform: scale(1.2);
  box-shadow: 0 0 25px rgba(64, 224, 208, 0.8);
}

.calc-slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: var(--teal-light);
  opacity: 0.8;
  text-align: center;
}

.calc-slider-labels span {
  line-height: 1.4;
}

.calc-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(64, 224, 208, 0.15);
}

.calc-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: rgba(64, 224, 208, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(64, 224, 208, 0.15);
  transition: all 0.3s ease;
}

.calc-highlight:hover {
  background: rgba(64, 224, 208, 0.1);
  border-color: rgba(64, 224, 208, 0.25);
  transform: translateX(4px);
}

.highlight-icon {
  color: var(--turquoise);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(64, 224, 208, 0.15);
  border-radius: 50%;
}

.calc-highlight span:last-child {
  color: var(--teal-light);
  font-size: 14px;
  font-weight: 500;
}

@media (min-width:768px){
  .wrap{
    padding:28px 24px 140px;
    max-width: 1200px;
  }
  figure.ph{
    height:240px
  }
  .calc-highlights {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  .calc-highlight {
    flex-direction: column;
    text-align: center;
    padding: 12px;
  }
  .calc-highlight:hover {
    transform: translateY(-4px);
  }
  .side-media {
    grid-template-columns: 1fr 380px !important;
    gap: 3rem !important;
  }
  .side-media img,
  .side-media iframe {
    width: 100%;
    height: auto;
  }
  /* When video/image is first child, reverse the columns */
  .side-media > div:first-child:has(img),
  .side-media > div:first-child:has(iframe) {
    order: 2;
  }
  .side-media > div:last-child:not(:has(img)):not(:has(iframe)) {
    order: 1;
  }
}

/* Intro Video Popup */
.intro-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  z-index: 10001;
  overflow: hidden;
}

.intro-popup.show {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.intro-video-container {
  width: 80%;
  max-width: 1200px;
  aspect-ratio: 16/9;
  position: relative;
  margin-bottom: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  border-radius: 12px;
  overflow: hidden;
}

.intro-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.intro-content {
  text-align: center;
  color: var(--text-light);
  max-width: 800px;
  padding: 0 20px;
}

.intro-question {
  font-family: 'Anybody', sans-serif;
  font-size: 2.5rem;
  color: var(--turquoise);
  margin-bottom: 30px;
  font-weight: 600;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: bounce 2s infinite;
  cursor: pointer;
}

.scroll-indicator span {
  font-size: 1.2rem;
  color: var(--teal-light);
  font-weight: 300;
}

.scroll-arrow {
  opacity: 0.8;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Hide main content initially when intro is shown */
body.intro-active .wrap,
body.intro-active .top {
  display: none;
}

/* Responsive intro video */
@media (max-width: 768px) {
  .intro-video-container {
    width: auto;
    height: 88vh;
    max-height: 90vh;
    max-width: 95vw;
    aspect-ratio: 9 / 16;
    margin-bottom: 16px;
  }
  
  .intro-question {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
  
  .scroll-indicator span {
    font-size: 1rem;
  }
  
  .side-media {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }
  .side-media > div {
    order: 1;
  }
  .side-media > div:has(img),
  .side-media > div:has(iframe) {
    order: 2;
  }
  .side-media img,
  .side-media iframe {
    display: block;
    width: 100% !important;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
  section.hero {
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 1.5rem 1rem !important;
  }
  section.hero > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    max-width: 100% !important;
  }
  section.hero > div > div[style*="position: relative"] {
    width: 100% !important;
    margin-left: 0 !important;
  }
  section.hero > div > div > div[style*="display: flex"] {
    width: 100% !important;
  }
  #hero-video {
    width: 100% !important;
  }
}

@media (max-width: 768px) and (orientation: landscape) {
  .intro-video-container {
    width: 95vw;
    height: auto;
    max-height: 70vh;
    aspect-ratio: 16 / 9;
  }
}

/* Schedule Call Popup */
.schedule-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  z-index: 10002;
  overflow-y: auto;
  padding: 20px;
}

.schedule-popup.show {
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-popup-content {
  background: rgba(26, 51, 51, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 2px solid rgba(64, 224, 208, 0.4);
  border-radius: 24px;
  padding: 32px 24px;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.schedule-popup-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(64, 224, 208, 0.2);
}

.schedule-popup-header h2 {
  color: var(--turquoise);
  font-family: 'Anybody', sans-serif;
  font-size: 2rem;
  margin-bottom: 8px;
}

.schedule-popup-header p {
  color: var(--teal-light);
  font-size: 0.95rem;
  opacity: 0.9;
  margin: 0;
}

.schedule-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(64, 224, 208, 0.15);
  border: 1px solid rgba(64, 224, 208, 0.4);
  color: var(--turquoise);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 20px;
  padding: 0;
}

.schedule-close-btn:hover {
  background: rgba(64, 224, 208, 0.25);
  transform: scale(1.1);
}

.schedule-section {
  margin-bottom: 24px;
}

.schedule-section-title {
  color: var(--turquoise);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  display: block;
}

.schedule-calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.schedule-calendar-day {
  background: rgba(26, 51, 51, 0.5);
  border: 1px solid rgba(64, 224, 208, 0.3);
  border-radius: 12px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--teal-light);
}

.schedule-calendar-day:hover:not(.disabled) {
  background: rgba(64, 224, 208, 0.15);
  border-color: rgba(64, 224, 208, 0.5);
  transform: translateY(-2px);
}

.schedule-calendar-day.selected {
  background: rgba(64, 224, 208, 0.25);
  border-color: var(--turquoise);
  color: var(--turquoise);
  font-weight: 600;
}

.schedule-calendar-day.disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.schedule-calendar-day-name {
  font-size: 0.75rem;
  text-transform: uppercase;
  opacity: 0.8;
  display: block;
  margin-bottom: 4px;
}

.schedule-calendar-day-number {
  font-size: 1.1rem;
  font-weight: 600;
  display: block;
}

.schedule-times {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
}

.schedule-time-slot {
  background: rgba(26, 51, 51, 0.5);
  border: 1px solid rgba(64, 224, 208, 0.3);
  border-radius: 10px;
  padding: 12px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--teal-light);
  font-size: 0.95rem;
  font-weight: 500;
}

.schedule-time-slot:hover:not(.disabled) {
  background: rgba(64, 224, 208, 0.15);
  border-color: rgba(64, 224, 208, 0.5);
  transform: translateY(-2px);
}

.schedule-time-slot.selected {
  background: rgba(64, 224, 208, 0.25);
  border-color: var(--turquoise);
  color: var(--turquoise);
  font-weight: 600;
}

.schedule-time-slot.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.schedule-timezone-display {
  background: rgba(64, 224, 208, 0.08);
  border: 1px solid rgba(64, 224, 208, 0.2);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
  color: var(--teal-light);
  font-size: 0.9rem;
  margin-top: 12px;
}

.schedule-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.schedule-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.schedule-form-group label {
  color: var(--teal-light);
  font-size: 0.9rem;
  font-weight: 500;
}

.schedule-form-group input {
  width: 100%;
  padding: 12px;
  border: 2px solid rgba(64, 224, 208, 0.3);
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  background: rgba(26, 51, 51, 0.5);
  color: var(--text-light);
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.schedule-form-group input:focus {
  outline: none;
  border-color: var(--turquoise);
  background: rgba(26, 51, 51, 0.7);
}

.schedule-form-group input::placeholder {
  color: rgba(232, 245, 245, 0.4);
}

.schedule-submit-btn {
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.25), rgba(74, 124, 42, 0.25));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(64, 224, 208, 0.5);
  color: var(--turquoise);
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 8px;
}

.schedule-submit-btn:hover:not(:disabled) {
  background: linear-gradient(135deg, rgba(64, 224, 208, 0.35), rgba(74, 124, 42, 0.35));
  border-color: var(--turquoise);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(64, 224, 208, 0.4);
}

.schedule-submit-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.schedule-message {
  padding: 12px;
  border-radius: 10px;
  margin-top: 12px;
  text-align: center;
  font-size: 0.95rem;
  display: none;
}

.schedule-message.success {
  background: rgba(74, 124, 42, 0.2);
  border: 1px solid rgba(74, 124, 42, 0.4);
  color: #4a7c2a;
}

.schedule-message.error {
  background: rgba(204, 68, 68, 0.2);
  border: 1px solid rgba(204, 68, 68, 0.4);
  color: #c44;
}

.schedule-message.info {
  background: rgba(64, 224, 208, 0.1);
  border: 1px solid rgba(64, 224, 208, 0.3);
  color: var(--teal-light);
}

@media (max-width: 768px) {
  .schedule-popup-content {
    padding: 24px 16px;
    max-height: 95vh;
  }
  
  .schedule-popup-header h2 {
    font-size: 1.5rem;
  }
  
  .schedule-calendar {
    gap: 6px;
  }
  
  .schedule-calendar-day {
    padding: 8px 4px;
  }
  
  .schedule-calendar-day-number {
    font-size: 1rem;
  }
  
  .schedule-times {
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 8px;
  }
  
  .schedule-time-slot {
    padding: 10px 6px;
    font-size: 0.85rem;
  }
}
