/* ========================================
   MODAL SYSTEM
   ======================================== */

/* Modal Overlay Styles (compact version) */
.modal-overlay {
    background: rgba(0, 0, 0, 0.45);
    display: none;
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(37, 133, 228, 0.18);
    display: flex;
    flex-direction: column;
    max-width: 740px;
    width: 99vw;
    max-height: 90vh;
    margin: 0 auto;
    padding: 1.1rem 0.7rem 1rem 0.7rem;
    color: #fff;
    position: relative;
    animation: modalIn 0.22s cubic-bezier(.4, 0, .2, 1);
    overflow: hidden;
}

@keyframes modalIn {
    from {
        transform: translateY(40px) scale(0.98);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.7rem;
    padding-bottom: 0.2rem;
    border-bottom: 1px solid #f0f0f0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 700;
    color: #2585e4;
    letter-spacing: 0.01em;
}

.modal-close {
    background: none;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    margin: 0;
    padding: 0;
    font-size: 1.3rem;
    color: #888;
    transition: color 0.2s, background 0.2s;
    cursor: pointer;
}

.modal-close:hover,
.modal-close:focus {
    color: #fff;
    background: #2585e4;
    outline: none;
}

.modal-body {
    flex: 1 1 auto;
    padding: 0.1rem 0 0 0;
    max-height: calc(90vh - 2.2rem);
    overflow-y: auto;
}

/* ========================================
   HOME FORM STYLES
   ======================================== */

/* Form Section Headings */
.cta-modal .home-form{
    margin-bottom: 0px;
    max-width: 100%;
}
.home-form h5 {
    display: flex;
    align-items: center;
    margin: 0.7rem 0 0.4rem 0;
    font-size: 0.98rem;
    font-weight: 600;
    color: #2585e4;
    letter-spacing: 0.01em;
}

.title-number {
    background-color: #2585e4;
    border-radius: 50%;
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 0.5rem;
    margin-bottom: 0;
    padding: 2px 7px;
    font-size: 0.98rem;
    line-height: 20px;
    text-align: center;
    color: white;
}

.divider {
    width: 100%;
    margin: 0.7rem 0 0.8rem 0;
    border-top: 1px solid #e5e5e5;
}

/* Inputs and Controls */
.home-form .rsform-input-box,
.home-form .rsform-calendar-box {
    background-color: #f8fafc;
    border: 1.2px solid #d2d2d2;
    border-radius: 7px;
    box-shadow: none;
    width: 100%;
    height: 2rem;
    margin-right: 0;
    margin-bottom: 0.4rem;
    padding: 0.38rem 0.5rem;
    font-size: 0.97rem;
    color: #222;
    transition: border-color .22s, box-shadow .22s;
}

.home-form .rsform-input-box:focus,
.home-form .rsform-calendar-box:focus {
    background: #fff;
    border-color: #2585e4;
    box-shadow: 0 0 0 2px #e3f0fc;
    color: #222;
    outline: none;
}

.formControls {
    margin-bottom: 0.1rem;
}

/* Radio Buttons */
.home-form input[type="radio"] {
    width: 0;
    height: 0;
    margin: 0;
    appearance: none;
}

.home-form .rsform-radio+label {
    background: #f8fafc;
    border: 1.2px solid #dedede;
    border-radius: 7px;
    display: inline-block;
    margin: 0 6px 0 0;
    padding: 0.32rem 0.8rem;
    font-size: 0.97rem;
    font-weight: 600;
    color: #555;
    transition: 200ms;
    cursor: pointer;
}

.home-form .rsform-radio:checked+label {
    background: #2585e4;
    border: 1.2px solid #2585e4;
    color: #fff;
}

/* Calendar Button */
.btnCal.rsform-calendar-button.button.secondary {
    background: #f8fafc;
    border: 1.2px solid #2585e4;
    border-radius: 7px;
    height: 2rem;
    margin-left: 0.3rem;
    padding: 0 0.7rem;
    font-size: 0.97rem;
    font-weight: 600;
    color: #2585e4;
    transition: background 0.2s, color 0.2s;
}

.btnCal.rsform-calendar-button.button.secondary:hover {
    background: #2585e4;
    color: #fff;
}

/* School radio group as buttons */
.rsform-block-school .formControls {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
}

.rsform-block-school .rsform-radio+label {
    margin-bottom: 0.3rem;
}

/* Recaptcha box */
#rsform_13_page_0 .g-recaptcha {
    margin: 0.7rem 0 0.4rem 0;
}

