/* ========================================
   FONT IMPORTS
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* ========================================
   FOUNDATION XLARGE GRID CLASSES
   ======================================== */

/* XLarge Grid Container */
.grid-container.xlarge {
    max-width: 1200px;
}

/* XLarge Grid System - Following Foundation's exact structure */
@media screen and (min-width: 1200px) {
    .grid-margin-x > .xlarge-auto { width: auto; }
    .grid-margin-x > .xlarge-shrink { width: auto; }
    .grid-margin-x > .xlarge-1 { width: calc(8.33333% - 1.875rem); }
    .grid-margin-x > .xlarge-2 { width: calc(16.66667% - 1.875rem); }
    .grid-margin-x > .xlarge-3 { width: calc(25% - 1.875rem); }
    .grid-margin-x > .xlarge-4 { width: calc(33.33333% - 1.875rem); }
    .grid-margin-x > .xlarge-5 { width: calc(41.66667% - 1.875rem); }
    .grid-margin-x > .xlarge-6 { width: calc(50% - 1.875rem); }
    .grid-margin-x > .xlarge-7 { width: calc(58.33333% - 1.875rem); }
    .grid-margin-x > .xlarge-8 { width: calc(66.66667% - 1.875rem); }
    .grid-margin-x > .xlarge-9 { width: calc(75% - 1.875rem); }
    .grid-margin-x > .xlarge-10 { width: calc(83.33333% - 1.875rem); }
    .grid-margin-x > .xlarge-11 { width: calc(91.66667% - 1.875rem); }
    .grid-margin-x > .xlarge-12 { width: calc(100% - 1.875rem); }
    
    /* XLarge Offsets */
    .cell.xlarge-offset-1 { margin-left: 8.33333%; }
    .cell.xlarge-offset-2 { margin-left: 16.66667%; }
    .cell.xlarge-offset-3 { margin-left: 25%; }
    .cell.xlarge-offset-4 { margin-left: 33.33333%; }
    .cell.xlarge-offset-5 { margin-left: 41.66667%; }
    .cell.xlarge-offset-6 { margin-left: 50%; }
    .cell.xlarge-offset-7 { margin-left: 58.33333%; }
    .cell.xlarge-offset-8 { margin-left: 66.66667%; }
    .cell.xlarge-offset-9 { margin-left: 75%; }
    .cell.xlarge-offset-10 { margin-left: 83.33333%; }
    .cell.xlarge-offset-11 { margin-left: 91.66667%; }
    
    /* XLarge Visibility Classes */
    .show-for-xlarge { display: block !important; }
    .hide-for-xlarge { display: none !important; }
    .show-for-xlarge-up { display: block !important; }
    .hide-for-xlarge-up { display: none !important; }
    .show-for-xlarge-only { display: block !important; }
    .hide-for-xlarge-only { display: none !important; }
    
    /* XLarge Alignment */
    .grid-x.xlarge-align-left { justify-content: flex-start; }
    .grid-x.xlarge-align-center { justify-content: center; }
    .grid-x.xlarge-align-right { justify-content: flex-end; }
    .grid-x.xlarge-align-justify { justify-content: space-between; }
    .grid-x.xlarge-align-spaced { justify-content: space-around; }
    .grid-x.xlarge-align-top { align-items: flex-start; }
    .grid-x.xlarge-align-middle { align-items: center; }
    .grid-x.xlarge-align-bottom { align-items: flex-end; }
    .grid-x.xlarge-align-stretch { align-items: stretch; }
}

/* XXLarge Grid System - Following Foundation's exact structure */
@media screen and (min-width: 1440px) {
    .grid-margin-x > .xxlarge-auto { width: auto; }
    .grid-margin-x > .xxlarge-shrink { width: auto; }
    .grid-margin-x > .xxlarge-1 { width: calc(8.33333% - 1.875rem); }
    .grid-margin-x > .xxlarge-2 { width: calc(16.66667% - 1.875rem); }
    .grid-margin-x > .xxlarge-3 { width: calc(25% - 1.875rem); }
    .grid-margin-x > .xxlarge-4 { width: calc(33.33333% - 1.875rem); }
    .grid-margin-x > .xxlarge-5 { width: calc(41.66667% - 1.875rem); }
    .grid-margin-x > .xxlarge-6 { width: calc(50% - 1.875rem); }
    .grid-margin-x > .xxlarge-7 { width: calc(58.33333% - 1.875rem); }
    .grid-margin-x > .xxlarge-8 { width: calc(66.66667% - 1.875rem); }
    .grid-margin-x > .xxlarge-9 { width: calc(75% - 1.875rem); }
    .grid-margin-x > .xxlarge-10 { width: calc(83.33333% - 1.875rem); }
    .grid-margin-x > .xxlarge-11 { width: calc(91.66667% - 1.875rem); }
    .grid-margin-x > .xxlarge-12 { width: calc(100% - 1.875rem); }
    
    /* XXLarge Offsets */
    .cell.xxlarge-offset-1 { margin-left: 8.33333%; }
    .cell.xxlarge-offset-2 { margin-left: 16.66667%; }
    .cell.xxlarge-offset-3 { margin-left: 25%; }
    .cell.xxlarge-offset-4 { margin-left: 33.33333%; }
    .cell.xxlarge-offset-5 { margin-left: 41.66667%; }
    .cell.xxlarge-offset-6 { margin-left: 50%; }
    .cell.xxlarge-offset-7 { margin-left: 58.33333%; }
    .cell.xxlarge-offset-8 { margin-left: 66.66667%; }
    .cell.xxlarge-offset-9 { margin-left: 75%; }
    .cell.xxlarge-offset-10 { margin-left: 83.33333%; }
    .cell.xxlarge-offset-11 { margin-left: 91.66667%; }
    
    /* XXLarge Visibility Classes */
    .show-for-xxlarge { display: block !important; }
    .hide-for-xxlarge { display: none !important; }
    .show-for-xxlarge-up { display: block !important; }
    .hide-for-xxlarge-up { display: none !important; }
    .show-for-xxlarge-only { display: block !important; }
    .hide-for-xxlarge-only { display: none !important; }
    
    /* XXLarge Alignment */
    .grid-x.xxlarge-align-left { justify-content: flex-start; }
    .grid-x.xxlarge-align-center { justify-content: center; }
    .grid-x.xxlarge-align-right { justify-content: flex-end; }
    .grid-x.xxlarge-align-justify { justify-content: space-between; }
    .grid-x.xxlarge-align-spaced { justify-content: space-around; }
    .grid-x.xxlarge-align-top { align-items: flex-start; }
    .grid-x.xxlarge-align-middle { align-items: center; }
    .grid-x.xxlarge-align-bottom { align-items: flex-end; }
    .grid-x.xxlarge-align-stretch { align-items: stretch; }
}

