* {
  font-family: 'Inter', sans-serif;
}

body {
  background: #faf6f1;
  padding-top: 45px;
}

/* ================= NAVBAR ================= */
.navbar {
  background: hsl(30 50% 95% / .6);
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;

}
.logo-icon {
  width: 38px;
  height: 38px;
  background: #214763;
  border-radius: 12px;
  color: #f9f2ec;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 20px;
  height: 20px;
}
.gradient-text {
  background: linear-gradient(
    90deg,
    #1e3a4c 0%,
    #1e3a4c 50%,
    #3c6e71 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.logo-text {
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.3px;
  line-height: 1;
  color: #3c6e71;
}



.navbar-brand {
  font-weight: 600;
  color: #1e3a4c;
}

.nav-link {
  color: #214763;
  font-weight: 500;
}

.nav-link:hover {
  color: #3c6e71;
}

.navbar-toggler {
  border: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}
.nav-signin a{
  text-decoration: none;
}

/* Sign In button */
.btn-signin {
  background: #214763;
  color: #f9f2ec;
  border-radius: 12px;
  padding: 8px 16px;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
}


/* Desktop alignment */
.nav-signin {
  display: flex;
  align-items: center;
}

/* ================= HERO ================= */
.hero-section {
  padding: 100px 0;
  background: linear-gradient(
  to bottom right,
  hsl(206 50% 26% / 0.05),
  transparent,
  hsl(146 18% 56% / 0.05)
);

  border-bottom: 1px solid #c3d5cb;
}

.hero-section h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  color: #214763;
}

.hero-section h1 span {
  color: #3c6e71;
}

.hero-text {
  margin: 24px 0;
  color: #507795;
  font-size: 20px;
  line-height: 28px;
}

/* ================= BUTTONS ================= */
.btn-primary-custom {
  background: #214763;
  color: #fff;
  border-radius: 12px;
  padding: 14px 24px;
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border: none;
  text-decoration: none;
}
.btn-primary-custom:hover {
    transition: 0.3s ease;
    transform: translateY(-2px);
}

.btn-outline-custom {
  border: 2px solid #214763;
  color: #214763;
  border-radius: 12px;
  padding: 14px 24px;
  font-weight: 600;
  background: transparent;
}
.btn-outline-custom:hover{
  background-color: #2147631a;
;
}

/* ================= DIVIDER ================= */
.hero-divider {
  margin: 32px 0 24px;
  width: 100%;
  height: 1px;
  background: #c3d5cb;
}

/* ================= STATS ================= */
.stats strong {
  display: block;
  font-size: 14px;
  color: #214763;
  line-height: 20px;
}

.stats span {
  font-size: 14px;
  color: #507795;
  line-height: 20px;
}

/* ================= RECORD CARD ================= */
.record-card {
  background: linear-gradient(
  to bottom right,
  hsl(206 50% 26% / .1),
  hsl(146 18% 56% / .1)
);
  border-radius: 16px;
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #21476333 ;
}
.record-card p{
    font-size: 16px !important;
    color: #214763 !important;
    line-height: 1.6;

}

.mic-circle {
  width: 90px;
  height: 90px;
  background: #1e3a4c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(30, 58, 76, 0.6);
}

/* Wave */
.wave {
  display: flex;
  gap: 6px;
  margin: 20px 0;
}

.wave span {
  width: 4px;
  height: 14px;
  background: #214763;
  border-radius: 5px;
  animation: wave 1s infinite ease-in-out;
}

.wave span:nth-child(2) { animation-delay: .1s; }
.wave span:nth-child(3) { animation-delay: .2s; }
.wave span:nth-child(4) { animation-delay: .3s; }

@keyframes wave {
  0%, 100% { height: 10px; }
  50% { height: 22px; }
}

.record-card p {
  font-size: 14px;
  color: #3c5f6b;
}
/* ================= FEATURES SECTION ================= */
.features-section {
  padding: 20px 0px 100px 0px;
  background-color: #f9f2ec;
  border-bottom: 1px solid #c3d5cb;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  color: #214763;
  margin-bottom: 16px;
}

.section-subtitle {
  max-width: 680px;
  margin: 0 auto 50px;
  color: #507795;
  font-size: 18px;
}
.section-switch{
    background-color: #f9f2ec;
    padding: 60px 0px 40px 0px;
}
/* Toggle Design */
.toggle-wrapper {
    display: inline-flex;
    background-image: linear-gradient(to right, hsl(206 50% 26% / .1), hsl(146 18% 56% / 0.08));
    padding: 4px;
    border-radius: 14px;
}

.toggle-btn {
    border: none;
    padding: 8px 60px;
    border-radius: 12px;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #214763;
    font-size: 15px;
}
/* Content Sections */
.content-section {
    margin: 0px auto;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: none;
}

.content-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.toggle-btn.active {
    background: #f4efe9;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}
.partnership-section {
    padding: 60px 0px;
    background-color: #f3ebe3;
    display: flex;
    justify-content: center;
}

.partnership-card {
    background-image: linear-gradient(to right,hsl(206 50% 26% / .1) , hsl(146 18% 56% / .1));
    border: 1px solid #c3d5cb;
    border-radius: 12px;
    padding: 50px;
    max-width: 700px;
    width: 100%;
}

.partnership-title {
    font-size: 24px;
    font-weight: 700;
    color: #214763;
    line-height: 32px;
    margin-bottom: 30px;
}
.benefit-item {
    display: flex;
    gap: 20px;
    margin-bottom:0px;
    text-align: left;
}
.benefit-item svg{
    color: #214763 !important;
}
.benefit-item div {
    text-align: left;
}
.benefit-item h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #214763;
}

.benefit-item p {
    margin-top: 6px;
    font-size: 14px;
    color: #507795;
    line-height: 1.6;
}
.school-partner-wrapper {
    background: #f3ebe3;
    padding: 0px 0px 60px 0px;
    display: flex;
    justify-content: center;
}

.school-partner-box {
    background-image: linear-gradient(to right,hsl(206 50% 26% / .1) , hsl(146 18% 56% / .1));
    border: 1px solid #c3d5cb;
    border-radius: 12px;
    padding: 40px 40px;
    max-width: 700px;
    width: 100%;
    text-align: center;
}

.school-partner-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2f4f63, #4d7b73);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.school-partner-heading {
    font-size: 24px;
    font-weight: 700;
    color: #214763;
    margin-bottom: 15px;
}

.school-partner-description {
    font-size: 14px;
    color: #507795;
    line-height: 1.7;
    margin-bottom: 35px;
}
.school-partner-response {
    margin-top: 30px;
    font-size: 14px;
    color: #214763;
}
.main-title-custom{
    color: #214763;
    font-weight: 700;
}