/* Submit Button */
.home-form #submit {
    background: linear-gradient(135deg, #2585e4 0%, #1a6bb8 100%);
    border: none;
    border-radius: 1.3rem;
    box-shadow: 0 2px 8px rgba(37, 133, 228, 0.08);
    margin-top: 0.4rem;
    padding: 0.5rem 1.2rem;
    font-size: 0.97rem;
    font-weight: bold;
    color: white;
    transition: background 0.2s, box-shadow 0.2s;
}

.home-form #submit:hover,
.home-form #submit:focus {
    background: #1a6bb8;
    box-shadow: 0 4px 16px rgba(37, 133, 228, 0.13);
    outline: none;
}

/* Validation and Error */
.formValidation {
    margin-top: 0.07rem;
    font-size: 0.91rem;
    color: #e74c3c;
}

/* Privacy Policy link */
.home-form .privacy {
    font-size: 0.93rem;
    color: #999;
    text-decoration: underline;
    transition: color 0.2s;
}

.home-form .privacy:hover {
    color: #2585e4;
}

/* ========================================
   QUICK CONTACT FORM STYLES
   ======================================== */

.quick-contact-form {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: rgba(0,0,0,0.35) 0px 5px 15px;
    backdrop-filter: blur(10px);
    padding: 2.2rem 2.2rem;
    position: relative;
    overflow: hidden;
    transition: 200ms;
}

.quick-contact-form::before {
    background: linear-gradient(90deg, #2585e4, #7c3aed, #ec4899);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    content: '';
}

.form-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.quick-contact-form h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
}

.quick-contact-form p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    font-weight: 400;
    color: #6b7280;
    text-align: center;
}

.form-row {
    margin-bottom: 0.5rem;
}

.form-row-double {
    display: flex;
    gap: 0.8rem;
}
.quick-contact-form .rsform-type-textbox{
    width: 100%;
}
.quick-contact-form input {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    box-shadow: none;
    display: block;
    width: 100%;
    margin-bottom: 0.5rem;
    padding: 0.9rem 1.1rem;
    flex: 1;
    font-size: 0.95rem;
    font-weight: 400;
    color: #1f2937;
    transition: border 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.quick-contact-form input:focus {
    border: 1px solid rgba(37, 133, 228, 0.5);
    box-shadow: 0 0 0 3px rgba(37, 133, 228, 0.1);
}

.quick-contact-form input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.quick-submit-btn {
    background: #e63f87;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 0.8rem;
    padding: 0.9rem 1.5rem;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    transition: all 0.2s ease;
    cursor: pointer;
    
}

.quick-submit-btn:hover {
    background: #e63f87;
    box-shadow: 0 5px 15px rgb(230 63 135 / 30%);
    transform: translateY(-2px);
}

.form-guarantee {
    margin-top: 1rem;
    text-align: center;
}

.form-guarantee small {
    font-size: 0.75rem;
    line-height: 1.4;
    color: #9ca3af;
}

/* ========================================
   TRUST SECTION STYLES
   ======================================== */

.trust-section {
    padding: 2.5rem 0;
    text-align: center;
}

.trust-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.trust-section p {
    max-width: 600px;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
}

/* ========================================
   MODERN CTA BUTTON STYLES
   ======================================== */

.modern-cta {
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
    width: 280px;
    margin: 0 0.8rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.modern-cta:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    color: white;
    transform: translateY(-3px);
}

/* Primary CTA - More prominent */
.modern-cta.primary-cta {
    background: #ffffff;
    border: 2px solid #ffffff;
    margin: 0 1rem;
    padding: 1rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #2585e4;
}

.modern-cta.secondary {
    padding: 1rem 3rem;
}

.modern-cta.primary-cta:hover {
    background: #2585e4;
    color: #fff;
}

.modern-cta.secondary {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgb(255 255 255);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
}

.modern-cta.secondary:hover {
    background: white;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    color: #2585e4;
    transform: translateY(-3px) scale(1.02);
}

/* Enhanced CTA Effects */
.modern-cta::before {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.5s;
    content: '';
}

.modern-cta:hover::before {
    left: 100%;
}

.modern-cta:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px) scale(1.02);
}