/* Hide xlarge/xxlarge classes on smaller screens */
@media screen and (max-width: 1199px) {
    .show-for-xlarge,
    .show-for-xlarge-up,
    .show-for-xlarge-only {
        display: none !important;
    }
}

@media screen and (max-width: 1439px) {
    .show-for-xxlarge,
    .show-for-xxlarge-up,
    .show-for-xxlarge-only {
        display: none !important;
    }
}

.nav-menu{
    background: #161c25;
}
.top-nav--wrapper{
    background: #161c25;
}

/* ========================================
   FOUNDATION STICKY HEADER STYLES
   ======================================== */

/* Sticky container for Foundation Sticky */
.sticky-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
}

/* Base sticky header styles */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999;
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 75%, rgba(0,0,0,0) 100%);
    transition: all 0.3s ease;
}

/* When header becomes sticky (Foundation adds .is-stuck class) */
.site-header.is-stuck {
    position: fixed;
    z-index: 999;
    width: 100%;
    background: rgba(22, 28, 37, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    padding-bottom: 0;
}

/* When stuck at top */
.site-header.is-stuck.is-at-top {
    top: 0;
}

/* Header container adjustments when sticky */
.site-header .header--container {
    padding: 1rem 0;
    transition: padding 0.3s ease;
}

.site-header.is-stuck .header--container {
    padding: 0.5rem 0;
}

/* Logo adjustments for sticky state */
.site-header.is-stuck .header--container .logo--container img {
    width: 180px;
    transition: width 0.3s ease;
}

@media screen and (min-width: 1024px) {
    .site-header.is-stuck .header--container .logo--container img {
        width: 200px;
    }
}

/* Navigation adjustments */
.site-header .navigation--container {
    transition: all 0.3s ease;
}

/* Mobile menu button adjustments */
.site-header .nav-menu-icon button {
    background: transparent;
    color: #c7ad8a;
    padding: 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}


.js-off-canvas-overlay{
    background: #161c2578;
}
.grid-container{
    padding: 0 1rem;
}
.location--intro{
    padding-top: 8rem;
}
.colour-gold{
    color: #c7ad8a;
}
.colour-white{
    color: #fff8f0;
}
.location--intro .showtime--banner{
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.location--intro .showtime--banner h3{
    color: #fff8f0;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 2rem;
    font-size: 2rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.location--intro .showtime--banner-right .showtime--banner-item{
    color: #fff8f0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.location--intro .showtime--banner-item h4{
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}
.location--intro .showtime--banner-item h4 span{
    display: block;
    color: #c7ad8a;
    font-size: 1.2rem;
    text-transform: capitalize;
    font-weight: 500;
}
.showtime--banner p{
    margin-bottom: 0px;
    font-size: 1.1rem;
    line-height: 1.5rem;
    font-weight: 500;
}
.showtime--banner-item p{
    font-size: 1.2rem;
    font-weight: 700;
}
.showtime--banner-right{
    flex-wrap: wrap;
    margin-top: 2rem;
}
.location--term-title{
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0;
}
.directions-btn{
    border: 4px solid #fff8f0;
    display: inline-block;
    background: transparent;
    padding: 0.5rem 2rem;
    color: #fff8f0;
    font-weight: 700;
    border-radius: 5px;
    font-size: 1.2rem;
    text-transform: capitalize;
    font-weight: 700;
    margin-top: 1.5rem;
    transition: 0.2s ease-in;
    text-shadow: none;
}
.directions-btn:hover{
    color: #fff8f0;
    background: #161c25;
}
.directions-btn:focus{
    color: #fff8f0;
    background: #161c25;
}
.school-cta{
    background: #fff8f0;
    border: 4px solid #fff8f0;
    color: #161c25;
    border-radius: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    padding: 0.7rem 1rem;
    width: 100%;
    transition: 0.2s ease-in;
    text-shadow: none;
}
.school-cta:hover{
    color: #fff8f0;
    background-color: #161c25;
}
.school-cta .fa{
    font-size: 2rem;
    margin-right: 0.3rem;
    transition: 0.2s ease-in;
}
/* ========================================
   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: #161c25;
    letter-spacing: 0.01em;
}

.title-number {
    background-color: #161c25;
    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 #e8e8e8;
}

/* Inputs and Controls */
.home-form .rsform-input-box,
.home-form .rsform-calendar-box {
    background-color: #ffffff;
    border: 1.2px solid #e0e0e0;
    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: #161c25;
    transition: border-color .22s, box-shadow .22s;
}

.home-form .rsform-input-box:focus,
.home-form .rsform-calendar-box:focus {
    background: #ffffff;
    border-color: #c7ad8a;
    box-shadow: 0 0 0 2px rgba(199, 173, 138, 0.15);
    color: #161c25;
    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: #ffffff;
    border: 1.2px solid #e0e0e0;
    border-radius: 7px;
    display: inline-block;
    margin: 0 6px 0 0;
    padding: 0.32rem 0.8rem;
    font-size: 0.97rem;
    font-weight: 600;
    color: #161c25;
    transition: 200ms;
    cursor: pointer;
}

.home-form .rsform-radio:checked+label {
    background: #c7ad8a;
    border: 1.2px solid #c7ad8a;
    color: #ffffff;
}

/* Calendar Button */
.btnCal.rsform-calendar-button.button.secondary {
    background: #ffffff;
    border: 1.2px solid #c7ad8a;
    border-radius: 7px;
    height: 2rem;
    margin-left: 0.3rem;
    padding: 0 0.7rem;
    font-size: 0.97rem;
    font-weight: 600;
    color: #c7ad8a;
    transition: background 0.2s, color 0.2s;
}

.btnCal.rsform-calendar-button.button.secondary:hover {
    background: #c7ad8a;
    color: #ffffff;
}

/* 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, #161c25 0%, #1a2330 100%);
    border: none;
    border-radius: 1.3rem;
    box-shadow: 0 2px 8px rgba(22, 28, 37, 0.15);
    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: #1a2330;
    box-shadow: 0 4px 16px rgba(22, 28, 37, 0.25);
    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: #c7ad8a;
}
/* ========================================
   HOME PAGE STYLES
   ======================================== */
.showtime-promo-block{
    background: #fff;
    padding: 3rem 1rem;
}
.showtime-promo-block .showtime-title{
    font-size: 4rem;
    font-weight: 700;
    color: #161c25;
    margin-bottom: 1rem;
}
.showtime-promo-block .showtime-subtitle{
    display: flex;
    font-size: 1.4rem;
    font-weight: 700;
    color: #c7ad8a;
}
.showtime-promo-block .showtime-subtitle i{
    display: inline;
    font-size: 2rem;
    color: #8a7652;
    margin-left: -2.5rem;
    margin-right: 0.7rem;
}
.showtime-promo-block p{
    font-size: 1.2rem;
    font-weight: 400;
    color: #161c25;
    margin-bottom: 1.5rem;
}
.showtime-promo-block .showtime-button-book{
    background: #fff;
    border: 4px solid #262e43 !important;
    border-radius: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: block;
    color: #262e43;
    font-size: 1.4rem;
    font-weight: 800;
    padding: 1rem;
    margin-top: 10px;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
    width: 270px;
}
.showtime-promo-block .showtime-button-book:hover{
    background: #262e43;
    color: #fff;
    box-shadow: 0 5px 15px rgb(37 133 228 / 30%);
    transform: translateY(-2px);
}
.showtime-promo-block .showtime-button-book i{
    transition: all 0.3s ease;
}
.showtime-promo-block .showtime-button-call{
    background: #262e43;
    border: 4px solid #c9ac8c !important;
    border-radius: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: block;
    color: #c9ac8c;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 1rem;
    margin-top: 10px;
    text-align: center;
    text-decoration: none !important;
    transition: all 0.3s ease;
    width: 270px;
}
.showtime-promo-block .showtime-button-call:hover{
    background: #c9ac8c;
    color: #161c25;
    box-shadow: 0 5px 15px rgb(37 133 228 / 30%);
    transform: translateY(-2px);
}
.showtime-promo-block .showtime-button-call i{
    transition: all 0.3s ease;
}
.showtime-promo-block .showtime-image-block img{
    max-width: 120%;
    width: 120%;
}
.showtime-cta-buttons{
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    margin-top: 2rem;
}
.video-hero-block {
    position: relative;
    width: 100vw;
    height: 60vh;
    min-height: 900px;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.video-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(22 28 37 / 30%);
    z-index: 2;
}

.video-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    text-align: center;
    width: 100%;
    max-width: 1200px; /* Optional: limit content width */
}

.video-hero-title {
    color: #fff8f0;
    font-size: 5.5rem;
    line-height: 5.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-hero-subtitle {
    color: #fff8f0;
    font-size: 2rem;
    margin: 3rem 0;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.video-hero-button {
    background: #161c25;
    border: 5px solid #fff8f0;
    border-radius: 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    display: inline-block;
    color: #fff8f0;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 2rem 3rem;
    transition: all 0.3s ease;
}

.video-hero-button:hover {
    background-color: #fff8f0;
    color: #161c25;
}

/* Responsive adjustments */
@media screen and (max-width: 39.9375em) {
    .video-hero-title {
        font-size: 2.5rem;
        line-height: 3rem;
    }
    
    .video-hero-subtitle {
        font-size: 1rem;
        margin: 1.5rem 0;
    }
    .video-hero-button{
        font-size: 1.2rem;
        padding: 1.3rem 2rem;
    }
    .video-hero-block{
        min-height: auto;
        height: 90vh;
    }
}
/* ========================================
   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;
}
.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 {
    background-image: url('/images/stage_bg.png');
    background-size: cover;
    background-position: 0px -50px;
    padding: 4rem 0;
    text-align: center;
}

.trust-section h2 {
    font-size: 3rem;
    font-weight: bold;
    color: #c7ad8a;
    margin-bottom: 3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.trust-section p {
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff8f0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* ========================================
   MODERN CTA BUTTON STYLES
   ======================================== */

.modern-cta {
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: inline-block;
    width: 300px;
    margin: 0 0.8rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}
.modern-cta .fa{
    transition: all 0.3s ease;
}

.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: #fff8f0;
    border: 4px solid #fff8f0;
    margin: 0 1rem;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: #161c25;
}

.modern-cta.secondary {
    padding: 1rem 2.5rem;
}

.modern-cta.primary-cta:hover {
    background: #161c25;
    color: #fff8f0;
}

.modern-cta.secondary {
    background: #262e43;
    border: 4px solid #fff8f0;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: #fff8f0;
}

.modern-cta.secondary:hover {
    background: #fff8f0;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    color: #161c25;
    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;
}
/* ========================================
   School Section
   ======================================== */
/* .school-top-description{
    background: #161c25;
    padding: 3rem 0;
    color: #fff8f0;
} */
.school-top-description h3{
    font-size: 1.8rem;
    text-transform: uppercase;
    font-weight: 800;
    line-height: 2rem;
    margin-bottom: 1rem;
}
.school-top-description h3 span{
    display: block;
    color: #c7ad8a;
    font-weight: 700;
}
.top-description-left img{
    object-fit: cover;
    height: 100%;
}
.top-description-right p {
    margin-bottom: 1.5rem;
    font-size: 1.35rem;
    font-weight: 400;
    line-height: 1.9rem;
}
.top-description-right p:last-child {
    margin-bottom: 0;
}
.school-confidence{
    background: #f7f8fa;
    padding: 3rem 0;
    color: #161c25;
}
.school-confidence h3{
    font-size: 1.75rem;
    color: #161c25;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2rem;
    margin-top: 0;

}
.confidence-left p{
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.9rem;
}
.confidence-left p:last-child{
    margin-bottom: 0;
}
.confidence-images{
    margin-bottom: 2.5rem;
}

/* ========================================
   CONFIDENCE CAROUSEL STYLES
   ======================================== */

.confidence-carousel {
    margin-bottom: 2.5rem;
    position: relative;
}

.confidence-carousel .carousel-slide {
    position: relative;
    overflow: hidden;
    border-radius: 0px;
}

.confidence-carousel .carousel-slide {
    padding: 0 10px;
}

.confidence-carousel .carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 0px;
}

.confidence-carousel .carousel-slide:hover img {
    transform: scale(1.05);
}

/* Slick Dots Styling */
.confidence-carousel .slick-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.confidence-carousel .slick-dots li {
    margin: 0;
}

.confidence-carousel .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: transparent;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.confidence-carousel .slick-dots li.slick-active button,
.confidence-carousel .slick-dots li button:hover {
    background: #c7ad8a;
    border-color: #c7ad8a;
}

/* Slick Arrows Styling */
.confidence-carousel .slick-prev,
.confidence-carousel .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(22, 28, 37, 0.8);
    border: 2px solid #c7ad8a;
    color: #c7ad8a;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confidence-carousel .slick-prev:hover,
.confidence-carousel .slick-next:hover {
    background: #c7ad8a;
    color: #161c25;
}

.confidence-carousel .slick-prev {
    left: 20px;
}

.confidence-carousel .slick-next {
    right: 20px;
}

.confidence-carousel .slick-prev:before,
.confidence-carousel .slick-next:before {
    display: none;
}

/* Tablet and Desktop (3 slides) */
@media (min-width: 769px) {
    .confidence-carousel .carousel-slide {
        padding: 0 15px;
    }
}

/* Mobile Responsive (1 slide) */
@media (max-width: 768px) {
    .confidence-carousel .carousel-slide {
        padding: 0 5px;
    }
    
    .confidence-carousel .slick-prev,
    .confidence-carousel .slick-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .confidence-carousel .slick-prev {
        left: 10px;
    }
    
    .confidence-carousel .slick-next {
        right: 10px;
    }
    
    .confidence-carousel .slick-dots {
        bottom: 15px;
    }
    
    .confidence-carousel .slick-dots li button {
        width: 10px;
        height: 10px;
    }
}
.confidence-right{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.confidence-right p{
    text-align: left;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.8rem;
    padding: 0 0.7rem;
    color: #1d2346;
}
.confidence-btn{
    background: #1d2346;
    border-radius: 40px;
    color: #fff8f0;
    font-size: 1.3rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    border: 4px solid #1d2346;
    padding: 1rem 2rem;
    margin: 0 1.5rem;
    transition: all 0.3s ease;
}
.confidence-btn:hover{
    background: #eaeaea;
    color: #1d2346;
}
.supported-by{
    background: #eaeaea;
    padding: 3rem 0;
}
.supported-by h2{
    color: #161c25;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}
.supported-by .teacher-card{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.supported-by .teacher-card h3{
    font-size: 2rem;
    font-weight: 700;
    color: #161c25;
    text-align: center;
    margin-bottom: 1rem;
}
.supported-by .teacher-card p{
    font-weight: 500;
    font-size: 1.3rem;
    line-height: 1.5rem;
    max-width: 260px;
    text-align: center;
}
.supported-by .teacher-card img{
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    height: 150px;
    width: 150px;
}
.school-article{
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
}
.school-left{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.school-left h2{
    color: #fff8f0;
    font-size: 2.7rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.school-left h2 span{
    display: block;
    color: #c7ad8a;
    font-weight: 700;
    font-size: 2.7rem;
}
.school-right{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.school-right h4{
    color: #161c25;     
    text-align: left;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.school-right p{
    color: #161c25;      
    font-size: 1.1rem;
    font-weight: 400;
}
.school-left span.showtime--title{
    display: block;
    font-size: 1.6rem;
    line-height: 1rem;
    margin-top: 1.2rem;
    font-weight: 700;
}
.school-left i{
    font-size: 1.3rem;
}
.school-left img{
    border: 6px solid #c7ad8a;
    border-radius: 50%;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.school-left{
    text-align: center;
}
.school-left p{
    font-size: 1.5rem;
}
.school-left .colour-gold{
    font-weight: 700;
}
.school-page .site-content {
    background: #ffffff;
    padding: 4rem 0;
}
/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    background: #f8f9fa;
    padding: 4rem 0 5rem;
    overflow: hidden;
}

.testimonials-section .grid-container {
    position: relative;
}

.testimonials-section h2 {
    margin-bottom: 1rem;
    font-size: 3rem;
    font-weight: 700;
    color: #161c25;
    text-align: center;
    letter-spacing: -1px;
}

.testimonials-section p {
    margin-bottom: 3rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.5rem;
    font-weight: 500;
    color: #161c25;
    text-align: center;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ========================================
   TESTIMONIALS CAROUSEL STYLES
   ======================================== */

.testimonials-carousel {
    position: relative;
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}

.testimonials-carousel .testimonial-card {
    margin-bottom: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonials-carousel .slick-slide {
    padding: 0 10px;
}

.testimonials-carousel .slick-track {
    display: flex;
    align-items: stretch;
}

.testimonials-carousel .slick-slide {
    height: auto;
    display: flex;
}

.testimonials-carousel .slick-slide > div {
    width: 100%;
    display: flex;
    flex-direction: column;
}

/* Slick Dots Styling for Testimonials */
.testimonials-carousel .slick-dots {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex !important;
    justify-content: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.testimonials-carousel .slick-dots li {
    margin: 0;
}

.testimonials-carousel .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #c7ad8a;
    background: transparent;
    font-size: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.testimonials-carousel .slick-dots li.slick-active button,
.testimonials-carousel .slick-dots li button:hover {
    background: #c7ad8a;
    border-color: #c7ad8a;
}

/* Slick Arrows Styling for Testimonials */
.testimonials-carousel .slick-prev,
.testimonials-carousel .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #1d2346;
    border: 2px solid #c7ad8a;
    color: #c7ad8a;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonials-carousel .slick-prev:hover,
.testimonials-carousel .slick-next:hover {
    background: #c7ad8a;
    color: #161c25;
}

.testimonials-carousel .slick-prev {
    left: -60px;
}
.testimonials-carousel .slick-prev i{
    transition: all 0.3s ease;
    transform: translateX(-10%);
}
.testimonials-carousel .slick-next {
    right: -60px;
}
.testimonials-carousel .slick-next i{
    transition: all 0.3s ease;
    transform: translateX(10%);
}
.testimonials-carousel .slick-prev:before,
.testimonials-carousel .slick-next:before {
    display: none;
}

/* Mobile Responsive for Testimonials */
@media (max-width: 768px) {
    .testimonials-carousel {
        padding: 0 10px;
    }
    
    .testimonials-carousel .slick-slide {
        padding: 0 5px;
    }
    
    .testimonials-carousel .slick-prev,
    .testimonials-carousel .slick-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .testimonials-carousel .slick-prev {
        left: -50px;
    }
    
    .testimonials-carousel .slick-next {
        right: -50px;
    }
    
    .testimonials-carousel .slick-dots {
        bottom: -40px;
    }
    
    .testimonials-carousel .slick-dots li button {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel .slick-prev {
        left: 10px;
    }
    
    .testimonials-carousel .slick-next {
        right: 10px;
    }
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    border-left: 4px solid #262e43;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    padding: 1.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    min-height: 270px;
    display: flex !important;
    flex-direction: column;
    justify-content: space-between;
}
.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: #161c25;
    flex-grow: 1;
    display: flex;
    align-items: center;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    background: linear-gradient(135deg, #44588d, #161c25);
    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: #161c25;
}

.testimonial-info p {
    margin: 0;
    font-size: 0.9rem;
    color: #161c25;
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.5rem;
}

.star {
    font-size: 1.5rem;
    color: #c7ad8a;
}

/* ========================================
   MISCELLANEOUS STYLES
   ======================================== */

/* Showtime Section Adjustments */
#showtime-section{
    background-color: #fff;
    margin-top: -0.50rem;
}
#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{
    background: #262e43;
    padding: 2rem 0 0;
}

.showtime--fees {
    background: none;
    padding-top: 10px;
}

.cta--band .showtime--fees .grid-x {
    color: #ffffff;
}
.cta--band .showtime--fees .showtime--fees-price span{
    color: #fff !important;
}

/* CTA Description */
.cta--description {
    color: #4a5568;
}

/* Homepage Container */
.homepage .site-content--container {
    padding-bottom: 0.5rem;
}

.site-content{
    padding-top: 100px !important;
}
.bottom-page-content{
    padding-top: 0px !important;
}
.cta--image{
    display: none;
}
.header--container .logo--container img{
    padding: 15px;
    width: 200px;
}
#showtime-section .girl-img img {
    display: none;
}

/* ========================================
   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;
}

/* 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: #161c25;
    text-align: center;
    position: relative;
    border-bottom: 1px solid #e8e8e8;
    background: #ffffff;
}

/* 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: #c7ad8a #f5f5f5;
}

.cta-modal .home-form::-webkit-scrollbar {
    width: 6px;
}

.cta-modal .home-form::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 3px;
}

.cta-modal .home-form::-webkit-scrollbar-thumb {
    background: #c7ad8a;
    border-radius: 3px;
}

/* Section Headers - Matching Quick Contact Form Style */
.cta-modal .home-form h5 {
    display: flex;
    align-items: center;
    margin: 0.2rem 0 0.2rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #161c25;
    text-align: left;
    position: relative;
}

.cta-modal .title-number {
    background: #161c25;
    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(22, 28, 37, 0.25);
}

/* Dividers - Subtle */
.cta-modal .divider {
    width: 100%;
    margin: 0.5rem 0 0;
    border: none;
    height: 1px;
    background: #e8e8e8;
}

/* Form Controls - Matching Quick Contact Form */
.cta-modal .formControls {
    margin-bottom: 0.25rem;
    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 #e0e0e0;
    border-radius: 6px;
    box-shadow: none;
    display: block;
    width: 100%;
    padding: 0.9rem 1.1rem;
    font-size: 0.95rem;
    font-weight: 400;
    color: #161c25;
    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 #c7ad8a;
    box-shadow: 0 0 0 3px rgba(199, 173, 138, 0.15);
    transform: none;
}

.cta-modal .home-form .rsform-input-box::placeholder,
.cta-modal .home-form .rsform-calendar-box::placeholder {
    color: #999;
    font-weight: 400;
}

/* Calendar Button - Matching Quick Contact Form Style */
.cta-modal .btnCal.rsform-calendar-button.button.secondary {
    background: #c7ad8a;
    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: #b89d7a;
    box-shadow: 0 5px 15px rgba(199, 173, 138, 0.3);
}

/* 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 #e0e0e0;
    border-radius: 6px;
    color: #161c25;
    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: #161c25;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: -1;
}
#child_gender0:checked+label{
    background: #161c25 !important;
}

.cta-modal .home-form .rsform-radio:checked + label {
    border-color: #c7ad8a;
    background: #c7ad8a;
    color: white;
    box-shadow: 0 5px 15px rgba(199, 173, 138, 0.3);
    transform: translateY(-2px);
}

.cta-modal .home-form .rsform-radio + label:hover {
    border-color: #c7ad8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(199, 173, 138, 0.3);
}

/* 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: #161c25;
    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: #1a2330;
    box-shadow: 0 5px 15px rgba(22, 28, 37, 0.3);
    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: #999;
    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: #c7ad8a;
    text-decoration: none;
}

/* Form Validation - Matching Quick Contact Form Style */
.cta-modal .formValidation {
    margin-top: 0;
}

.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 #e0e0e0;
}

/* Close Button - Floating */
.cta-modal .close-button {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(22, 28, 37, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #999;
    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: #161c25;
    color: white;
    transform: rotate(90deg);
    border-color: #161c25;
}

.cta-modal .rsform-type-recaptchav2{
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.cta-modal .rsform-block-privacy-policy, 
.trial-page-form-direct .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: #c7ad8a;
    border: 1px solid #c7ad8a;
}
.location--intro{
    background-image: url('/images/stage_bg.png');
    background-size: cover;
}
.showtime--banner .grid-container{
    border-top: 1px solid #c9ac8c;
    padding-top: 2.5rem !important;
}
.location--intro .showtime--banner{
    background: none;
    padding: 1.5rem 0 3rem;
}
.content--item{
    margin: 0;
}
.content--item.fees-alt{
    background-image: url('/images/stage_bg.png');
    background-size: cover;
    padding-top: 2rem;
    padding-bottom: 0;
    margin-bottom: 0;
    margin-top: 0px;
    color: #fff8f0;
}
.showtime--fees p{
    font-size: 1.1rem;
    color: #fff8f0;
    line-height: 1.625rem;
    font-weight: 500;
    margin-bottom: 1rem;
}
.showtime--fees h4.fees-title{
    font-size: 1.6rem;
    color: #c7ad8a;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
.showtime--fees .button{
    background: #fff8f0;
    border: 4px solid #fff8f0 !important;
    border-radius: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: block;
    color: #161c25;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 0.7rem 1rem;
    margin-top: 10px;
    text-decoration: none !important;
    transition: all 0.3s 
ease;
    max-width: 270px;
}
.showtime--fees .button i{
    margin-right: 5px;
    transition: all 0.3s ease;
}
.showtime--fees .button:hover {
    background: #262e43;
    color: #fff8f0;
}
#g-recaptcha-135, #g-recaptcha-142{
    display: flex;
    align-items: center;
    justify-content: center;
}
.showtime--fees h4 span{
    color: #c7ad8a;
}
.showtime--fees .showtime--fees-left{
    padding-right: 1.5rem;
}
.showtime--fees .showtime--fees-left p.colour-gold{
    font-weight: 700;
}
.showtime--fees .showtime--fees-right{
    margin-top: -2rem;
}
.showtime--fees .showtime--fees-type{
    margin-bottom: 2rem;
}
.showtime--fees .showtime--fees-type h4{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.showtime-fees-hours{
    display: flex;
    align-items: center;
    color: #c7ad8a;
    font-weight: 700;
    font-size: 1.3rem;
    line-height: 1.5rem;
}
.showtime--fees .showtime--fees-price span{
    color: #fff8f0;
}
.homepage .site-content {
    background: #dfdfdf;
    color: #161c25;
}
.homepage .featured-title{
    color: #161c25;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 3rem;
    width: 100%;
}
.blog-featured .item{
    color: #161c25;
}
.blog-featured .item p{
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.6rem;
}
.blog-featured .item .item-title{
    color: #161c25;
    font-size: 1.7rem;
    margin-bottom: 1rem;
}
/* ========================================
   FOOTER STYLES
   ======================================== */
.footer{
    background: #161c25;
}
.footer--container{
    padding: 1.875rem 1rem;
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Mobile Responsive (max-width: 600px) */
@media (max-width: 640) {
    .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{
        text-align: center;
        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;
    }
}

/* Foundation Medium (640px) */
@media screen and (min-width: 640px) {
    #showtime-section {
        text-align: center;
        margin-top: -0.50rem;
    }
    #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{
        padding-left: 0;
        width: 200px;
        height: auto;
    }
    .top-nav--wrapper {
        margin: -1rem -1rem 0rem;
    }
    .showtime--banner .grid-container{
        margin-top: 1.5rem;
    }
    .showtime--banner-right{
        margin-top: 0;
    }
    .location--intro .showtime--banner-right{
        display: block;
    }
} 

@media screen and (max-width: 1024px) {
    .showtime--fees .button{
        margin: 3rem auto;
        padding: 1rem;
        max-width: 320px;
    }
    .showtime--fees .showtime--fees-right{
        margin-top: 0rem;
    }
    .confidence-btn{
        font-size: 1rem;
        margin: 0;
    }
    .trust-section{
        background-position: 0;
    }
    .showtime-promo-block .showtime-subtitle i{
        margin-left: -2rem;
        margin-right: 0.5rem;
    }
}
/* Foundation Large (1024px) - combines 50em and 60em */
@media screen and (min-width: 1024px) {
    #showtime-section {
        margin-top: -0.50rem;
        text-align: left;
    }
    #showtime-section .girl-img img {
        display: block;
    }
    .header--container .logo--container{
        flex: 0 0 33.33333%;
        max-width: 33.33333%;
    }
    .header--container .logo--container img{
        width: 270px;
    }
}
/* Foundation XLarge (1200px) - closest to 80em */
@media screen and (max-width: 1200px) {
    .showtime-promo-block .showtime-button-book,
    .showtime-promo-block .showtime-button-call{
        font-size: 1.1rem;
        width: 220px;
    }
    .showtime-cta-buttons{
        margin-bottom: 0;
    }
    .showtime-cta-buttons .cell{
        margin: 0;
        margin-right: 10px;
    }
    .school-cta{
        margin-top: 1.3rem;
    }
}
/* Foundation XLarge (1200px) - closest to 80em */
@media screen and (min-width: 1200px) {
    .testimonials-grid .testimonial-card:last-child{
        display: block;
    }
}

/* Foundation XXLarge (1440px) - matches 90em */
@media screen and (min-width: 1440px) {
    #showtime-section {
        margin-top: -0.50rem;
    }
} 
/* Responsive Design - Matching Quick Contact Form */
@media (max-width: 767px) {
    .school-page .site-header{
        background: rgba(22, 28, 37, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
        padding-bottom: 0;
    }
    .school-page .site-header .header--container{
        padding: 0.5rem 0;
    }
    .school-page .header--container .logo--container img{
        width: 180px;
    }
    .school-page .site-content--container{
        padding-top: 6rem;
    }
    .location--intro{
        padding-top: 0rem;
        background-size: 350%;
        background-position: -50px -50px;
    }
    .location--intro .showtime--banner{
        padding-top: 0;
        margin-bottom: 0;
    }
    .school-top-description h3{
        line-height: 1.8rem;
        font-size: 1.5rem;
    }
    .school-top-description h3 span{
        font-size: 1.4rem;
    }
    .showtime--banner-right{
        display: flex;
    }
    .top-description-left{
        margin-bottom: 2rem;
    }
    .school-confidence h3{
        margin-bottom: 2rem;
        margin-top: 0rem;
    }
    .confidence-images{
        margin-bottom: 0;
    }
    .confidence-images img{
        margin-bottom: 2rem;
    }
    .confidence-right p{
        margin-top: 2rem;
        padding: 0;
    }
    .cta-modal.reveal {
        width: 95vw;
        margin: 1rem auto;
        border-radius: 12px;
    }
    .directions-btn{
        display: block;
        margin: 0 auto;
        text-align: center;
        margin-top: 2rem;
        max-width: 200px;
    }
    .school-cta{
        font-size: 1.2rem;
        margin-top: 2rem;
    }
    .school-cta .fa{
        font-size: 2rem;
    }
    .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;
    }
    .view-article .site-content{
        background-position: 0;
    }
    .school-left{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .school-left img{
        width: 80%;
    }
    .school-right img{
        width: 80%;
    }
    .supported-by .teacher-card{
        margin-bottom: 2rem;
    }
    .showtime--fees{
        padding-bottom: 0;
    }
    .showtime--fees .showtime--fees-type{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .showtime--fees .showtime--fees-type h4{
        width: 35%;
        text-align: center;
    }
    .showtime--fees .showtime-fees-hours{
        font-size: 0.9rem;
    }
    .showtime--fees h4 span{
        font-size: 0.85rem;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    .showtime-fees-hours{
        text-align: center;
    }
    .showtime--fees .showtime--fees-type{
        margin-bottom: 1rem;
    }
    .showtime--fees .showtime--fees-left{
        padding-right: 0rem;
    }
    .modern-cta.secondary{
        margin-top: 0.5rem;
    }
    .footer{
        background-position: 0;
    }
    .showtime-promo-block .grid-x {
        display: flex;
        flex-direction: column;
    }
    
    .showtime-text {
        order: 1; /* Text first on mobile */
    }
    
    .showtime-image {
        order: 2; /* Image second on mobile */
    }
    .showtime-promo-block .showtime-title{
        text-align: center;
        margin-left: 0rem;
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    .showtime-promo-block .showtime-subtitle{
        color: #c7ad8a;
        text-align: center;
        font-size: 1.3rem;
    }
    .showtime-promo-block .showtime-subtitle i{
        margin-left: 0;
        margin-top: 5px;
    }
    .showtime-promo-block p{
        font-size: 1.2rem;
        text-align: left;
    }
    .showtime-promo-block .showtime-button-call{
        margin: 1rem auto 2rem;
    }
    .showtime-promo-block .showtime-image-block {
        display: none;
    }
    #FloatingIcons{
        width: 13rem;
    }
    .homepage .featured-title{
        font-size: 2.5rem;
        margin-bottom: 0rem;
    }
    .testimonials-section{
        margin-top: -2rem !important;
    }
    .content--item.fees-alt{
        background-position: -110px 0px;
    }
    .testimonials-section h2{
        font-size: 2.5rem;
    }
    .testimonials-section p{
        font-size: 1rem;
        line-height: 1.5rem;
    }
    .trust-section h2{
        font-size: 2.4rem;
    }
    .trust-section p{
        font-size: 1.3rem;
    }
    .trust-section p br{
        display: none;
    }
    .showtime-promo-block .showtime-button-book,
    .showtime-promo-block .showtime-button-call{
        margin: 0 auto 1rem;
    }
    .cta-modal.reveal{
        top: 0 !important;
        min-height: 96vh;
    }
    .cta-modal .home-form{
        max-height: 90vh;
    }
    .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: #999;
    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: #c7ad8a;
}

.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); }
}

/* ========================================
   TRIAL PAGE FORM STYLES
   ======================================== */

/* Trial Form Page Styling - Clean integrated form styling */
.trial-page-form-direct {
    max-width: 850px;
    width: 100%;
    margin: 0 auto;
    background: transparent;
}

/* Section Headers */
.trial-page-form-direct 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;
}

.trial-page-form-direct .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);
}

/* Input Fields */
.trial-page-form-direct .rsform-input-box,
.trial-page-form-direct .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;
}

.trial-page-form-direct .rsform-input-box:focus,
.trial-page-form-direct .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);
}

/* Radio Buttons */
.trial-page-form-direct input[type="radio"] {
    display: none;
}

.trial-page-form-direct .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;
}