/* Feature Cards */
.feature-card {
  background: #ffffff;
  padding: 32px 30px;
  border-radius: 20px;
  border: 1px solid #c3d5cb;
  text-align: left;
  min-height: 330px;
  transition: all 0.3s ease;
  margin-bottom: 20px;

}
.feature-card:hover {

  background: #2147630d;
  border-color: #21476380;
}
.feature-card:hover .icon-box{
  background-color: #2147631a;
}


.icon-box {
  width: 48px;
  height: 48px;
  background: #e8ecef;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1e3a4c;
  margin-bottom: 16px;
}
.icon-box svg{
  color:#214763 !important;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #214763;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 17px;
  color: #507795;
  line-height: 1.6;
  margin-bottom: 0;
}
/* ================= HOW IT WORKS SECTION ================= */
.how-it-works {
  padding: 100px 0;
  background-color: hsl(0 0% 100% / .5);
  border-bottom: 1px solid #c3d5cb;
}
.time-capsule {
  max-width: 900px;
  margin: 0 auto;
}

.step-item {
  position: relative;
  margin-bottom: 20px;

}

/* ================= GRADIENT STEP NUMBERS ================= */
.step-number {
  width: 70px;
  height: 70px;
  background: linear-gradient(
  to bottom right,
  hsl(206 50% 26%),
  hsl(146 18% 56%)
);

  box-shadow:
  0 0 #0000,
  0 0 #0000,
  0 10px 15px -3px rgba(0, 0, 0, 0.1),
  0 4px 6px -2px rgba(0, 0, 0, 0.05);

  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  margin: 0 auto 30px;


  position: relative;
  z-index: 3;

}
.step-item::after {
  content: '';
  position: absolute;
  top: 32px;
  left: 100%;
  width: 32px;
  height: 2px;
  background: linear-gradient(
  to right,
  hsl(206 50% 26%),
  transparent);
  z-index: 1;
  transform: rotate(0deg);
}
.last-step::after{
  content: unset;
}
.step-item h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  color: #214763;
  margin-bottom: 15px;
}

.step-item p {
  font-size: 18px;
  color: #507795;
  line-height: 1.6;
  margin: 0 auto;
}
.journey-section {
  padding: 60px 0px 0px 0px;
}

.journey-box {
  background-image: linear-gradient(to right,hsl(206 50% 26% / .1) , hsl(146 18% 56% / .1));
  border: 1px solid #c3d5cb;
  border-radius: 15px;
  padding: 30px;
  max-width: 900px;
  margin: auto;
}

.journey-title {
  font-weight: 700;
  color: #214763;
  font-size: 20px;
}

.journey-item {
  padding: 15px;
}

.icon-circle {
  width: 55px;
  height: 55px;
  margin: auto;
  background:#21476333 !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
}

.icon-circle.heart {
  background: #dce3dc !important;
}

.item-title {
  font-weight: 600;
  color: #214763;
  font-size: 15px;
}

.item-text {
  color: #507795;
  font-size: 14px;
  line-height: 1.6;
}

.bottom-text {
  color: #507795;
  font-size: 16px;
  margin: auto;
}

/* ================= PRICING SECTION STYLES ================= */
.pricing-section {
    padding: 100px 0;
    background-color: #faf6f1;
    border-bottom: 1px solid #c3d5cb;
}

/* Pricing Card refinement */
.pricing-card {
    background: #ffffff;
    border: 1px solid #c3d5cb;
    border-radius: 24px;
    padding: 35px;
    text-align: left;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}
.transition-all {
    transition-property: all;
    transition-duration: 300ms;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
.pricing-card:hover{

    box-shadow:
    0 0 #0000,
    0 0 #0000,
    0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05);
    border: 1px solid #21476380;
}

.card-header-custom h3 {
    font-size: 24px;
    font-weight: 700;
    color: #214763;
    margin-bottom: 14px;
    line-height: 32px;
}
.card-header-custom p{
    font-size: 14px;
    margin-bottom: 0px;
    color: #507795;
    line-height: 20px;
}
/* Price Section */
.price-box {
    margin: 14px 0;
    display: flex;
    align-items: baseline;
    gap: 5px;
}
.price-val {
    font-size: 48px;
    font-weight: 800;
    color: #214763;
}
.price-sub {
    font-size: 14px;
    color: #507795;
}

.btn-plan-outline {
    background: transparent;
    border: 1px solid #c3d5cb;
    color: #214763;
    border-radius: 12px;
    text-align: center;
    padding: 14px;
    font-weight: 700;
    margin-bottom: 30px;
    transition: 0.3s;
}

.btn-plan-outline:hover {
    background:#2147631a;
    border: 1px solid #214763;
}

/* Features List */
.plan-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.plan-features li {
    font-size: 14px;
    color: #214763;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 20px;
}
.plan-features li svg{
  color: #214763 !important;
}

/* Support Box */
.support-box {
  width: 100%;
  max-width: 670px;
  background-image: linear-gradient(to right,hsl(206 50% 26% / .1) , hsl(146 18% 56% / .1));
  border-radius: 15px;
  padding: 30px;
  border: 1px solid #21476333;
  color: #214763;
}
.support-box h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 28px;
}
.support-box p {
  font-size: 16px;
  color:#214763 ;
  line-height:1.5;
  font-weight: 400 !important;
}
.support-box strong {
  font-weight: 700;
  color: #214763;
}
.support-box small {
  font-size: 14px;
  color: #507795;
  line-height: 20px;
}
/* ================= WHY VOICEMAIL MEMORIES SECTION ================= */
.voicemail-memories {
  padding: 100px 0;
  background-color: #faf6f1;
  border-bottom: 1px solid #c3d5cb;
}

.memory-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}


.dot-circle {
    min-width: 22px;
    height: 22px;
    background-color:#21476333;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dot-circle::after {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #214763;
    border-radius: 50%;
}

.memory-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #214763;
    margin-bottom: 8px;
}

.memory-content p {
    font-size: 14px;
    color: #507795;
    line-height: 20px;
    margin: 0;
}
/* ================= CTA SECTION STYLES ================= */
.cta-section {
    padding: 100px 0;
    background-color: #faf6f1;
    border-bottom: 1px solid #c3d5cb;

}