.cta-row {
    display: flex;
    gap: 0.7rem;
    width: 100%;
    justify-content: center;
    margin-bottom: 3.5rem;
    margin-top: 20px;
}

.compact-cta {
    font-size: 1.2rem;
    padding: 1.2rem;
    font-weight: 600;
    border-radius: 100px;
    box-shadow: 0 2px 8px rgba(37, 133, 228, 0.08);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 0;
    flex: 1 1 0;
    justify-content: center;
    white-space: nowrap;
    transition: all 0.3s ease;
}
.compact-cta:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transform: translateY(-3px) scale(1.02);
}

.cta-button.primary.compact-cta {
    background: #e63f87;
    color: #fff;
    border: 2px solid #e63f87;
}

.cta-button.primary.compact-cta:hover {
    background: #fff;
    color: #e63f87;
}

.cta-button.secondary.compact-cta {
    background: #fff;
    color: #2585e4;
    border: 2px solid #2585e4;
}

.cta-button.secondary.compact-cta:hover {
    background: #2585e4;
    color: #fff;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

.testimonials-section h2 {
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 200;
    color: #2d3748;
    text-align: center;
    letter-spacing: -1px;
}

.testimonials-section p {
    max-width: 600px;
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
    font-weight: 300;
    color: #6c757d;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    border-left: 4px solid #2585e4;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 1.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
}
.testimonials-grid .testimonial-card:last-child{
    display: none;
}

.testimonial-content {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.7;
    color: #4a5568;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    background: linear-gradient(135deg, #2585e4, #1a6bb8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.testimonial-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
}

.testimonial-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1rem;
}

.star {
    font-size: 1.2rem;
    color: #ffd700;
}

/* ========================================
   MISCELLANEOUS STYLES
   ======================================== */

/* Showtime Section Adjustments */
#showtime-section .girl-img img {
    display: block;
    top: -16.5rem;
    width: 580px !important;
}

.under-st {
    left: auto !important;
    right: 0px !important;
    bottom: -50px !important;
}

.under-st p {
    font-size: 2.5rem;
}

.cta--band{
    padding: 0rem;
}

.showtime--fees {
    background: none;
    padding-top: 30px;
}

.cta--band .showtime--fees .grid-x {
    color: #ffffff;
}
.cta--band .showtime--fees .showtime--fees-price span{
    color: #fff !important;
}

/* Showtime Fees Button */
.showtime--fees .button {
    background: white;
    border: 2px solid #fff !important;
    border-radius: 30px;
    margin-top: 10px;
    padding: 15px 30px;
    font-weight: 800;
    color: #2585e4;
    text-decoration: none !important;
    transition: all 0.3s ease;
}

.showtime--fees .button:hover {
    background: #2585e4;
    color: #fff;
}

/* CTA Description */
.cta--description {
    color: #4a5568;
}

/* Homepage Container */
.homepage .site-content--container {
    padding-bottom: 1.5rem;
}