.trial-page-form-direct .rsform-radio:checked + label {
    border-color: #2585e4;
    background: #2585e4;
    color: white;
    box-shadow: 0 5px 15px rgb(37 133 228 / 30%);
    transform: translateY(-2px);
}

.trial-page-form-direct .rsform-radio + label:hover {
    border-color: #2585e4;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgb(37 133 228 / 30%);
}

/* School Selection */
.trial-page-form-direct .rsform-block-school .formControls {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.trial-page-form-direct .rsform-block-school .rsform-radio + label {
    width: auto;
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

/* Submit Button */
.trial-page-form-direct #submit {
    background: #e63f87;
    border: none;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    margin: 1.5rem auto 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;
}

.trial-page-form-direct #submit:hover {
    background: #e63f87;
    box-shadow: 0 5px 15px rgb(230 63 135 / 30%);
    transform: translateY(-2px);
}

/* Calendar Button */
.trial-page-form-direct .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;
}

.trial-page-form-direct .btnCal.rsform-calendar-button.button.secondary:hover {
    background: #2585e4;
    box-shadow: 0 5px 15px rgb(37 133 228 / 30%);
}

/* Form Controls */
.trial-page-form-direct .formControls {
    margin-bottom: 0.5rem;
    position: relative;
}

.trial-page-form-direct .divider {
    width: 100%;
    margin: 1rem 0 0;
    border: none;
    height: 1px;
    background: #d1d5db;
}