.cta-card {
    background-image: linear-gradient(to bottom right,hsl(206 50% 26% / .1) , transparent , hsl(146 18% 56% / .1));
    padding: 50px 50px;
    border-radius: 30px;
    border: 1px solid #21476333;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    color: #214763;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 16px;
    color: #507795;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 28px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color:#214763;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}
.btn-cta:hover{
    transition: 0.3s ease;
    transform: translateY(-2px);
}
.cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ================= FOOTER STYLES ================= */
.footer-section {
    padding: 45px 0 40px;
    background-color: #faf6f1;
    border-top: 1px solid #c3d5cb;
}

.footer-brand {
    font-size: 18px;
    font-weight: 800;
    color: #214763;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 14px;
    color: #507795;
    line-height: 1.6;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: #214763;
    margin-bottom: 25px;
    text-align: center;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    font-size: 14px;
    color: #507795;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #214763;
}

/* Bottom Bar Styling */
.footer-bottom {
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid #c3d5cb;
}

.copyright {
    font-size: 14px;
    color: #507795;
    margin: 0;
}

.social-links a {
    text-decoration: none;
    font-size: 14px;
    color: #507795;
    margin-left: 25px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #214763;
}
/* ================= LOGIN FORM FIXED ICONS ================= */
.login-page-section {
    padding: 60px 0;

}

.welcome-title {
    font-size: 30px;
    font-weight: 700;
    color: #214763;
    margin-bottom: 10px;
    line-height: 36px;
}

.welcome-subtitle {
    font-size: 16px;
    color:rgb(80, 119, 149);
    max-width: 390px;
    margin: 0 auto;
}

.login-card-exact {
    background: #ffffff;
    border: 1px solid #c3d5cb ;
    border-radius: 12px;
    padding:30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.form-label-custom {
    font-weight: 600;
    color: #214763;
    font-size: 14px;
    margin-bottom: 10px;
    display: block;
}
.input-icon svg, .input-icon-right svg {
    color: #507795;
    width: 20px;
    height: 20px;
}

.input-group-custom {
    position: relative;
    width: 100%;
}
.result-day-input-group .form-control-custom {
    padding-left: 20px;
    padding-right: 20px;
}

.form-control-custom {
    width: 100%;
    padding: 12px 42px;
    border: 1px solid #c3d5cb;
    border-radius: 12px;
    font-size: 14px;
    color: #214763;
    transition: 0.3s;
    background-color: #f9f2ec;
    appearance: none;
}
.form-label-custom span {
    font-weight: 500;
    color: #507795;
    font-size: 12px;
}

.form-control-custom:focus {
    border-color: #214763;
    outline: none;
    box-shadow: none;
}

.input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
}

.input-icon-right {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
}

/* Button & Links */
.btn-signin-full {
    width: 100%;
    background-color:#214763;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 14px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 0px;
}
.btn-signin-full:disabled , .btn-primary-custom:disabled {
     opacity: 0.7;
}
.btn-signin-full i, .btn-primary-custom i{
     display: none;
}
.divider-line {
    height: 1px;
    background-color: #c3d5cb;
    width: 100%;
}

.no-account-text {
    font-size: 14px;
    color: #507795;
    margin-bottom: 6px;
}

.create-account-link {
    font-size: 16px;
    font-weight: 600;
    color: #214763;
    text-decoration: none;
}
.create-account-link:hover {
    color: #507795;
}
/* ================= MEMORIES SHARING PAGE STYLES ================= */
.memories-share-section {
    padding: 100px 0;
    background-color:#f9f2ec;
}

/* Light border info box */
.info-alert-box {
    background-image: linear-gradient(to bottom right,hsl(206 50% 26% / .05) , hsl(146 18% 56% / .05) , hsl(206 50% 26% / .05));
    border: 1px solid #c3d5cb;
    padding: 48px;
    border-radius: 12px;
}
.info-alert-box h2 {
    font-size: 36px;
    font-weight: 700;
    color: #214763;
    margin-bottom: 22px;
    line-height: 40px;
}

.info-alert-box p {
    color: #507795;
    font-size: 18px;
    margin: 0;
    line-height: 1.625;
    max-width: 800px;
}
.recorded-message{
    background-color: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    font-weight: 600;
    gap: 12px;
    max-width: 800px;
}
.recorded-message p{
    color: #14532d;
}
.memory-section {
  padding: 40px 0;
}

.memory-card {
  background: #f8f4ef;
  border: 1px solid #d7d0c8;
  border-radius: 12px;
  padding: 32px;
  min-height: 600px;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.step-circle {
  width: 36px;
  height: 36px;
  background: #3e6b73;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.card-header h4 {
  margin: 0;
  font-weight: 600;
  color: #29465b;
}

.card-desc {
  color: #5f6f79;
  font-size: 14px;
  margin: 12px 0 16px;
}

.video-preview {
  height: 280px;
  background: #000;
  border-radius: 10px;
  margin-bottom: 15px;
}
.video-preview video {
  width: 100%;
  height: 100%;
}
.record-btn {
  width: 100%;
  background: #e53935;
  border: none;
  padding: 12px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  margin-bottom: 12px;
}

.limit-box {
  background: #e9edf0;
  border-radius: 8px;
  padding: 10px;
  font-size: 13px;
  color: #4c5a63;
  margin-bottom: 10px;
}

.link-box {
  border: 1px solid #d7d0c8;
  border-radius: 8px;
  padding: 10px;
  font-size: 13px;
  color: #6b747c;
  background: #f3eee8;
}

.share-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.share-row input {
  flex: 1;
  border: 1px solid #cfd6dc;
  border-radius: 8px;
  padding: 10px;
  font-size: 13px;
  background: #f6f8fa;
}

.share-btn {
  width: 44px;
  border: none;
  border-radius: 8px;
  background: #7fa99b;
  color: white;
  font-size: 18px;
}

.alert-box {
  background: #e6efe8;
  border-radius: 8px;
  padding: 12px;
  font-size: 13px;
  color: #3e5f54;
  margin-top: 12px;
}

.share-note {
  font-size: 13px;
  color: #5f6f79;
  margin-top: 12px;
}


.subtitle-custom {
    font-size: 24px;
    font-weight: 700;
    color: #214763;
    line-height: 32px;
}

.subtitle-text {
    font-size: 16px;
    color: #507795;
}

.prompt-card {
    background: #ffffff;
    border: 1px solid #c3d5cb;
    padding: 24px;
    border-radius: 12px;
    height: 100%;
    transition: transform 0.3s ease;
}
.prompt-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    background-color: #2147630d;
    border: 1px solid #21476380;
}

.prompt-icon-box {
    font-size: 30px;
}

.prompt-heading {
    font-size: 18px;
    font-weight: 700;
    color: #214763;
    margin-bottom: 10px;
    line-height: 28px;
}

.prompt-desc {
    font-size: 14px;
    color: #507795;
    line-height: 20px;
    margin: 0;
}
.profile-actions .btn-profile-outline{
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}
.user-profile-btn {
    background-color: #1e3a4c;
    color: white !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
}

.sign-out-link {
    color: #ef4444 !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}
.filter-label {
    font-weight: 600;
    color: #1e3a4c;
    font-size: 14px;
}

/* --- Pills --- */
.pill-btn {
    background: transparent;
    border: 1px solid #c3d5cb;
    color: #214763;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}
.pill-btn:hover {
    background: #2147630d;
    border: 1px solid #21476380;

}

.pill-btn.active {
    background: #214763;
    color: #f9f2ec;
    border-color: #c3d5cb;
}

/* --- Voicemail Card --- */
.voicemail-card {
    background: #ffffff;
    border: 1px solid #c3d5cb;
    border-radius: 15px;
    padding: 24px;
    transition: box-shadow 0.3s ease;
}

.voicemail-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    background-color: #2147630d;
    border: 1px solid #21476380;
}

/* --- Icon Centering FIX --- */
.phone-icon-circle {
    min-width: 40px;
    height: 40px;
    background-color:#2147631a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 18px;
}

.phone-icon-circle svg {
    display: block;
    width: 20px;
    height: 20px;
    color: #214763 !important;
}

/* --- Details --- */
.vm-title {
    font-size: 16px;
    font-weight: 800;
    color: #214763;
    margin: 4px 0 8px;
}

.vm-meta {
    font-size: 12px;
    color: #507795;
    margin: 4px 0;
}

.vm-date {
    font-size: 14px;
    color: #507795;
    margin: 0;
    display: flex;
    align-items: center;
}

.vm-duration {
    font-weight: 500;
    color: #214763;
    background:#2147631a;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 13px;
}

.action-btn {
    background: none;
    border: none;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.action-btn svg {
    display: block;
    width: 20px;
    height: 20px;
    color: #507795;
}

.action-btn:hover {
    transform: scale(1.15);
}

.play-main svg {
  width: 24px;
  height: 24px;
}
.action-btn:hover svg {
  color: #214763;
}
.profile-main-card {
    background: #ffffff;
    border: 1px solid #c3d5cb;
    border-radius: 12px;
    padding: 35px 25px;
}

.profile-avatar-circle {
    width: 100px;
    height: 100px;
    background-color: #5b7c8a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-name {
    font-size: 22px;
    font-weight: 800;
    color: #1e3a4c;
    margin-top: 15px;
    margin-bottom: 2px;
}

.user-grade {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.label-tiny {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.school-name {
    font-size: 15px;
    color: #5b7c8a;
    font-weight: 600;
    margin-top: 4px;
}

/* Buttons */
.btn-profile-outline {
    border: 1.5px solid #c3d5cb;
    border-radius: 12px;
    padding:8px 16px;
    font-weight: 500;
    transition: 0.5s;
    color: #214763;
    text-decoration: none;
    background-color: #ffffff;
}
.btn-profile-outline:hover{
  background-color: #2147631a;
}
.btn-profile-outline svg,.btn-profile-signout svg{
  margin-right: 0px !important;
}


.btn-profile-signout {
    background: #fff1f2;
    border: 1px solid #fecdd3;
    border-radius: 12px;
    padding: 8px 16px;
    font-weight: 500;
    color:#ef4444;
    transition: 0.3s;
    font-size: 14px;
}
.btn-profile-signout:hover {
    background:#fecdd354;
}

/* ============ Child Selector Dropdown ============ */
.child-selector-dropdown {
    position: relative;
}

.btn-child-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #214763 0%, #1a5a4a 100%);
    border: none;
    border-radius: 12px;
    padding: 8px 16px;
    color: #ffffff;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(33, 71, 99, 0.2);
}

.btn-child-selector:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(33, 71, 99, 0.3);
}

.btn-child-selector .child-avatar {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.btn-child-selector .selected-child-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.btn-child-selector .dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.btn-child-selector[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.child-dropdown-menu {
    min-width: 280px;
    padding: 8px 0;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    margin-top: 8px !important;
    background: #ffffff;
    animation: dropdownFadeIn 0.2s ease;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.child-dropdown-menu .dropdown-header {
    padding: 12px 16px 8px;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.child-dropdown-menu .dropdown-header i {
    font-size: 12px;
}

.child-dropdown-menu .dropdown-divider {
    margin: 4px 16px;
    border-color: #f1f5f9;
}

/* Child Item */
.child-item {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 10px 16px !important;
    transition: all 0.2s ease;
    position: relative;
}

.child-item:hover {
    background: linear-gradient(135deg, rgba(33, 71, 99, 0.05) 0%, rgba(26, 90, 74, 0.05) 100%);
}

.child-item.active {
    background: linear-gradient(135deg, rgba(33, 71, 99, 0.08) 0%, rgba(26, 90, 74, 0.08) 100%);
}

.child-avatar-sm {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Avatar images */
.avatar-img {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.child-avatar-sm-img {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid #e2e8f0;
}

/* Child select form */
.child-select-form {
    margin: 0;
    padding: 0;
}

.child-select-form button.child-item {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
}

.child-select-form button.child-item:focus {
    outline: none;
    box-shadow: none;
}

.child-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}

.child-info .child-name {
    font-weight: 600;
    color: #214763;
    font-size: 14px;
    line-height: 1.3;
}

.child-info .child-age {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.3;
}

.child-item .check-icon {
    color: #1a5a4a;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.child-item.active .check-icon {
    opacity: 1;
}

/* Add New Child */
.add-child-item {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 12px 16px !important;
    color: #1a5a4a !important;
    font-weight: 500;
    transition: all 0.2s ease;
}

.add-child-item:hover {
    background: rgba(26, 90, 74, 0.08);
    color: #1a5a4a !important;
}

.add-child-item i {
    font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .btn-child-selector .selected-child-name {
        max-width: 80px;
    }

    .child-dropdown-menu {
        min-width: 260px;
    }
}

@media (max-width: 576px) {
    .btn-child-selector {
        padding: 6px 12px;
    }

    .btn-child-selector .selected-child-name {
        display: none;
    }

    .btn-child-selector .child-avatar {
        width: 32px;
        height: 32px;
    }
}

.profile-section{
  padding: 100px 0px;
}

/* Content Area */
.profile-content-card {
    background: #ffffff;
    border: 1px solid #c3d5cb;
    border-radius: 12px;
    padding: 30px;
}

.card-inner-title {
    font-size: 24px;
    font-weight: 800;
    color: #214763;
}

.info-alert-box-plain p {
    color: #507795;
    margin: 0;
    background: #ffffff;
    padding: 20px 30px;
    color: #507795;
    border: 1px solid #c3d5cb;
    border-radius: 12px;
    font-size: 14px;
}
.faq-question{
  color: #214763;
  font-size: 18px;
  font-weight: 600;
}
.faq-answer{
  color: #507795;
  font-size: 14px;
  line-height: 20px;
}
/* Steps */
.step-num-circle {
    min-width: 32px;
    height: 32px;
    background-color: #214763;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.step-heading {
    font-weight: 800;
    color: #1e3a4c;
    margin-bottom: 5px;
}

.step-text {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}
.school-search {
  position: relative;
  max-width: 560px;
  margin: auto;
  font-family: system-ui, sans-serif;
}
a{
    text-decoration: none;
}

/* Input */
.input-wrapper {
  position: relative;
  margin-bottom: 60px;
}

.input-wrapper input {
  width: 100%;
  padding: 14px 16px 14px 46px;
  border-radius: 14px;
  border: 2px solid #cbd5e1;
  font-size: 15px;
  outline: none;
}

.input-wrapper input:focus {
  border-color: #94a3b8;
}

/* Search Icon */
.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #64748b;
}

/* Dropdown */
.school-dropdown {
  position: absolute;
  width: 100%;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  margin-top: 10px;
  padding: 6px 0;
  list-style: none;
  display: none;
  max-height: 260px;
  overflow-y: auto;
  z-index: 50;
  top:50px;
}

/* Dropdown Item */
.school-dropdown li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 14px;
}

/* Hover */
.school-dropdown li:hover {
  background-color: #f8fafc;
}

/* Check Icon */
.school-dropdown .check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563eb;
  font-size: 12px;
}

.school-dropdown li.no-result {
  justify-content: center;
  color: #6b7280;
  cursor: default;
  font-style: italic;
}

.school-dropdown li.no-result:hover {
  background-color: transparent;
}
  /* Plan Card */
  .checkout-plan-card {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-left: 4px solid #214763;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.checkout-plan-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.plan-badge {
    background: #e7f1ff;
    color: #214763;
    border: 1px solid #b6d4fe;
    font-weight: 600;
    padding: 0.5rem 1rem;
}
.plan-badge-success {
    background: #d1e7dd;
    color: #0f5132;
    border-color: #badbcc;
}
.plan-price {
    font-size: 2.25rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.2;
}

/* Card Headers */
.card-header-modern {
    background: #ffffff;
    border-bottom: 2px solid #f0f0f0;
    padding: 1.5rem;
    border-radius: 12px 12px 0 0;
}
.card-header-modern h5 {
    color: #212529;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.header-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
}
.header-icon svg {
    color: #495057;
    width: 20px;
    height: 20px;
}

/* Info Cards */
.info-card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    background: #ffffff;
    transition: all 0.3s ease;
    overflow: hidden;
}
.info-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-color: #dee2e6;
}
.info-item {
    padding: 1rem 0;
    border-bottom: 1px solid #f8f9fa;
}
.info-item:last-child {
    border-bottom: none;
}
.info-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}
.info-value {
    font-size: 1rem;
    font-weight: 600;
    color: #212529;
}
/* Summary Card */
.summary-card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

/* Price Summary */
.price-row {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f8f9fa;
}
.price-row:last-of-type {
    border-bottom: 2px solid #e9ecef;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}
.price-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
}

/* Child Booking Cards */
.child-booking-card {
    border: 1px solid #e9ecef;
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s ease;
}
.child-booking-card:hover {
    box-shadow: 0 4px 16px rgba(33, 71, 99, 0.1);
    border-color: #214763;
}
.child-booking-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #f8fbfd 0%, #f0f5f9 100%);
    border-bottom: 1px solid #e9ecef;
}
.child-booking-avatar {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #214763;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}
.child-booking-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #212529;
    line-height: 1.3;
}
.child-booking-plan-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    color: #214763;
    background: rgba(33, 71, 99, 0.1);
    padding: 2px 8px;
    border-radius: 6px;
    margin-top: 2px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
.child-booking-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #214763;
    white-space: nowrap;
}
.child-booking-field {
    padding: 0.5rem 0;
}
.child-booking-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.child-booking-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #212529;
}