.site-content{
    padding-top: 100px !important;
}
.testimonials-section{
    margin-top: -80px !important;
}
.bottom-page-content{
    padding-top: 0px !important;
}
.fees-title{
    font-size: 2.25rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.cta--image{
    display: none;
}
.header--container .logo--container img{
    padding: 15px;
    width: 200px;
}
#showtime-section .girl-img img {
    display: none;
}
/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Mobile Responsive (max-width: 600px) */
@media (max-width: 600px) {
    .modal-container {
        max-width: 99vw;
        padding: 0.4rem 0.1rem 0.4rem 0.1rem;
    }

    .home-form h5 {
        font-size: 0.93rem;
    }

    .title-number {
        width: 20px;
        height: 20px;
        font-size: 0.93rem;
    }

    .home-form .rsform-input-box,
    .home-form .rsform-calendar-box {
        height: 1.7rem;
        padding: 0.3rem 0.3rem;
        font-size: 0.93rem;
    }

    .btnCal.rsform-calendar-button.button.secondary {
        height: 1.7rem;
        font-size: 0.93rem;
    }

    .home-form #submit {
        padding: 0.4rem 0.7rem;
        font-size: 0.93rem;
    }
    .cta-row{
        flex-direction: column;
    }
    .cta--description h1{
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    .cta--description h2{
        font-size: 1.5rem; 
    }
    .cta--description .showtime--fees{
        margin-bottom: 0px;
    }
    .cta--description .showtime--fees h4{
        font-size: 2rem;
    }
    .cta--description .showtime--fees .showtime--fees-type{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 2rem;
    }
    .cta--description .showtime--fees .showtime--fees-type h4{
        font-size: 1.5rem;
        width: 30%;
    }
    .form-row-double {
        flex-direction: column;
        gap: 0.8rem;
    }
}

/* Tablet Responsive (max-width: 768px) */
@media (max-width: 768px) {
    .quick-contact-form {
        max-width: 100%;
        margin-top: 1.5rem;
        padding: 1.5rem 1.2rem;
    }
    
    .quick-contact-form h3 {
        font-size: 1.3rem;
    }
}

/* Large Desktop (min-width: 90em) */
@media screen and (min-width: 40em) {
    #showtime-section {
        text-align: center;
        margin-top: -12rem;
    }
    #showtime-section .button, #showtime-section .hikabtn {
        margin-bottom: .1875rem;
        font-size: 1.8125rem;
        border: 1px solid transparent;
    }
    .header--container .logo--container{
        flex: 0 0 25%;
        max-width: 25%;
    }
    .header--container .logo--container img{
        width: 200px;
        height: auto;
    }
    .top-nav--wrapper {
        margin: -1rem -1rem 0rem;
    }
} 
@media screen and (min-width: 50em) {
    #showtime-section {
        margin-top: -12rem;
    }
    .header--container .logo--container img{
        width: 300px;
    }
    
} 
@media screen and (min-width: 60em) {
    #showtime-section {
        text-align: left;
    }
    #showtime-section .girl-img img {
        display: block;
    }
    .header--container .logo--container{
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    
}
@media screen and (min-width: 80em) {
    .testimonials-grid .testimonial-card:last-child{
        display: block;
    }
}
@media screen and (min-width: 90em) {
    #showtime-section {
        margin-top: -26rem;
    }
} 

/* ========================================
   MODAL FORM STYLES - MATCHING QUICK CONTACT FORM
   ======================================== */

/* Modal Container - Matching Quick Contact Form */
.cta-modal.reveal {
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    box-shadow: rgba(0,0,0,0.35) 0px 5px 15px;
    backdrop-filter: blur(10px);
    max-width: 850px;
    width: 95vw;
    max-height: 88vh;
    margin: 2rem auto;
    padding: 0;
    overflow: hidden;
    position: relative;
    transition: 200ms;
}

