/* Mom's Hour Enrollment Page Styles */

/* Root container */
.mh-page-wrapper {
    background-color: #ffffff;
    min-height: 100vh;
}

/* Hero Section */
.mh-hero-section {
    background-color: #FFE5DC;
    padding: 60px 20px;
}

.mh-hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.mh-hero-content {
    padding: 20px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.mh-hero-left {
    display: flex;
    flex-direction: column;
    order: 1;
}

.mh-hero-right {
    display: flex;
    flex-direction: column;
    order: 2;
}

.mh-badge {
    display: inline-block;
    background-color: #FF7A59;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    width: fit-content;
}

.mh-hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.2;
}

.mh-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
}

.mh-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.mh-hero-subtitle {
    font-size: 28px;
    color: #FF7A59;
    margin-bottom: 20px;
    font-weight: 600;
}

.mh-hero-description {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.mh-hero-features {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.mh-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #2c3e50;
}

.mh-feature-item i {
    color: #ffffff;
    background-color: #FF7A59;
    font-size: 18px;
    font-weight: 900;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.mh-price-highlight {
    font-size: 20px;
    font-weight: 800;
    color: #FF7A59;
    background: linear-gradient(135deg, #fff9f7, #ffffff);
    padding: 2px 8px;
    border-radius: 6px;
    border: 2px solid #FF7A59;
    display: inline-block;
}

/* Mobile/Tablet View */
@media (max-width: 991px) {
    .mh-hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mh-hero-left {
        order: 1;
    }

    .mh-hero-right {
        order: 2;
    }

    .mh-hero-image {
        margin-bottom: 20px;
    }
}

/* Why Enroll Section */
.mh-why-section {
    padding: 80px 20px;
    background-color: #fff;
}

.mh-why-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.mh-section-header {
    text-align: center;
    margin-bottom: 50px;
}

.mh-section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.mh-section-subtitle {
    font-size: 18px;
    color: #777;
}

.mh-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: stretch;
    /* ensure equal height cards */
}

.mh-why-card {
    background-color: #FFF2ED;
    padding: 18px 16px;
    /* tighter padding for sleeker look */
    border-radius: 12px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-height: 200px;
    /* uniform size */
    height: 100%;
}

.mh-why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.mh-why-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #FF7A59 0%, #ff6640 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    box-shadow: 0 4px 12px rgba(255, 122, 89, 0.25);
}

.mh-why-icon i {
    font-size: 34px;
    color: #ffffff;
    font-weight: 900;
}

.mh-why-card h3 {
    font-size: 20px;
    /* slightly smaller */
    font-weight: 700;
    color: #2c3e50;
    margin: 4px 0 6px;
}

.mh-why-card p {
    font-size: 15px;
    color: #626262;
    line-height: 1.55;
}

/* Responsive tweaks to keep cards sleek and same-sized */
@media (max-width: 991px) {
    .mh-why-card {
        min-height: 180px;
        padding: 16px 14px;
    }
}

@media (max-width: 767px) {
    .mh-why-grid {
        gap: 20px;
    }

    .mh-why-card {
        min-height: 0;
        padding: 16px 12px;
        border-radius: 10px;
        gap: 8px;
    }

    .mh-why-card h3 {
        font-size: 18px;
    }

    .mh-why-card p {
        font-size: 14px;
    }
}

/* What We Offer Section */
.mh-offer-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.mh-offer-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.mh-offer-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    /* tighter spacing */
    margin-bottom: 32px;
    align-items: stretch;
    /* equal height cards */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.mh-offer-card {
    background-color: white;
    padding: 20px 16px 20px 18px;
    /* sleeker */
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.07);
    border: 2px solid transparent;
    background: linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, #FF7A59 0%, #ff6640 100%) border-box;
    /* flashy gradient border */
    transition: transform 0.25s, box-shadow 0.25s;
    display: grid;
    grid-template-columns: 1fr 140px;
    grid-template-rows: auto auto 1fr;
    gap: 10px;
    min-height: 340px;
    height: 380px;
    /* same fixed height across cards on desktop */
    /* uniform baseline */
    overflow: visible;
    position: relative;
}

.mh-offer-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 122, 89, 0.25);
}

.mh-offer-card-highlight {
    border: 3px solid #FF7A59;
    position: relative;
}

.mh-offer-icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, #FF7A59 0%, #ff6640 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 122, 89, 0.3);
    grid-column: 1;
    grid-row: 1;
}