/* Responsive */
@media (max-width: 768px) {
    .voicemail-card { padding: 15px; }
    .vm-actions { width: 100%; justify-content: space-between; }
}




/* Mobile Adjustments */
@media (max-width: 767px) {
    .hero-section h1 {
        font-size: 40px;
    }
    .record-card {
        height: 350px;
        margin:0px !important;
    }
    .section-title {
        font-size: 28px;
    }
    .features-section {
        padding: 60px 0;
    }
    .footer-section {
      padding: 60px 0 30px;
    }
    .footer-bottom {
      margin-top: 40px;
    }
    .social-links {
      margin-top: 15px;
    }
    .social-links a {
      margin: 0 10px;
    }
    .cta-title {
      font-size: 28px;
    }
    .cta-card {
      padding: 40px 20px;
    }
    .btn-cta {
      width: 100%;
      justify-content: center;
    }
    .voicemail-memories {
      padding: 60px 0;
    }
    .memory-item {
      margin-bottom: 30px;
    }
}
@media (max-width: 991px) {
  .navbar-collapse {
    margin-top: 16px;
    text-align: center;
  }

  .nav-signin {
    margin-top: 12px;
    justify-content: center;
  }
  .step-item::after {
    display: none;
  }

  .price-box{
    margin: 10px 0px;
  }
}



