:root {
    --color-teal: #0d9488;       
    --color-gold: #d97706;       
    --color-coral: #fb7185;      
    
    --bg-cream: #fffbf5;         
    --text-dark: #374151;        
    --text-heading: #111827;     
    
    --border-radius-card: 16px;
    --font-head: 'Nunito', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

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

html, body {
    position: relative;
    overflow-x: visible !important;
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    color: var(--text-heading);
    font-weight: 800;
    line-height: 1.2;
}
h1 { font-size: 3rem; }
h2 { font-size: 2.2rem; }

a { text-decoration: none; transition: 0.3s; }

.container {
    max-width: 1150px;
    margin: 0 auto;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}

.blob-bg {
    position: absolute;
    z-index: -1;
    opacity: 0.15;
    filter: blur(40px);
    pointer-events: none;
}
.page-header { padding: 60px 0 50px 0; text-align: center; position: relative; }
.page-header h1 { color: var(--color-teal); margin-bottom: 15px; }
.page-header p { max-width: 700px; margin: 0 auto; font-size: 1.1rem; color: #6b7280; }
.header-blob {
    position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
    width: 600px; height: 600px; background: var(--color-coral); opacity: 0.05;
    border-radius: 50%; z-index: -1; filter: blur(60px);
}

.contact-section { padding: 20px 0 80px 0; }
.contact-grid {
    display: grid; 
    grid-template-columns: 350px 1fr; 
    gap: 50px;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: var(--border-radius-card);
    border: 1px solid #e5e7eb;
    position: sticky; top: 100px;
}
.contact-group { margin-bottom: 30px; }
.contact-group:last-child { margin-bottom: 0; }
.contact-label { 
    font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; 
    color: #9ca3af; font-weight: 700; margin-bottom: 15px; display: block;
}
.contact-row { display: flex; align-items: flex-start; gap: 15px; margin-bottom: 20px; }
.contact-row i { color: var(--color-teal); font-size: 1.4rem; margin-top: 3px; }
.contact-row div { font-size: 0.95rem; color: #374151; }
.contact-row strong { display: block; color: var(--text-heading); margin-bottom: 2px; font-size: 1rem;}
.contact-row a { color: var(--color-teal); font-weight: 700; text-decoration: underline; }

.form-column {
    display: flex;
    flex-direction: column;
    gap: 20px; 
}

.tab-switch-wrapper {
    background-color: #e5e7eb; 
    padding: 5px;
    border-radius: 50px;
    display: flex;
    width: 100%;
}

.tab-btn {
    flex: 1;
    border: none;
    background: transparent;
    padding: 15px 0;
    border-radius: 40px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1rem;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tab-btn.active {
    background-color: white;
    color: var(--color-teal);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.tab-btn.active-pro {
    background-color: white;
    color: var(--color-gold);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.contact-form-container {
    background: white;
    padding: 0; 
    border-radius: var(--border-radius-card);
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    overflow: hidden; 
    border: 1px solid #e5e7eb;
}

.form-status-bar {
    padding: 15px 40px;
    font-size: 1rem; font-weight: 700; color: white;
    display: flex; align-items: center; gap: 10px;
}
.status-parents { background-color: var(--color-teal); }
.status-pro { background-color: var(--color-gold); }

.form-wrapper { padding: 40px 50px; }

.form-content { display: none; }
.form-content.active { display: block; animation: fadeIn 0.4s; }

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

.form-section-title {
    font-size: 1.2rem; color: var(--color-teal); margin: 30px 0 20px 0;
    padding-bottom: 10px; border-bottom: 1px solid #f3f0e7;
    font-weight: 800;
}
.form-section-title:first-child { margin-top: 0; }
.pro-theme .form-section-title { color: var(--color-gold); }

.form-group { margin-bottom: 25px; width: 100%; display: block; }
.form-label { display: block; margin-bottom: 8px; font-weight: 700; color: var(--text-heading); font-size: 0.95rem; }

.form-input, .form-textarea, .form-select {
    width: 100%; 
    display: block; 
    box-sizing: border-box; 
    padding: 12px 15px; 
    border-radius: 10px; 
    border: 2px solid #e5e7eb; 
    font-family: inherit; font-size: 1rem;
    transition: 0.3s; background-color: #fcfcfc;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
    border-color: var(--color-teal); outline: none; background-color: white;
}
.pro-theme .form-input:focus { border-color: var(--color-gold); }

.form-textarea { height: 120px; resize: vertical; }

.form-row { 
    display: grid; grid-template-columns: 1fr 1fr; 
    gap: 25px; width: 100%; margin-bottom: 25px;
}
.form-row .form-group { margin-bottom: 0; }

.checkbox-group { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 10px; }
.checkbox-item { display: flex; align-items: center; gap: 8px; font-size: 0.95rem; cursor: pointer; }
.checkbox-item input { accent-color: var(--color-teal); width: 18px; height: 18px; }
.pro-theme .checkbox-item input { accent-color: var(--color-gold); }

.submit-btn {
    color: white; padding: 16px 40px; font-weight: 800;
    border-radius: 50px; font-size: 1.1rem; border: none; cursor: pointer;
    transition: 0.3s; width: 100%; margin-top: 10px; margin-bottom: 20px;
}
.submit-btn-parent { background-color: var(--color-teal); }
.submit-btn-parent:hover { background-color: #0f766e; transform: translateY(-2px); }

.submit-btn-pro { background-color: var(--color-gold); }
.submit-btn-pro:hover { background-color: #b45309; transform: translateY(-2px); }
.agreement-group {
    margin-top: 20px;
    padding: 15px;
    background-color: #f0fdfa; 
    border-radius: 10px;
    border: 1px solid #ccfbf1;
}

.agreement-label {
    font-weight: normal;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: var(--text-dark);
}
.locations-title-h3 {
    margin-bottom: 10px;
}
.agreement-label input {
    margin-top: 4px; 
    accent-color: var(--color-teal);
    width: 18px; 
    height: 18px;
}

.agreement-label a {
    color: var(--color-teal);
    text-decoration: underline;
    font-weight: 700;
}

.map-section { padding: 0 0 80px 0; }
.map-placeholder {
    width: 100%; height: 400px; background-color: #e5e7eb; border-radius: var(--border-radius-card);
    display: flex; align-items: center; justify-content: center; color: #6b7280; font-weight: 700;
    background-image: url('https://mt1.google.com/vt/lyrs=m&x=1325&y=3165&z=13'); background-size: cover;
}
.google-map-embed {
    width: 100%;
    height: 450px; 
    border: 0;
    border-radius: var(--border-radius-card); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}

.locations-section { 
    padding: 40px 0 80px 0; 
}

.cta-container-wrapper { padding: 60px 0; position: relative; }
.cta-blob { bottom: -10%; left: -10%; width: 500px; height: 500px; background: var(--color-mint); opacity: 0.15; position: absolute; border-radius: 50%; filter: blur(50px); z-index: 0; }
.cta-bar {
    background: white; color: var(--text-heading); padding: 70px 40px; text-align: center;
    border-radius: var(--border-radius-card); margin: 0 auto; max-width: 900px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08); border: 1px solid #f3f0e7;
    position: relative; border-top: 6px solid var(--color-teal); z-index: 2;
}
.cta-bar h2 { color: var(--color-teal); margin-bottom: 15px; }
.cta-btn {
    background-color: var(--color-teal); color: white; padding: 15px 45px; font-weight: 800;
    border-radius: 50px; font-size: 1.1rem; display: inline-block; margin-top: 25px;
    box-shadow: 0 10px 20px rgba(13, 148, 136, 0.2); transition: 0.3s;
}
.cta-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 30px rgba(13, 148, 136, 0.3); background-color: #0f766e; }
@media (max-width: 900px) {
    h1 { font-size: 2.2rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; gap: 25px; }
    .contact-form-container { padding: 0; }
    .form-wrapper { padding: 30px; }
    .nav-menu { display: none; }
    .contact-info { position: static; margin-bottom: 40px; }
}
.form-message {
    display: none; 
    padding: 15px 20px;
    margin-bottom: 25px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.5;
    align-items: center;
    gap: 10px;
}


.msg-error {
    display: flex; 
    background-color: #fef2f2; 
    color: #991b1b;           
    border: 1px solid #fca5a5; 
    box-shadow: 0 2px 5px rgba(153, 27, 27, 0.05);
}

.application-form {
    position: relative; 
    overflow: hidden;  
}

.form-lock {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.6); 
    backdrop-filter: blur(4px);            
    z-index: 50;
    display: flex; 
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: opacity 0.3s ease, visibility 0.3s;
}

.form-lock.unlocked {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; 
}

.lock-content {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 50%;
}

.lock-content i {
    font-size: 2rem;
    color: var(--color-gold);
    margin-bottom: 10px;
}

.lock-content h3 {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
}

.lock-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 15px;
}

.btn-small {
    background: var(--color-teal);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