.cta-modal.reveal::before {
    background: linear-gradient(90deg, #2585e4, #7c3aed, #ec4899);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    content: '';
    z-index: 1;
}

/* Modal Header - Matching Quick Contact Form */
.cta-modal h3 {
    margin: 0;
    padding: 1.2rem 2.2rem 1rem 2.2rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #d1d5db;
    background: #f8fafc;
}

/* Form Container - Matching Quick Contact Form */
.cta-modal .home-form {
    padding: 0 2.2rem 2.2rem 2.2rem;
    background: transparent;
    max-height: calc(88vh - 140px);
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #2585e4 #f1f5f9;
}

.cta-modal .home-form::-webkit-scrollbar {
    width: 6px;
}

.cta-modal .home-form::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.cta-modal .home-form::-webkit-scrollbar-thumb {
    background: #2585e4;
    border-radius: 3px;
}

/* Section Headers - Matching Quick Contact Form Style */
.cta-modal .home-form h5 {
    display: flex;
    align-items: center;
    margin: 0.5rem 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    text-align: left;
    position: relative;
}

.cta-modal .title-number {
    background: #2585e4;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    margin: 0.5rem 0.8rem 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 2px 8px rgba(37, 133, 228, 0.3);
}

/* Dividers - Subtle */
.cta-modal .divider {
    width: 100%;
    margin: 1rem 0 0;
    border: none;
    height: 1px;
    background: #d1d5db;
}

/* Form Controls - Matching Quick Contact Form */
.cta-modal .formControls {
    margin-bottom: 0.5rem;
    position: relative;
}

/* Input Fields - Matching Quick Contact Form */
.cta-modal .home-form .rsform-input-box,
.cta-modal .home-form .rsform-calendar-box {
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    box-shadow: none;
    display: block;
    width: 100%;
    padding: 0.9rem 1.1rem;
    font-size: 0.95rem;
    font-weight: 400;
    color: #1f2937;
    transition: border 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    min-height: auto;
    height: 2.25rem;
}

.cta-modal .home-form .rsform-input-box:focus,
.cta-modal .home-form .rsform-calendar-box:focus {
    border: 1px solid rgba(37, 133, 228, 0.5);
    box-shadow: 0 0 0 3px rgba(37, 133, 228, 0.1);
    transform: none;
}

.cta-modal .home-form .rsform-input-box::placeholder,
.cta-modal .home-form .rsform-calendar-box::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

/* Calendar Button - Matching Quick Contact Form Style */
.cta-modal .btnCal.rsform-calendar-button.button.secondary {
    background: #2585e4;
    border: none;
    border-radius: 0px 6px 6px 0px !important;
    color: white;
    font-weight: 600;
    padding: 0.9rem 1.5rem;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.cta-modal .btnCal.rsform-calendar-button.button.secondary:hover {
    background: #2585e4;
    box-shadow: 0 5px 15px rgb(37 133 228 / 30%);
}

/* Radio Buttons - Card Style Matching Quick Contact Form */
.cta-modal .home-form input[type="radio"] {
    display: none;
}

.cta-modal .home-form .rsform-radio + label {
    display: inline-flex;
    align-items: center;
    padding: 0.3rem 1.1rem;
    margin: 0.25rem;
    background: #ffffff;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    color: #1f2937;
    font-weight: 400;
    cursor: pointer;
    transition: border 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
    min-width: 120px;
    justify-content: center;
    font-size: 0.95rem;
}

.cta-modal .home-form .rsform-radio + label::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2585e4;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: -1;
}

.cta-modal .home-form .rsform-radio:checked + label {
    border-color: #2585e4;
    background: #2585e4;
    color: white;
    box-shadow: 0 5px 15px rgb(37 133 228 / 30%);
    transform: translateY(-2px);
}

.cta-modal .home-form .rsform-radio + label:hover {
    border-color: #2585e4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgb(37 133 228 / 30%);
}

/* School Selection - Grid Layout */
.cta-modal .rsform-block-school .formControls {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.cta-modal .rsform-block-school .rsform-radio + label {
    width: auto;
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

/* Submit Button - Matching Quick Contact Form */
.cta-modal .home-form #submit {
    background: #e63f87;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    padding: 0.9rem 1.5rem;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: white;
    transition: all 0.2s ease;
    cursor: pointer;
    text-transform: none;
    letter-spacing: normal;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.cta-modal .home-form #submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.cta-modal .home-form #submit:hover {
    background: #e63f87;
    box-shadow: 0 5px 15px rgb(230 63 135 / 30%);
    transform: translateY(-2px);
}

.cta-modal .home-form #submit:hover::before {
    left: 100%;
}

.cta-modal .home-form #submit:active {
    transform: translateY(0);
}

/* Privacy Policy Link - Matching Quick Contact Form */
.cta-modal .home-form .privacy {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 0;
}