/* Privacy Policy */
.trial-page-form-direct .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;
    justify-content: center;
    width: 100%;
}

.trial-page-form-direct .privacy::before {
    content: "🔒";
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.trial-page-form-direct .privacy:hover {
    color: #2585e4;
    text-decoration: none;
}

/* reCAPTCHA */
.trial-page-form-direct .rsform-type-recaptchav2 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.trial-page-form-direct .g-recaptcha {
    margin: 1rem 0;
    display: flex;
    justify-content: center;
    padding: 1rem;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #d1d5db;
}

/* Gender Selection */
.trial-page-form-direct .rsform-block-child-gender .formControls {
    display: inline-grid;
    grid-template-columns: auto auto;
    gap: 0.5rem;
}

.trial-page-form-direct .rsform-block-child-gender .rsform-radio + label {
    margin: 0px;
    padding: 0.25rem 1.1rem;
}

.trial-page-form-direct #child_gender1:checked + label {
    background-color: #ff7089;
    border: 1px solid #ff7089;
}

/* Trial Page Form Responsive Design */
@media (max-width: 768px) {
    .trial-page-form-direct h5 {
        font-size: 1rem;
        margin: 1rem 0 0.5rem 0;
    }
    
    .trial-page-form-direct .title-number {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .trial-page-form-direct .rsform-radio + label {
        min-width: 100%;
        margin: 0.25rem 0;
        padding: 0.9rem 1.1rem;
    }
    
    .trial-page-form-direct .rsform-block-school .formControls {
        flex-direction: column;
    }
}

/* ========================================
   TRIAL DATE SELECTOR STYLES
   ======================================== */

.trial-selector {
    margin-top: 1.5rem;
}

.date-selector-container h5 {
    display: flex;
    align-items: center;
    margin: 0.5rem 0 0.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #161c25;
    text-align: left;
    position: relative;
}

.date-selector-container .title-number {
    background: #161c25;
    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(22, 28, 37, 0.25);
}

.date-selector-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 1rem;
}