.mh-offer-icon i {
    font-size: 32px;
    color: #ffffff;
    font-weight: 900;
}

.mh-offer-card h3 {
    font-size: 20px;
    /* slightly smaller */
    font-weight: 700;
    color: #2c3e50;
    margin: 4px 0 6px;
    grid-column: 1;
    grid-row: 2;
}

.mh-offer-card p {
    font-size: 15px;
    color: #626262;
    line-height: 1.55;
    margin-bottom: 12px;
    grid-column: 1;
    grid-row: 3;
}

.mh-offer-list {
    list-style: none;
    padding: 0;
    margin: 8px 0 6px;
    grid-column: 1;
    grid-row: 3;
}

.mh-offer-list li {
    padding: 4px 0;
    color: #555;
    position: relative;
    padding-left: 22px;
    font-size: 14px;
}


/* Responsive sizing for offer cards */
@media (max-width: 991px) {
    .mh-offer-card {
        min-height: 320px;
        height: 360px;
        /* equal height on tablet */
        padding: 18px 14px;
    }

    .mh-offer-value {
        width: 120px;
        height: 120px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .mh-offer-grid {
        gap: 20px;
        grid-template-columns: 1fr;
    }

    .mh-offer-card {
        min-height: 280px;
        height: auto;
        /* single column on mobile, let it grow */
        padding: 16px 12px;
        border-radius: 10px;
        gap: 10px;
        grid-template-columns: 1fr 110px;
    }

    .mh-offer-card h3 {
        font-size: 18px;
    }

    .mh-offer-card p {
        font-size: 14px;
    }

    .mh-offer-value {
        width: 100px;
        height: 100px;
        font-size: 12px;
    }
}


.mh-offer-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FF7A59;
    font-weight: bold;
}

.mh-offer-value {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    width: 130px;
    height: 130px;
    background:
        radial-gradient(circle at center, #FFD700 0%, #FFA500 30%, #FF7A59 60%, #ff6640 100%);
    color: #ffffff;
    font-weight: 800;
    font-size: 15px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 6px 25px rgba(255, 122, 89, 0.6);
    animation: burstPulse 2s ease-in-out infinite;
    z-index: 10;
    grid-column: 2;
    grid-row: 1 / 4;
    align-self: center;
    position: relative;
}

.mh-offer-value::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    border-radius: 50%;
    animation: shimmer 3s ease-in-out infinite;
    z-index: 1;
}

.mh-offer-value span {
    animation: textBounce 1.5s ease-in-out infinite;
    text-align: center;
    line-height: 1.2;
    padding: 0 8px;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 10px rgba(255, 255, 255, 0.5);
    z-index: 2;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes burstPulse {

    0%,
    100% {
        transform: scale(1) translateY(-50%);
        box-shadow: 0 6px 25px rgba(255, 122, 89, 0.6);
    }

    50% {
        transform: scale(1.08) translateY(-50%);
        box-shadow: 0 10px 35px rgba(255, 122, 89, 0.8);
    }
}

@keyframes shimmer {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-100%);
    }

    50% {
        opacity: 1;
        transform: translateX(100%);
    }
}