.cta-modal .home-form .privacy::before {
    content: '🔒';
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.cta-modal .home-form .privacy:hover {
    color: #2585e4;
    text-decoration: none;
}

/* Form Validation - Matching Quick Contact Form Style */
.cta-modal .formValidation {
    margin-top: 0.5rem;
}

.cta-modal .formValidation .formNoError {
    display: none;
}

.cta-modal .formValidation .formError {
    color: #dc2626;
    font-size: 0.9rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
    padding: 0.75rem;
    background: rgba(220, 38, 38, 0.05);
    border-radius: 6px;
    border-left: 3px solid #dc2626;
}

.cta-modal .formValidation .formError::before {
    content: '⚠️';
    margin-right: 0.75rem;
    font-size: 1rem;
}

/* reCAPTCHA Styling - Matching Quick Contact Form */
.cta-modal #rsform_13_page_0 .g-recaptcha {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    padding: 1rem;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #d1d5db;
}

/* Close Button - Floating */
.cta-modal .close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(37, 133, 228, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.cta-modal .close-button span{
    display: block;
    width: 25px;
    height: 25px;
}
.cta-modal .close-button:hover {
    background: #2585e4;
    color: white;
    transform: rotate(90deg);
    border-color: #2585e4;
}

.cta-modal .rsform-type-recaptchav2{
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.cta-modal .rsform-block-privacy-policy {
    display: flex;
    justify-content: center;
}

.cta-modal .input-group{
    margin-bottom: 0;
}
.cta-modal .rsform-block-child-gender .formControls {
    display: inline-grid;
    grid-template-columns: auto auto;
    gap: 0.5rem;
}
.cta-modal .home-form  .rsform-block-child-gender .rsform-radio + label{
    margin: 0px;
    padding: 0.25rem 1.1rem;
}
.cta-modal .home-form #child_gender1:checked+label{
    background-color: #ff7089;
    border: 1px solid #ff7089;
}
.location--intro{
    background-image: url('/images/low_res.png');
}
.showtime--banner .grid-container{
    border-top: 1px solid #c9ac8c;
    padding-top: 30px !important;
}
.location--intro .showtime--banner{
    background: none;
}
.content--item.fees-alt{
    background-color: #2585e4;
    padding-top: 1rem;
    margin-bottom: -5rem;
    color: #fff;
}
.showtime--fees h4.fees-title{
    font-size: 2.25rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.showtime--fees .button{
    background: #fff;
    color: #e63f87;
    border: 2px solid #e63f87 !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 20px 30px;
    transition: all 0.3s ease;
}
.showtime--fees .button i{
    margin-right: 5px;
    transition: all 0.3s ease;
}
#g-recaptcha-135{
    display: flex;
    align-items: center;
    justify-content: center;
}
/* Responsive Design - Matching Quick Contact Form */
@media (max-width: 768px) {
    .cta-modal.reveal {
        width: 98vw;
        margin: 1rem auto;
        border-radius: 12px;
    }
    
    .cta-modal h3 {
        padding: 1.5rem 1.5rem 0.5rem 1.5rem;
        font-size: 1.3rem;
    }
    
    .cta-modal .home-form {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .cta-modal .home-form h5 {
        font-size: 1rem;
        margin: 1rem 0 0.5rem 0;
    }
    
    .cta-modal .title-number {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .cta-modal .home-form #submit {
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .cta-modal .home-form {
        padding: 0 1rem 1rem 1rem;
    }
    
    .cta-modal .home-form .rsform-radio + label {
        min-width: 100%;
        margin: 0.25rem 0;
        padding: 0.9rem 1.1rem;
    }
    
    .cta-modal .home-form .rsform-input-box,
    .cta-modal .home-form .rsform-calendar-box {
        padding: 0.9rem 1.1rem;
        font-size: 0.95rem;
    }
}

/* Loading State - Matching Quick Contact Form */
.cta-modal .home-form.loading #submit {
    background: #9ca3af;
    cursor: not-allowed;
    pointer-events: none;
}

.cta-modal .home-form.loading #submit::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Success State - Matching Quick Contact Form */
.cta-modal .home-form.success #submit {
    background: #e63f87;
}

.cta-modal .home-form.success #submit::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: bold;
}

/* Error State - Matching Quick Contact Form */
.cta-modal .home-form.error #submit {
    background: #dc2626;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-4px); }
    75% { transform: translateX(4px); }
} 