/* Booking Count Badge */
.booking-count-badge {
    background: #2147631a;
    color: #214763;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}
/* Booking Card */
.booking-card {
    background: #ffffff;
    border: 1px solid #c3d5cb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.booking-card:hover {
    border-color: #21476380;
    box-shadow: 0 8px 24px rgba(33, 71, 99, 0.1);
    transform: translateY(-4px);
}

/* Card Header */
.booking-card-header {
    padding: 20px;
    background: linear-gradient(to right, hsl(206 50% 26% / 0.05), hsl(146 18% 56% / 0.05));
    border-bottom: 1px solid #e8ede9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.booking-icon-box {
    width: 48px;
    height: 48px;
    background: #214763;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.booking-plan-name {
    font-size: 16px;
    font-weight: 700;
    color: #214763;
    margin: 0 0 4px 0;
    line-height: 1.2;
}

.booking-price {
    font-size: 14px;
    font-weight: 600;
    color: #3c6e71;
}

.booking-status-badge {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-active {
    background: #d1fae5;
    color: #065f46;
}

.status-pending {
    background: #fef3c7;
    color: #92400e;
}

/* Card Body */
.booking-card-body {
    padding: 20px;
    flex: 1;
}

.booking-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.booking-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #f0f5f3;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #507795;
}

.booking-info-item .info-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 2px;
}

.booking-info-item .info-value {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1e3a4c;
    line-height: 1.3;
}

.memories-count {
    color: #3c6e71 !important;
}

