* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #FFF4F0;
    background-size: 400% 400%;
    min-height: 100vh;
    padding: 20px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
    overflow: hidden;
    animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    color: white;
    padding: 50px 40px;
    text-align: center;
}

h1 {
    font-size: 3em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.daycare-label {
    font-size: 3em;
    opacity: 0.9;
    font-weight: bold;
    margin: 5px 0;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    animation: bounce 2s infinite;
}

.subtitle {
    font-size: 1.3em;
    opacity: 0.95;
    font-weight: 300;
}

.content {
    padding: 50px 40px;
}

.waitlist-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.2em;
    color: #FF6B35;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FF6B35, #FF8C5A);
    border-radius: 2px;
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    margin-bottom: 8px;
    color: #1F2937;
    font-weight: 600;
    font-size: 1.1em;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"] {
    width: 100%;
    padding: 15px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1em;
    transition: all 0.3s ease;
    font-family: inherit;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #1F2937;
}

/* Prevent zoom on iOS when focusing inputs */
@media screen and (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="number"],
    .form-select {
        font-size: 16px;
    }
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

#childrenContainer {
    margin-bottom: 15px;
}

.child-entry {
    margin-bottom: 15px;
}

.child-fields {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.child-name {
    flex: 2;
}

.child-age {
    flex: 1;
    max-width: 120px;
}

.remove-child-btn {
    background: #EF4444;
    color: white;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 1.5em;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-width: 44px;
    min-height: 44px;
}

.remove-child-btn:hover {
    background: #DC2626;
    transform: scale(1.1);
}

.add-child-btn {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    font-size: 1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
}

.add-child-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.form-select {
    width: 100%;
    padding: 15px;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1em;
    transition: all 0.3s ease;
    font-family: inherit;
    background-color: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FF6B35' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    color: #1F2937;
}

.form-select:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-select:hover {
    border-color: #FF6B35;
}

.state-funding-fields {
    margin-top: 20px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 140, 90, 0.05) 100%);
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
        max-height: 0;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        max-height: 500px;
    }
}