.school-info-left {
    flex: 0 0 auto;
    padding: 0.75rem;
    background: #f5f5f5;
    border-radius: 6px;
    border-left: 4px solid #c7ad8a;
}

.school-info-left p {
    margin: 0;
    font-size: 0.95rem;
    color: #161c25;
}

.date-options-right {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex: 1 1 auto;
    justify-content: flex-end;
}

.date-option {
    cursor: pointer;
    display: block;
}

.date-option input[type="radio"] {
    display: none;
}

.date-option-inline {
    cursor: pointer;
    display: inline-block;
}

.date-option-inline input[type="radio"] {
    display: none;
}

.date-text-inline {
    display: inline-block;
    padding: 0.3rem 1.1rem;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    color: #161c25;
    font-weight: 400;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: 120px;
    justify-content: center;
    text-align: center;
}

.date-option-inline:hover .date-text-inline {
    border-color: #c7ad8a;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(199, 173, 138, 0.2);
}

.date-option-inline input[type="radio"]:checked + .date-text-inline {
    background: #c7ad8a;
    border-color: #c7ad8a;
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(199, 173, 138, 0.3);
}

.date-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1rem;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.date-card:hover {
    border-color: #c7ad8a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(199, 173, 138, 0.2);
}

.date-option input[type="radio"]:checked + .date-card {
    border-color: #c7ad8a;
    background: #c7ad8a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(199, 173, 138, 0.3);
}