/* Phone Section */
.booking-phone-section {
    background: #f8faf9;
    border: 1px solid #e2e8e4;
    border-radius: 12px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.phone-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.phone-icon {
    width: 38px;
    height: 38px;
    background: #214763;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.phone-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    margin-bottom: 2px;
}

.phone-number {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #214763;
    font-family: 'SF Mono', 'Consolas', monospace;
}

.share-link-btn {
    width: 36px;
    height: 36px;
    background: #ffffff;
    border: 1px solid #c3d5cb;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #507795;
    transition: all 0.2s ease;
    min-width: 36px;
}

.share-link-btn:hover {
    background: #214763;
    border-color: #214763;
    color: #fff;
}

/* Card Footer */
.booking-card-footer {
    padding: 16px 20px;
    border-top: 1px solid #e8ede9;
    background: #fafcfb;
}
/* Responsive */
@media (max-width: 576px) {
    .booking-info-grid {
        grid-template-columns: 1fr;
    }

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

    .booking-phone-section {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .share-link-btn {
        width: 100%;
        height: 40px;
    }
}

/* Back Button */
.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #507795;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-back:hover {
    color: #214763;
}

.btn-back:hover svg {
    transform: translateX(-4px);
}

.btn-back svg {
    transition: transform 0.3s ease;
}

/* Booking Detail Top */
.booking-detail-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.booking-detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #214763 0%, #3c6e71 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.booking-detail-title {
    font-size: 24px;
    font-weight: 800;
    color: #214763;
    margin: 0;
    line-height: 1.2;
}

.booking-detail-subtitle {
    font-size: 14px;
    color: #94a3b8;
    margin: 0 0 8px 0;
}

.booking-detail-price {
    font-size: 28px;
    font-weight: 800;
    color: #3c6e71;
}

/* Divider */
.booking-detail-divider {
    height: 1px;
    background: #e8ede9;
    margin: 24px 0;
}

/* Booking Details Grid */
.booking-details-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 24px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: #f0f5f3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #507795;
}

.detail-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.detail-value {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #1e3a4c;
}

/* Phone Detail Section */
.phone-detail-section {
    background: linear-gradient(to right, hsl(206 50% 26% / 0.06), hsl(146 18% 56% / 0.06));
    border: 1px solid #c3d5cb;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.phone-detail-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.phone-detail-icon {
    width: 56px;
    height: 56px;
    background: #214763;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.phone-detail-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.phone-detail-number {
    display: block;
    font-weight: 700;
    color: #214763;
    font-family: 'SF Mono', 'Consolas', monospace;
}

.phone-detail-hint {
    display: block;
    font-size: 13px;
    color: #507795;
    margin-top: 6px;
}

.phone-detail-right {
    display: flex;
    gap: 12px;
}

.btn-copy-phone,
.btn-share-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-copy-phone {
    background: #fff;
    border: 1px solid #c3d5cb;
    color: #214763;
}

.btn-copy-phone:hover {
    background: #f0f5f3;
    border-color: #214763;
}

.btn-share-link {
    background: #214763;
    border: 1px solid #214763;
    color: #fff;
}

.btn-share-link:hover {
    background: #1a3a52;
    color: #fff;
}

/* Memories Section */
.memories-count-badge {
    background: #d1fae5;
    color: #065f46;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 992px) {
    .booking-details-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .booking-detail-top {
        flex-direction: column;
    }

    .phone-detail-section {
        flex-direction: column;
        align-items: flex-start;
    }

    .phone-detail-right {
        width: 100%;
        flex-direction: column;
    }

    .btn-copy-phone,
    .btn-share-link {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .booking-details-grid {
        grid-template-columns: 1fr;
    }
}
#card-element{
    padding:10px;
    border:1px solid #d3d3d3;
    border-radius: 10px;
}

/* ================= WISHES PAGE STYLES ================= */
.wishes-page {
    padding: 100px 0 60px;
    background: #faf6f1;
    min-height: 100vh;
}

.wishes-box {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #c3d5cb;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.wishes-box h1 {
    font-size: 32px;
    font-weight: 800;
    color: #214763;
    margin-bottom: 12px;
    text-align: center;
}

.wishes-box .subtitle {
    font-size: 16px;
    color: #507795;
    text-align: center;
    margin-bottom: 32px;
    line-height: 1.6;
}

.wishes-box .subtitle span {
    color: #214763;
    font-weight: 600;
}

.wishes-box{
    background-color: #ffffff;
    border: 1px solid #c3d5cb;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.wishes-box p {
    color: #507795;
    font-size: 14px;
    margin: 0;
    line-height: 20px;
}

.wishes-box strong {
    color: #214763;
    font-weight: 700;
}

.recording-tips-box {
    background: linear-gradient(to right, hsl(206 50% 26% / 0.05), hsl(146 18% 56% / 0.05));
    border: 1px solid #c3d5cb;
    border-radius: 12px;
    padding: 12px 14px;
}

.recording-tips-box p {
    margin: 0;
    font-size: 13px;
    color: #507795;
    line-height: 1.5;
}

.recording-tips-box strong {
    color: #214763;
    font-weight: 600;
}

.wishes-form .form-group {
    margin-bottom: 24px;
}

.wishes-form label {
    font-weight: 600;
    color: #214763;
    font-size: 14px;
    margin-bottom: 8px;
    display: block;
}

.wishes-form label .required {
    color: #ef4444;
    margin-left: 2px;
}

.wishes-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #c3d5cb;
    border-radius: 12px;
    font-size: 14px;
    color: #1e3a4c;
    transition: 0.3s;
    background-color: #f9f2ec;
}

.wishes-form .form-control:focus {
    border-color: #214763;
    outline: none;
    box-shadow: 0 0 0 3px rgba(33, 71, 99, 0.1);
    background-color: #ffffff;
}

.wishes-phone-input-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
    border: 1px solid #c3d5cb;
    border-radius: 12px;
    background-color: #f9f2ec;
    transition: 0.3s;
}

.wishes-phone-input-wrap:focus-within {
    border-color: #214763;
    box-shadow: 0 0 0 3px rgba(33, 71, 99, 0.1);
    background-color: #ffffff;
}

.wishes-phone-input-wrap .phone-country-code {
    flex-shrink: 0;
    width: 130px;
    padding: 12px 14px;
    border: none;
    border-right: 1px solid #c3d5cb;
    border-radius: 12px 0 0 12px;
    font-size: 14px;
    color: #1e3a4c;
    background-color: transparent;
    transition: 0.3s;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231e3a4c' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.wishes-phone-input-wrap:focus-within .phone-country-code {
    border-right-color: #214763;
}

.wishes-phone-input-wrap .phone-country-code:focus {
    outline: none;
}

.wishes-phone-input-wrap .form-control {
    flex: 1;
    min-width: 0;
    border: none;
    border-radius: 0 12px 12px 0;
    padding-left: 16px;
    background-color: transparent;
}

.wishes-phone-input-wrap .form-control:focus {
    border: none;
    box-shadow: none;
    background-color: transparent;
}