.payment-options {
    display: flex;
    gap: 20px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.payment-option {
    flex: 1;
    min-width: 200px;
}

.payment-option input[type="radio"] {
    display: none;
}

.payment-option label {
    display: block;
    padding: 20px;
    border: 3px solid #E5E7EB;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #FFF4F0;
    font-weight: 600;
    color: #1F2937;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
}

.payment-option input[type="radio"]:checked + label {
    border-color: #FF6B35;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.payment-option label:hover {
    border-color: #FF6B35;
    transform: translateY(-2px);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
    min-height: 44px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

.coming-soon-announcement {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.coming-soon-title {
    font-size: 2.2em;
    color: white;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.coming-soon-date {
    font-size: 1.5em;
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.coming-soon-text {
    font-size: 1.2em;
    color: white;
    line-height: 1.8;
    margin: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.coming-soon-text strong {
    font-weight: 700;
    opacity: 1;
}

.info-section {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C5A 100%);
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    margin-top: 40px;
}

.info-section h2 {
    font-size: 2.2em;
    margin-bottom: 25px;
    text-align: center;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.info-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.info-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card p {
    font-size: 1.05em;
    line-height: 1.8;
}

.emoji {
    font-size: 1.3em;
}

.success-message {
    display: none;
    background: #10B981;
    color: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
    font-size: 1.1em;
    animation: slideIn 0.5s ease;
}

.pricing-section {
    margin: 60px 0;
    padding: 0 40px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.section-subtitle {
    font-size: 1.8em;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    margin-top: 40px;
    position: relative;
    display: inline-block;
    width: 100%;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

/* Remove specific card backgrounds since we're using glassmorphism */
.private-pay-card, .state-funding-card {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.icon-wrapper {
    font-size: 3em;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.pricing-card-header h3 {
    font-size: 2em;
    color: white;
    margin-bottom: 8px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.pricing-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1em;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    flex-grow: 1;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.pricing-item:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.state-funding-card .pricing-item:hover {
    border-color: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.age-group {
    font-size: 1.05em;
    font-weight: 600;
    color: white;
}

.price {
    font-size: 1.4em;
    font-weight: 800;
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 12px;
    border-radius: 10px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.state-funding-card .price {
    color: white;
    background: rgba(255, 255, 255, 0.2);
}

.card-footer {
    text-align: center;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95em;
    font-weight: 500;
}

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

@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .container {
        border-radius: 20px;
    }

    h1 {
        font-size: 2em;
        margin-bottom: 8px;
    }

    .daycare-label {
        font-size: 2em;
        margin: 3px 0;
        letter-spacing: 1px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        animation: bounce 2s infinite;
    }

    .subtitle {
        font-size: 1.1em;
    }

    .content {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

    .waitlist-section {
        margin-bottom: 40px;
    }

    .coming-soon-announcement {
        margin-bottom: 30px;
        padding-bottom: 25px;
    }

    .coming-soon-title {
        font-size: 1.8em;
        margin-bottom: 8px;
    }

    .coming-soon-date {
        font-size: 1.3em;
        margin-bottom: 15px;
    }

    .coming-soon-text {
        font-size: 1.1em;
    }

    .payment-options {
        flex-direction: column;
        gap: 15px;
    }

    .payment-option {
        min-width: 100%;
    }

    .payment-option label {
        padding: 18px;
        font-size: 0.95em;
    }

    header {
        padding: 30px 20px;
    }

    .child-fields {
        flex-direction: column;
        gap: 10px;
    }

    .child-age {
        max-width: 100%;
    }

    .remove-child-btn {
        width: 40px;
        height: 40px;
        font-size: 1.8em;
        align-self: flex-end;
    }

    .add-child-btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 0.95em;
        justify-content: center;
    }

    .submit-btn {
        padding: 16px;
        font-size: 1.1em;
    }

    .info-section {
        padding: 30px 20px;
        border-radius: 15px;
        margin-top: 30px;
    }

    .info-section h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .info-section p {
        font-size: 1.1em;
    }

    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 20px;
    }

    .info-card {
        padding: 20px;
    }

    .info-card h3 {
        font-size: 1.3em;
        margin-bottom: 12px;
    }

    .info-card p {
        font-size: 1em;
        line-height: 1.6;
    }

    .state-funding-fields {
        padding: 20px;
        margin-top: 15px;
    }

    label {
        font-size: 1em;
    }

    .form-group {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    body {
        padding: 5px;
    }

    .container {
        border-radius: 15px;
    }

    h1 {
        font-size: 1.6em;
    }

    .daycare-label {
        font-size: 1.6em;
        letter-spacing: 0.5px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        animation: bounce 2s infinite;
    }

    .subtitle {
        font-size: 1em;
    }

    header {
        padding: 25px 15px;
    }

    .content {
        padding: 25px 15px;
    }

    .section-title {
        font-size: 1.5em;
        margin-bottom: 20px;
    }

    .coming-soon-announcement {
        margin-bottom: 25px;
        padding-bottom: 20px;
    }

    .coming-soon-title {
        font-size: 1.5em;
        margin-bottom: 8px;
    }

    .coming-soon-date {
        font-size: 1.2em;
        margin-bottom: 12px;
    }

    .coming-soon-text {
        font-size: 1em;
    }

    .info-section {
        padding: 25px 15px;
    }

    .info-section h2 {
        font-size: 1.5em;
    }

    .state-funding-fields {
        padding: 15px;
    }

    .payment-option label {
        padding: 15px;
    }

    .pricing-section {
        padding: 0 20px;
        margin: 40px 0;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        padding: 25px 20px;
    }

    .pricing-card-header h3 {
        font-size: 1.5em;
    }

    .price {
        font-size: 1.3em;
    }
}
