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

body {
  background: #faf6f1;
  color: #1e3a4c;
  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: #1e3a4c;
  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;
}

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

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

/* ================= BUTTONS ================= */
.btn-primary-custom {
  background: #33556f;
  color: #fff;
  border-radius: 12px;
  padding: 12px 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: 12px 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 ;
}

.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: #1e3a4c;
  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: 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;


}

.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;
}

/* Feature Cards */
.feature-card {
  background: #ffffff;
  padding: 32px 30px;
  border-radius: 20px;
  border: 1px solid #c3d5cb;
  text-align: left;
  height: 100%;
  transition: all 0.3s ease;
}
.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: #1e3a4c;
  margin-bottom: 15px;
}

.feature-card p {
  font-size: 14px;
  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;
}

.step-item {
  position: relative;

}

/* ================= 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: 18px;
  font-weight: 700;
  line-height: 28px;
  color: #1e3a4c;
  margin-bottom: 15px;
}

.step-item p {
  font-size: 15px;
  color: #507795;
  line-height: 1.6;
  margin: 0 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;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}
.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;
}



.if-available-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #7ba38c;
    color: white;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

/* 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: 10px;
    font-weight: 600;
    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: 13px;
    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: 18px;
    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 #e5e7eb;
}

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

.footer-tagline {
    font-size: 14px;
    color: #5b7c8a;
    line-height: 1.6;
    max-width: 200px;
}

.footer-title {
    font-size: 14px;
    font-weight: 700;
    color: #1e3a4c;
    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: #5b7c8a;
    transition: color 0.3s ease;
}

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

/* Bottom Bar Styling */
.footer-bottom {
    margin-top: 60px;
    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: 10px 42px;
    border: 1px solid #c3d5cb;
    border-radius: 12px;
    font-size: 14px;
    color: #1e3a4c;
    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: 60px 0;
    background-color:#f9f2ec;
}

.main-title-custom {
    font-size: 30px;
    font-weight: 700;
    color: #214763;
}

/* Light border info box */
.info-alert-box {
    background-color: #ffffff;
    border: 1px solid #c3d5cb;
    padding: 22px;
    border-radius: 12px;
}

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

.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;
}
.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;
}

/* --- 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;
}
.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;
}

.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;
}

/* 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;
}
  /* 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;
}

/* 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;
}

.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-size: 22px;
    font-weight: 800;
    color: #214763;
    font-family: 'SF Mono', 'Consolas', monospace;
    letter-spacing: 1px;
}

.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 .info-alert-box {
    background-color: #ffffff;
    border: 1px solid #c3d5cb;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 24px;
}

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

.wishes-box .info-alert-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;
}

/* Responsive */
@media (max-width: 768px) {
    .wishes-page {
        padding:60px 0 40px;
    }
    .wishes-box .subtitle{
        margin-bottom: 16px;
    }
    .wishes-box {
        padding: 30px 20px;
    }
    
    .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;
    }
}