/* Voice Recorder Styles */
.voice-recorder {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.record-button {
    background: transparent;
    color: #214763;
    border: 2px solid #214763;
    border-radius: 12px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    text-align: center;
}

.record-button:hover {
    background-color: #2147631a;
    border-color: #214763;
}

.record-button:active {
    background-color: #21476333;
}

.record-button i {
    font-size: 16px;
}

.recording-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 16px;
    background: linear-gradient(to right, hsl(206 50% 26% / 0.1), hsl(146 18% 56% / 0.1));
    border: 1px solid #21476333;
    border-radius: 12px;
    color: #214763;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.recording-indicator {
    color: #ef4444;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.voice-recorder #audioPreview {
    width: 100%;
    border-radius: 12px;
    margin-top: 4px;
}

/* Error Message Styles */
.voice-recorder .error-message {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    border-radius: 12px;
    color: #ef4444;
    font-size: 14px;
    font-weight: 500;
    margin-top: 4px;
    text-align: left;
}

.voice-recorder .error-message i {
    font-size: 16px;
    flex-shrink: 0;
}

.voice-recorder .error-message span {
    flex: 1;
}

.action-buttons {
    margin-top: 32px;
}

.custom-button {
    width: 100%;
    background: #214763;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.custom-button:hover:not(:disabled) {
    background: #1a3a52;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 71, 99, 0.3);
}

.custom-button:active:not(:disabled) {
    transform: translateY(0);
}

.custom-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}
.sis-about-section {
     padding: 100px 0;
}

.sis-about-title {
    font-size: 48px;
    font-weight: 800;
    color: #214763;
    line-height: 1;
}

.sis-about-subtitle {
    font-size: 20px;
    color: #507795;
    margin-top: 15px;
}

.sis-section-heading {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #214763;
}

.sis-about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #214763;
    margin-bottom: 18px;
}

.sis-about-text strong {
    font-weight: 700;
    color: #214763;
}

.sis-feature-card {
    background-image: linear-gradient(to bottom right,hsl(206 50% 26% / .1) , hsl(146 18% 56% / .1));
    border-radius: 12px;
    padding: 120px 60px;
    border: 1px solid #c3d5cb;
}
.sis-feature-card svg{
    width: 64px;
    height: 64px;
    color: #214763 !important;
    margin-bottom: 22px;
}
.sis-feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #214763;
}
.sis-feature-image img{
    width: 100%;
    max-height: 450px;
    border-radius: 12px;
    object-fit: cover;
    object-position: bottom;
}
.sis-feature-text {
    font-size: 16px;
    line-height: 1.7;
    color: #214763;
}
.sis-why-section {
    padding: 0px 0px 80px 0px;
}

.sis-why-title {
    font-size: 42px;
    font-weight: 800;
    color: #214763;
    margin-bottom: 60px;
}

.sis-feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}
.sis-feature-item svg{
    color: #214763 !important;
    margin-top: 0px !important;
}
.sis-feature-item h5 {
    font-size: 18px;
    font-weight: 700;
    color: #214763;
    margin-bottom: 8px;
}

.sis-feature-item p {
    font-size: 16px;
    color: #507795;
    line-height: 1.7;
    margin: 0;
}
.sis-vision-section {
    padding: 0px 0px 60px 0px;
}

.sis-vision-card {
    max-width: 900px;
    margin: 0 auto 60px auto;
    padding: 70px 80px;
    background-image: linear-gradient(to bottom right,hsl(206 50% 26% / .1) , transparent , hsl(146 18% 56% / .1));
    border: 1px solid #c3d5cb;
    border-radius: 16px;
}

.sis-vision-title {
    font-size: 32px;
    font-weight: 800;
    color: #214763;
    margin-bottom: 25px;
}

.sis-vision-text {
    font-size: 18px;
    line-height: 1.8;
    color: #214763;
    max-width: 700px;
    margin: 0 auto;
}

.sis-vision-btn {
    display: inline-block;
    padding: 16px 40px;
    background-color: #214763;
    color: #fff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.3s ease;
}

.sis-vision-btn:hover {
    background-color: #1f3a52;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .wishes-page {
        padding:60px 0 40px;
    }
    .wishes-box .subtitle{
        margin-bottom: 16px;
    }
    .wishes-box {
        padding: 30px 20px !important;
    }
    .info-alert-box{
        padding:20px !important;
    }
    .wishes-box h1 {
        font-size: 22px;
    }

    .wishes-phone-input-wrap {
        flex-wrap: nowrap;
    }

    .wishes-phone-input-wrap .phone-country-code {
        width: 85px;
        padding: 10px;
        font-size: 13px;
    }

    .wishes-phone-input-wrap .form-control {
        flex: 1;
        min-width: 0;
        padding-left: 12px;
    }
}

div[data-repeater-item] {
    margin-bottom: 16px;
    padding: 16px;
    border: 1px solid #c3d5cb;
    border-radius: 12px;
}


/* Share Modal Styles */
#shareMemoryModal .modal-content.share-modal-content {
    border: none;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(33, 71, 99, 0.25);
    position: relative;
}

.share-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #f5f7f9;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #507795;
    transition: all 0.2s ease;
    z-index: 10;
}

.share-modal-close:hover {
    background: #e8eef3;
    color: #214763;
    transform: rotate(90deg);
}

.share-modal-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #214763 0%, #3a7ca5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.share-modal-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #214763;
}

.share-modal-subtitle {
    font-size: 0.9rem;
    color: #507795;
}

.share-link-container {
    display: flex;
    gap: 10px;
}

.share-link-input {
    flex: 1;
    padding: 12px 14px;
    border: 2px solid #e8eef3;
    border-radius: 10px;
    font-size: 0.85rem;
    color: #214763;
    background: #f9fbfc;
    outline: none;
    transition: border-color 0.2s ease;
}

.share-link-input:focus {
    border-color: #3a7ca5;
}

.share-copy-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 18px;
    background: linear-gradient(135deg, #214763 0%, #3a7ca5 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.share-copy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 71, 99, 0.3);
}

.share-copy-btn.copied {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.share-divider {
    text-align: center;
    position: relative;
}

.share-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e8eef3;
}

.share-divider span {
    background: #fff;
    padding: 0 16px;
    color: #8fa8ba;
    font-size: 0.85rem;
    position: relative;
}

.share-social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.share-social-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 14px 10px;
    background: #f9fbfc;
    border: 2px solid #e8eef3;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.share-social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.share-social-btn span {
    font-size: 0.75rem;
    font-weight: 600;
    color: #507795;
}

.share-social-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