@keyframes textBounce {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.mh-total-value {
    text-align: center;
    padding: 30px;
    background-color: white;
    border-radius: 15px;
}

.mh-total-value p {
    font-size: 24px;
    color: #2c3e50;
    margin: 10px 0;
}

.mh-strike {
    text-decoration: line-through;
    color: #999;
}

.mh-free-tag {
    font-size: 28px;
    font-weight: 700;
}

.mh-free-tag span:not(.mh-free-flash) {
    color: #FF7A59;

}

.mh-free-amount {
    font-weight: 800;
}

.mh-free-flash {
    display: inline-block;
    font-weight: 800;
    font-size: 1.2em;
    color: #b03212 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0 8px;
    position: relative;
    animation: textBounce 1.5s ease-in-out infinite;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 10px #FFD700,
        0 0 18px #FF7A59;
    z-index: 2;
}

@keyframes freeGlow {

    0%,
    100% {
        text-shadow:
            0 2px 8px #ffd700cc,
            0 0 2px #ff7a59cc,
            0 0 1px #fff;
    }

    50% {
        text-shadow:
            0 4px 16px #ffd700ee,
            0 0 6px #ff7a59cc,
            0 0 2px #fff;
    }
}

@keyframes freeShine {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .mh-free-flash {
        animation: none;
        color: #fff !important;
        text-shadow: 0 1px 4px #FFD700;
    }
}

/* Form Section */
.mh-form-section {
    padding: 0px 20px;
    background-color: #fff;
}

.mh-form-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.mh-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.mh-form-content {
    padding: 20px 0;
}

.mh-form-title {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.mh-form-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.mh-form-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mh-form-benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #555;
}

.mh-form-benefit i {
    color: #ffffff;
    background-color: #FF7A59;
    font-size: 16px;
    font-weight: 900;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.mh-form-container {
    background-color: #FFF2ED;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.mh-enrollment-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mh-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mh-form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
}

.mh-form-group input,
.mh-form-group textarea {
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: inherit;
}

.mh-form-group input:focus,
.mh-form-group textarea:focus {
    outline: none;
    border-color: #FF7A59;
}

.mh-form-group input.error {
    border-color: #dc3545;
}

.mh-error-text {
    color: #dc3545;
    font-size: 13px;
    margin-top: 5px;
}

.mh-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mh-submit-btn {
    background-color: #FF7A59;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background-color 0.3s, transform 0.2s;
    margin-top: 10px;
}

.mh-submit-btn:hover {
    background-color: #ff6640;
    transform: translateY(-2px);
}

.mh-submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
    transform: none;
}

.mh-submit-btn-primary {
    background: linear-gradient(135deg, #28a745, #218838);
}

.mh-submit-btn-primary:hover {
    background: linear-gradient(135deg, #218838, #1e7e34);
}

.mh-selected-slot-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 2px solid #28a745;
    border-radius: 8px;
    margin-top: 10px;
}

.mh-selected-slot-info i {
    color: #28a745;
    font-size: 24px;
    flex-shrink: 0;
}

.mh-selected-slot-info div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mh-selected-slot-info strong {
    font-size: 14px;
    color: #155724;
}

.mh-selected-slot-info span {
    font-size: 16px;
    font-weight: 600;
    color: #28a745;
}

/* Modal Styles */
.mh-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.mh-modal-content {
    background: white;
    border-radius: 15px;
    width: 800px;
    max-width: 90vw;
    height: 600px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: slideUp 0.3s ease-out;
    position: relative;
}

@keyframes slideUp {
    from {
        transform: translateY(50px) scale(0.95);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.mh-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 30px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #FFE5DC, #FFF2ED);
    border-radius: 15px 15px 0 0;
    flex-shrink: 0;
}

.mh-modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

.mh-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s;
    flex-shrink: 0;
}

.mh-modal-close:hover {
    background-color: #FF7A59;
    color: white;
    transform: rotate(90deg);
}

.mh-modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
    min-height: 0;
}

.mh-modal-error {
    background-color: #fff5f5;
    border: 1px solid #feb2b2;
    border-radius: 8px;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c53030;
    font-size: 14px;
    font-weight: 500;
}

.mh-modal-error i {
    font-size: 18px;
    flex-shrink: 0;
}

.mh-modal-error span {
    flex: 1;
}

.mh-modal-body::-webkit-scrollbar {
    width: 8px;
}

.mh-modal-body::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.mh-modal-body::-webkit-scrollbar-thumb {
    background: #FF7A59;
    border-radius: 4px;
}

.mh-modal-body::-webkit-scrollbar-thumb:hover {
    background: #ff6640;
}

.mh-modal-footer {
    padding: 20px 30px;
    border-top: 2px solid #f0f0f0;
    background: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mh-modal-confirm-btn {
    background: #ff7a59;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(255, 122, 89, 0.3);
}

.mh-modal-confirm-btn:hover {
    background: #ff6640;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 89, 0.4);
}

.mh-modal-confirm-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.mh-form-note {
    font-size: 13px;
    color: #999;
    text-align: center;
    margin-top: 10px;
}

.mh-schedule-summary {
    margin-top: 18px;
    font-size: 15px;
    color: #2d3450;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mh-schedule-summary span {
    font-weight: 600;
    color: #ff7a59;
}

.mh-form-status {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    color: #fff;
    text-align: center;
}

.mh-form-status.is-success {
    background: linear-gradient(135deg, #1fb05d, #0c8d4d);
}

.mh-form-status.is-error {
    background: linear-gradient(135deg, #ef4e4e, #c43a3a);
}

/* Testimonials Section */
.mh-testimonials-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.mh-testimonials-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.mh-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mh-testimonial-card {
    background-color: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.mh-testimonial-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.mh-testimonial-rating i {
    color: #FFD700;
    font-size: 18px;
}

.mh-testimonial-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.mh-testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.mh-testimonial-author strong {
    color: #2c3e50;
    font-size: 16px;
}

.mh-testimonial-author span {
    color: #999;
    font-size: 14px;
}

/* Final CTA Section */
.mh-final-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #FF7A59 0%, #ff6640 100%);
    text-align: center;
}

.mh-final-cta-section .container {
    max-width: 800px;
    margin: 0 auto;
}

.mh-final-cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.mh-final-cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.mh-cta-btn {
    display: inline-block;
    background-color: white;
    color: #FF7A59;
    padding: 18px 45px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.mh-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsive Styles */
@media (max-width: 991px) {
    .mh-hero-section .container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mh-hero-title {
        font-size: 42px;
    }

    .mh-hero-subtitle {
        font-size: 24px;
    }

    .mh-why-grid {
        grid-template-columns: 1fr;
    }

    .mh-offer-grid {
        grid-template-columns: 1fr;
    }

    .mh-form-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mh-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .mh-section-title {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .mh-hero-section {
        padding: 40px 15px;
    }

    .mh-hero-title {
        font-size: 36px;
    }

    .mh-hero-subtitle {
        font-size: 20px;
    }

    .mh-hero-description {
        font-size: 16px;
    }

    .mh-hero-features {
        flex-direction: column;
        gap: 15px;
    }

    .mh-why-section,
    .mh-offer-section,
    .mh-testimonials-section,
    .mh-final-cta-section {
        padding: 50px 15px;
    }

    .mh-form-section {
        padding: 0px 15px;
    }

    .mh-section-title {
        font-size: 32px;
    }

    .mh-section-subtitle {
        font-size: 16px;
    }

    .mh-why-card,
    .mh-offer-card {
        padding: 30px 20px;
    }

    .mh-form-container {
        padding: 25px 20px;
    }

    .mh-form-row {
        grid-template-columns: 1fr;
    }

    .mh-form-title {
        font-size: 30px;
    }

    .mh-final-cta-content h2 {
        font-size: 32px;
    }

    .mh-final-cta-content p {
        font-size: 18px;
    }

    .mh-submit-btn {
        width: 100%;
    }

    .mh-modal-overlay {
        padding: 10px;
    }

    .mh-modal-content {
        width: 95vw;
        height: 80vh;
        max-height: 90vh;
    }

    .mh-modal-header {
        padding: 20px;
    }

    .mh-modal-header h3 {
        font-size: 20px;
    }

    .mh-modal-body {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .mh-hero-title {
        font-size: 28px;
    }

    .mh-hero-subtitle {
        font-size: 18px;
    }

    .mh-section-title {
        font-size: 26px;
    }

    .mh-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .mh-form-container {
        padding: 20px 15px;
    }

    .mh-final-cta-content h2 {
        font-size: 26px;
    }

    .mh-final-cta-content p {
        font-size: 16px;
    }
}

/* SHIV-AI Modal Styles */
.shivai-modal-overlay {
    background: rgba(100, 100, 100, 0.7);
    backdrop-filter: blur(8px);
}

.shivai-modal-content {
    background: linear-gradient(135deg, #ffffff, #fff9f7);
    border: 3px solid #FF7A59;
    max-width: 600px;
    width: 90%;
    height: auto;
    max-height: 90vh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.shivai-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10;
    background: #FF7A59;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.shivai-modal-close:hover {
    background: #e66a49;
    transform: rotate(90deg) scale(1.1);
}

.shivai-modal-body {
    padding: 50px 40px 40px;
    text-align: center;
}

.shivai-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #FF7A59, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(255, 122, 89, 0.3);
    animation: pulse 2s infinite;
}

.shivai-icon i {
    font-size: 48px;
    color: white;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(255, 122, 89, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(255, 122, 89, 0.5);
    }
}

.shivai-title {
    font-size: 26px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
    line-height: 1.3;
}

.shivai-subtitle {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #FF7A59, #ff6b35);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.shivai-description {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.shivai-features {
    background: white;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.shivai-feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0f0f0;
}

.shivai-feature:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.shivai-feature i {
    font-size: 22px;
    color: #FF7A59;
    flex-shrink: 0;
    margin-top: 2px;
}

.shivai-feature span {
    font-size: 15px;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

.shivai-cta {
    margin-top: 35px;
}

.shivai-cta-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    border: none;
    cursor: pointer;
}

.shivai-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128C7E, #075E54);
}

.shivai-cta-btn i {
    font-size: 26px;
}

.shivai-offer-text {
    margin-top: 15px;
    font-size: 14px;
    color: #FF7A59;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive styles for SHIV-AI modal */
@media (max-width: 768px) {
    .shivai-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .shivai-modal-body {
        padding: 30px 20px 25px;
    }

    .shivai-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }

    .shivai-icon i {
        font-size: 35px;
    }

    .shivai-title {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .shivai-subtitle {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .shivai-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .shivai-features {
        padding: 18px;
        margin-bottom: 25px;
    }

    .shivai-feature {
        margin-bottom: 12px;
        padding-bottom: 12px;
    }

    .shivai-cta {
        margin-top: 25px;
    }

    .shivai-cta-btn {
        padding: 14px 30px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .shivai-modal-content {
        width: 98%;
        max-height: 98vh;
        border-width: 2px;
    }

    .shivai-modal-close {
        width: 35px;
        height: 35px;
        top: 10px;
        right: 10px;
        font-size: 18px;
    }

    .shivai-modal-body {
        padding: 25px 15px 20px;
    }

    .shivai-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }

    .shivai-icon i {
        font-size: 30px;
    }

    .shivai-title {
        font-size: 17px;
        margin-bottom: 8px;
    }

    .shivai-subtitle {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .shivai-description {
        font-size: 13px;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .shivai-features {
        padding: 15px;
        margin-bottom: 20px;
    }

    .shivai-feature {
        gap: 10px;
        margin-bottom: 10px;
        padding-bottom: 10px;
    }

    .shivai-feature i {
        font-size: 18px;
    }

    .shivai-feature span {
        font-size: 13px;
        line-height: 1.4;
    }

    .shivai-cta {
        margin-top: 20px;
    }

    .shivai-cta-btn {
        padding: 12px 25px;
        font-size: 14px;
        gap: 8px;
    }

    .shivai-cta-btn i {
        font-size: 22px;
    }

    .shivai-offer-text {
        margin-top: 10px;
        font-size: 12px;
    }
}

/* Success Container Styles */
.mh-success-container {
    background: linear-gradient(135deg, #ffffff, #f8fff9);
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.mh-success-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #FF7A59, #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    animation: successPulse 2s infinite;
    box-shadow: 0 15px 35px rgba(255, 122, 89, 0.3);
}

.mh-success-icon i {
    font-size: 60px;
    color: white;
}

@keyframes successPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 15px 35px rgba(255, 122, 89, 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 20px 45px rgba(255, 122, 89, 0.5);
    }
}

.mh-success-title {
    font-size: 32px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.3;
}

.mh-success-message {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.mh-success-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.mh-success-detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.mh-success-detail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.mh-success-detail-item i {
    font-size: 28px;
    color: #FF7A59;
    flex-shrink: 0;
}

.mh-success-detail-item span {
    font-size: 16px;
    color: #333;
    text-align: left;
    font-weight: 500;
}

.mh-success-detail-clickable {
    cursor: pointer;
}

.mh-success-detail-clickable:hover {
    background: linear-gradient(135deg, #fff9f7, #ffffff);
    border: 2px solid #FF7A59;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 122, 89, 0.2);
}

.mh-success-detail-clickable:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .mh-success-container {
        padding: 40px 30px;
    }

    .mh-success-icon {
        width: 100px;
        height: 100px;
    }

    .mh-success-icon i {
        font-size: 50px;
    }

    .mh-success-title {
        font-size: 26px;
    }

    .mh-success-message {
        font-size: 16px;
    }

    .mh-success-detail-item {
        padding: 15px;
    }

    .mh-success-detail-item i {
        font-size: 24px;
    }

    .mh-success-detail-item span {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .mh-success-container {
        padding: 30px 20px;
    }

    .mh-success-icon {
        width: 80px;
        height: 80px;
    }

    .mh-success-icon i {
        font-size: 40px;
    }

    .mh-success-title {
        font-size: 22px;
    }

    .mh-success-message {
        font-size: 15px;
    }

    .mh-success-detail-item {
        gap: 12px;
    }

    .mh-success-detail-item i {
        font-size: 22px;
    }

    .mh-success-detail-item span {
        font-size: 14px;
    }
}