.date-option input[type="radio"]:checked + .date-card::before {
    content: '✓';
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

.date-text {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.time-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.date-option input[type="radio"]:checked + .date-card .time-text {
    opacity: 1;
}

.no-dates-available {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    margin-top: 1rem;
}

.no-dates-available p {
    margin: 0 0 0.5rem 0;
    color: #991b1b;
}

.no-dates-available p:last-child {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #7f1d1d;
}
.k-pop-event-menu img{
    max-width: 150px;
}
.k-pop-event-menu .image-title{
    display: none;
}
.navigation--container ul{
    display: flex;
    align-items: center;
}
.hikashop_product_stock_count{
    display: none !important;
}
/* Responsive Design for Date Selector */
@media (max-width: 768px) {
    .date-selector-container h5 {
        font-size: 1rem;
        margin: 1rem 0 0.5rem 0;
    }
    
    .date-selector-container .title-number {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }
    
    .date-selector-layout {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .school-info-left {
        text-align: center;
    }
    
    .date-options-right {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .date-text-inline {
        padding: 0.25rem 1.1rem;
        font-size: 0.95rem;
        min-width: 100%;
        margin: 0.25rem 0;
    }
    
    .date-card {
        padding: 0.75rem;
    }
    
    .date-text {
        font-size: 0.95rem;
    }
    
    .time-text {
        font-size: 0.85rem;
    }
} 