/* WhatsApp */
.share-social-btn.whatsapp .share-social-icon {
    background: #dcfce7;
    color: #25d366;
}
.share-social-btn.whatsapp:hover {
    border-color: #25d366;
    background: #f0fdf4;
}

/* Facebook */
.share-social-btn.facebook .share-social-icon {
    background: #dbeafe;
    color: #1877f2;
}
.share-social-btn.facebook:hover {
    border-color: #1877f2;
    background: #eff6ff;
}

/* Twitter/X */
.share-social-btn.twitter .share-social-icon {
    background: #f3f4f6;
    color: #000;
}
.share-social-btn.twitter:hover {
    border-color: #000;
    background: #f9fafb;
}

/* LinkedIn */
.share-social-btn.linkedin .share-social-icon {
    background: #dbeafe;
    color: #0a66c2;
}
.share-social-btn.linkedin:hover {
    border-color: #0a66c2;
    background: #eff6ff;
}

/* Email */
.share-social-btn.email .share-social-icon {
    background: #fef3c7;
    color: #d97706;
}
.share-social-btn.email:hover {
    border-color: #d97706;
    background: #fffbeb;
}

/* SMS */
.share-social-btn.sms .share-social-icon {
    background: #e0e7ff;
    color: #4f46e5;
}
.share-social-btn.sms:hover {
    border-color: #4f46e5;
    background: #eef2ff;
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .share-social-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .share-link-container {
        flex-direction: column;
    }

    .share-copy-btn {
        justify-content: center;
    }
}


/* Children Cards Styles */
.child-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #c3d5cb;
    overflow: hidden;
    transition: all 0.3s ease;
}

.child-card:hover {
    border-color: #21476380;
    box-shadow: 0 8px 24px rgba(33, 71, 99, 0.12);
    transform: translateY(-4px);
}

.child-card-header {
    background: linear-gradient(to bottom right, hsl(206 50% 26% / .08), hsl(146 18% 56% / .08));
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.child-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border:1px solid #a0c1ae;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(33, 71, 99, 0.25);
}

.child-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.child-actions {
    display: flex;
    gap: 8px;
}

.child-action-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.child-action-btn.edit-btn {
    background: #e8f4f8;
    color: #214763;
}

.child-action-btn.edit-btn:hover {
    background: #214763;
    color: #fff;
}

.child-action-btn.delete-btn {
    background: #fef2f2;
    color: #dc2626;
}

.child-action-btn.delete-btn:hover {
    background: #dc2626;
    color: #fff;
}

.child-card-body {
    padding: 20px 24px;
}

.child-name {
    font-size: 18px;
    font-weight: 700;
    color: #214763;
    margin-bottom: 16px;
}

.child-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.child-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.child-info-item.full-width {
    grid-column: span 2;
}

.info-label {
    font-size: 12px;
    font-weight: 600;
    color: #507795;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 14px;
    font-weight: 500;
    color: #214763;
}

.child-video-badge {
    margin-top: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #dcfce7;
    color: #166534;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.child-card-footer {
    padding: 16px 24px;
    border-top: 1px solid #e8eef3;
}

.btn-view-memories {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 16px;
    background: transparent;
    border: 2px solid #214763;
    border-radius: 10px;
    color: #214763;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-view-memories:hover {
    background: #214763;
    color: #fff;
}

/* Empty State */
.empty-state-card {
    background: linear-gradient(to bottom right, hsl(206 50% 26% / .05), hsl(146 18% 56% / .05));
    border: 2px dashed #c3d5cb;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
}

.empty-state-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, hsl(206 50% 26% / .1), hsl(146 18% 56% / .1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #214763;
}

.empty-state-title {
    font-size: 24px;
    font-weight: 700;
    color: #214763;
    margin-bottom: 12px;
}

.empty-state-text {
    font-size: 16px;
    color: #507795;
    margin-bottom: 28px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}


.back-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid #c3d5cb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #214763;
    transition: all 0.2s ease;
}

.back-btn:hover {
    background: #214763;
    color: #fff;
    border-color: #214763;
}

/* Form Header */
.form-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e8eef3;
}

.form-header-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, hsl(206 50% 26% / .1), hsl(146 18% 56% / .1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #214763;
    flex-shrink: 0;
}

.form-header-subtitle {
    font-size: 14px;
    color: #507795;
    margin: 0;
}

/* Image Upload */
.image-upload-section {
    margin-bottom: 28px;
}

.image-upload-label {
    display: block;
    font-weight: 600;
    color: #214763;
    margin-bottom: 12px;
}

.image-upload-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.image-preview {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, hsl(206 50% 26% / .08), hsl(146 18% 56% / .08));
    border: 2px solid #c3d5cb;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #507795;
    overflow: hidden;
    flex-shrink: 0;
}

.image-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-upload-info {
    flex: 1;
}

.image-upload-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #f5f7f9;
    border: 1px solid #c3d5cb;
    border-radius: 10px;
    color: #214763;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.image-upload-btn:hover {
    background: #214763;
    color: #fff;
    border-color: #214763;
}

.upload-hint {
    font-size: 12px;
    color: #507795;
    margin: 8px 0 0;
}

.current-file-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
    padding: 4px 10px;
    background: #dcfce7;
    color: #166534;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 500;
}
/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e8eef3;
}

/* Danger Zone */
.danger-zone-card {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 16px;
    padding: 24px;
}

.danger-zone-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 8px;
}

.danger-zone-desc {
    font-size: 14px;
    color: #991b1b;
    margin-bottom: 16px;
}

.btn-danger-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #dc2626;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-danger-custom:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.school-select-wrapper .select2-container {
    width: 100% !important;
}
.school-select-wrapper .select2-container--default .select2-selection--single {
    background-color: #f9f2ec;
    border: 1px solid #c3d5cb;
    border-radius: 12px;
    height: 46px;
    padding: 6px 14px;
    font-size: 14px;
    color: #214763;
    transition: 0.3s;
}
.school-select-wrapper .select2-container--default .select2-selection--single:hover {
    border-color: #214763;
}
.school-select-wrapper .select2-container--default.select2-container--open .select2-selection--single {
    border-color: #214763;
    box-shadow: none;
}
.school-select-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 32px;
    padding-left: 0;
    color: #214763;
    font-size: 14px;
}
.school-select-wrapper .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #507795;
}
.school-select-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 44px;
    right: 8px;
}
.school-select-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #507795 transparent transparent transparent;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid #c3d5cb;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 14px;
    color: #214763;
    background-color: #f9f2ec;
}
.select2-container--default .select2-search--dropdown .select2-search__field:focus {
    outline: none;
    border-color: #214763;
    box-shadow: none;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #214763;
}
.select2-dropdown {
    border: 1px solid #c3d5cb;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.select2-results__option {
    padding: 10px 14px;
    font-size: 14px;
    color: #214763;
}
