/* ========================================
   INNER PAGES STYLES
   Shared styles for all inner pages
   ======================================== */

/* Page Header */
.page-header {
    position: relative;
    padding: 10rem 0 4rem;
    text-align: center;
    overflow: hidden;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #9DB4A0 0%, #C4B49A 50%, #D4A5A5 100%);
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/web_IMG_3319.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.header-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    margin: 0 auto;
}

.header-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.header-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

.program-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: var(--radius-full);
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(4px);
}

/* Page Content Layout */
.page-content {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.content-main h2 {
    margin-bottom: 1rem;
}

.content-main > p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Tour Highlights */
.tour-highlights {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.highlight-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    transition: all var(--transition-fast);
}

.highlight-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9DB4A0 0%, #B8CDBA 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    color: white;
    font-size: 1.25rem;
}

.highlight-content h4 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
}

.highlight-content p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

/* Info Box */
.info-box {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    border-left: 4px solid #9DB4A0;
}

.info-box h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.info-box h3 i {
    color: #9DB4A0;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box li {
    padding: 0.5rem 0;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-light);
}

.info-box li:last-child {
    border-bottom: none;
}

/* Booking Card (Sidebar) */
.booking-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 100px;
}

.booking-card h3 {
    margin-bottom: 0.5rem;
}

.booking-card > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.tour-form .form-group,
.enrollment-form .form-group {
    margin-bottom: 1rem;
}

.tour-form label,
.enrollment-form label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.tour-form input,
.tour-form select,
.tour-form textarea,
.enrollment-form input,
.enrollment-form select,
.enrollment-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: white;
}

.tour-form input:focus,
.tour-form select:focus,
.tour-form textarea:focus,
.enrollment-form input:focus,
.enrollment-form select:focus,
.enrollment-form textarea:focus {
    outline: none;
    border-color: #9DB4A0;
    box-shadow: 0 0 0 3px rgba(157, 180, 160, 0.2);
}

.contact-quick {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    text-align: center;
}

.contact-quick h4 {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.quick-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #7A9A7E;
    font-weight: 700;
    font-size: 1.25rem;
}

.quick-phone:hover {
    color: #5F8063;
}

/* What to Expect Section */
.expect-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.expect-section h2 {
    margin-bottom: 3rem;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.expect-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
}

.expect-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D4A5A5 0%, #C08B8B 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.expect-card h3 {
    margin-bottom: 0.5rem;
}

.expect-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

/* Program Overview */
.program-overview {
    padding: 5rem 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-content h2 {
    margin-bottom: 1.5rem;
}

.overview-content > p {
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.program-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}

.highlight i {
    color: #9DB4A0;
    font-size: 1.125rem;
}

.highlight span {
    font-weight: 600;
    font-size: 0.9375rem;
}

.overview-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Focus Section */
.focus-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.focus-section h2 {
    margin-bottom: 3rem;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.focus-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-light);
}

.focus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.focus-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FDF9F3 0%, #F5EFE6 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.focus-icon i {
    font-size: 1.75rem;
    color: #9DB4A0;
}

.focus-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.focus-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

/* Activities Section */
.activities-section {
    padding: 5rem 0;
}

.activities-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.activities-grid.reverse {
    direction: rtl;
}

.activities-grid.reverse > * {
    direction: ltr;
}

.activities-content h2 {
    margin-bottom: 1.5rem;
}

.activity-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.activity-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--border-light);
}

.activity-list li:last-child {
    border-bottom: none;
}

.activity-list i {
    color: #9DB4A0;
}

.activities-image {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.activities-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Curriculum Features */
.curriculum-features {
    display: grid;
    gap: 1.5rem;
}

.curriculum-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    transition: all var(--transition-fast);
}

.curriculum-item:hover {
    background: white;
    box-shadow: var(--shadow-md);
}

.curriculum-item h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
    font-size: 1.0625rem;
}

.curriculum-item h4 i {
    color: #D4A5A5;
}

.curriculum-item p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
    padding-left: 2rem;
}

/* Requirements Section */
.requirements-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.requirements-section h2 {
    margin-bottom: 3rem;
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.requirement-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--border-light);
}

.requirement-card i {
    font-size: 2rem;
    color: #C4B49A;
    margin-bottom: 1rem;
}

.requirement-card h4 {
    margin-bottom: 0.5rem;
}

.requirement-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

/* Skills Section */
.skills-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.skills-section h2 {
    margin-bottom: 3rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.skill-column {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.skill-column h3 {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #9DB4A0;
}

.skill-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.skill-column li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    color: var(--text-medium);
}

.skill-column li i {
    color: #9DB4A0;
    font-size: 0.875rem;
}

/* Age Groups Section */
.age-groups-section {
    padding: 5rem 0;
}

.age-groups-section h2 {
    margin-bottom: 3rem;
}

.age-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.age-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.age-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.age-card.featured {
    background: linear-gradient(135deg, #9DB4A0 0%, #7A9A7E 100%);
    color: white;
    border-color: transparent;
}

.age-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.age-card.featured .age-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.age-card h3 {
    margin-bottom: 0.75rem;
}

.age-card.featured h3 {
    color: white;
}

.age-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.age-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.age-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.age-card li {
    padding: 0.375rem 0;
    font-size: 0.9375rem;
}

.age-card li::before {
    content: '✓ ';
    color: #9DB4A0;
    font-weight: bold;
}

.age-card.featured li::before {
    color: white;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
}

.pricing-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.pricing-intro h2 {
    margin-bottom: 1rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #D4A5A5;
    color: white;
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-header {
    padding: 2rem;
    background: var(--bg-light);
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.pricing-card.featured .pricing-header {
    background: linear-gradient(135deg, #9DB4A0 0%, #7A9A7E 100%);
    color: white;
}

.pricing-header h3 {
    margin-bottom: 0.25rem;
}

.pricing-desc {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.pricing-card.featured .pricing-desc {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-secondary);
}

.period {
    color: var(--text-light);
    font-size: 1rem;
}

.pricing-card.featured .period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-body {
    padding: 2rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0;
    color: var(--text-medium);
}

.pricing-features i {
    color: #9DB4A0;
}

/* Extended Care */
.extended-care {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-2xl);
}

.extended-care h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.extended-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.extended-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
}

.extended-item h4 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.extended-item h4 i {
    color: #D4A5A5;
}

.extended-item p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.extended-price {
    font-weight: 700;
    color: #7A9A7E;
    font-size: 1.125rem;
}

/* What's Included */
.included-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.included-section h2 {
    margin-bottom: 3rem;
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.included-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
}

.included-item i {
    font-size: 2rem;
    color: #9DB4A0;
    margin-bottom: 1rem;
}

.included-item h4 {
    margin-bottom: 0.5rem;
}

.included-item p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

/* Discounts Section */
.discounts-section {
    padding: 4rem 0;
}

.discounts-box {
    background: linear-gradient(135deg, #9DB4A0 0%, #7A9A7E 100%);
    padding: 3rem;
    border-radius: var(--radius-2xl);
    color: white;
}

.discounts-box h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    color: white;
}

.discounts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.discount-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem;
    border-radius: var(--radius-xl);
    backdrop-filter: blur(4px);
}

.discount-item h4 {
    margin-bottom: 0.5rem;
    color: white;
}

.discount-item p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    margin: 0;
}

/* Payment Section */
.payment-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.payment-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.payment-content h3 {
    margin-bottom: 1.5rem;
}

.payment-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.payment-content li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-light);
}

.payment-content li:last-child {
    border-bottom: none;
}

.payment-content i {
    color: #9DB4A0;
    width: 20px;
}

.payment-note {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
}

.payment-note h4 {
    margin-bottom: 0.75rem;
}

.payment-note p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Steps Section */
.steps-section {
    padding: 5rem 0;
}

.steps-section h2 {
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--border-light);
    transition: all var(--transition-normal);
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #9DB4A0 0%, #B8CDBA 100%);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.step-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.step-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #7A9A7E;
    font-weight: 600;
}

.step-link:hover {
    gap: 0.75rem;
}

/* Application Section */
.application-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.application-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.application-info h2 {
    margin-bottom: 1rem;
}

.application-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.application-info .info-box {
    margin-bottom: 2rem;
}

.application-info .info-box h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.application-info .info-box h4 i {
    color: #C4B49A;
}

.application-info .info-box ul {
    list-style: disc;
    padding-left: 1.25rem;
}

.application-info .info-box li {
    border: none;
    padding: 0.375rem 0;
}

.application-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.enrollment-form h3 {
    margin: 2rem 0 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    font-size: 1.125rem;
}

.enrollment-form h3:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    margin-top: 0.25rem;
}

.form-checkbox label {
    font-size: 0.9375rem;
    color: var(--text-medium);
}

/* Documents Section */
.documents-section {
    padding: 5rem 0;
}

.documents-section h2 {
    margin-bottom: 0.5rem;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.document-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
}

.document-card i {
    font-size: 2.5rem;
    color: #D4A5A5;
    margin-bottom: 1rem;
}

.document-card h4 {
    margin-bottom: 0.5rem;
    font-size: 1.0625rem;
}

.document-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-category {
    margin-bottom: 3rem;
}

.faq-category h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.faq-category h2 i {
    color: #9DB4A0;
}

.faq-item {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    margin-bottom: 0.75rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: left;
}

.faq-question i {
    color: var(--text-muted);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-medium);
    margin: 0;
    line-height: 1.7;
}

.faq-answer a {
    color: #7A9A7E;
}

/* Questions CTA */
.questions-cta {
    padding: 4rem 0;
    background: var(--bg-light);
}

.questions-box {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.questions-box h2 {
    margin-bottom: 0.75rem;
}

.questions-box > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.questions-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Schedule Section */
.schedule-overview {
    padding: 4rem 0;
}

.overview-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.schedule-card {
    background: white;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-md);
}

.schedule-card.featured {
    box-shadow: var(--shadow-xl);
}

.schedule-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.schedule-card.featured .schedule-header {
    background: linear-gradient(135deg, #9DB4A0 0%, #7A9A7E 100%);
}

.schedule-header h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.schedule-header h3 i {
    color: #D4A5A5;
}

.schedule-card.featured .schedule-header h3 {
    color: white;
}

.schedule-card.featured .schedule-header h3 i {
    color: white;
}

.schedule-header .age-badge {
    background: white;
    margin: 0;
}

.schedule-card.featured .age-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.schedule-timeline {
    padding: 1.5rem 2rem;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1.5rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-time {
    font-weight: 700;
    color: #7A9A7E;
    font-size: 0.9375rem;
}

.timeline-content h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

/* Special Activities */
.special-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.special-section h2 {
    margin-bottom: 3rem;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.special-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
}

.special-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FDF9F3 0%, #F5EFE6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.special-icon i {
    font-size: 1.5rem;
    color: #D4A5A5;
}

.special-card h4 {
    margin-bottom: 0.5rem;
}

.special-card p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin: 0;
}

/* Meals Section */
.meals-section {
    padding: 4rem 0;
}

.meals-section h2 {
    margin-bottom: 3rem;
}

.meals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.meal-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
}

.meal-card i {
    font-size: 2rem;
    color: #9DB4A0;
    margin-bottom: 1rem;
}

.meal-card h4 {
    margin-bottom: 0.5rem;
}

.meal-card p {
    font-weight: 700;
    color: #7A9A7E;
    margin-bottom: 0.25rem;
}

.meal-card span {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.meals-note {
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
}

.contact-info-column h2 {
    margin-bottom: 1rem;
}

.contact-info-column > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-cards {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #9DB4A0 0%, #B8CDBA 100%);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.25rem;
}

.contact-details h4 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-details p {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: #7A9A7E;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-note {
    color: var(--text-light);
    font-size: 0.875rem;
}

.social-section h4 {
    margin-bottom: 1rem;
}

.social-links-large {
    display: flex;
    gap: 1rem;
}

.social-links-large a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    color: var(--text-dark);
    transition: all var(--transition-fast);
}

.social-links-large a:hover {
    background: #9DB4A0;
    color: white;
}

.social-links-large i {
    font-size: 1.25rem;
}

.form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.form-wrapper h3 {
    margin-bottom: 0.5rem;
}

.form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-form .form-group {
    margin-bottom: 1rem;
}

.contact-form label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #9DB4A0;
    box-shadow: 0 0 0 3px rgba(157, 180, 160, 0.2);
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.map-section h2 {
    margin-bottom: 2rem;
}

.map-wrapper {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
}

.map-wrapper iframe {
    display: block;
}

.directions-info {
    color: var(--text-light);
}

/* Quick Actions */
.quick-actions {
    padding: 4rem 0;
}

.quick-actions h2 {
    margin-bottom: 3rem;
}

.quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.quick-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-normal);
}

.quick-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.quick-card i {
    font-size: 2rem;
    color: #9DB4A0;
    margin-bottom: 1rem;
}

.quick-card h4 {
    margin-bottom: 0.5rem;
}

.quick-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0;
}

/* Text Center */
.text-center {
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .content-grid,
    .application-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-card {
        position: static;
    }
    
    .overview-grid,
    .activities-grid {
        grid-template-columns: 1fr;
    }
    
    .activities-grid.reverse {
        direction: ltr;
    }
    
    .focus-grid,
    .requirements-grid,
    .skills-grid,
    .age-grid,
    .pricing-grid,
    .included-grid,
    .documents-grid,
    .meals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid,
    .expect-grid,
    .special-grid,
    .discounts-grid,
    .quick-grid,
    .extended-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 8rem 0 3rem;
    }
    
    .header-content h1 {
        font-size: 2.25rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .schedule-header {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .focus-grid,
    .requirements-grid,
    .skills-grid,
    .age-grid,
    .pricing-grid,
    .included-grid,
    .documents-grid,
    .meals-grid,
    .steps-grid,
    .expect-grid,
    .special-grid,
    .discounts-grid,
    .quick-grid,
    .extended-grid {
        grid-template-columns: 1fr;
    }
    
    .program-highlights {
        grid-template-columns: 1fr;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
    
    .social-links-large {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .application-form-wrapper,
    .form-wrapper,
    .booking-card {
        padding: 1.5rem;
    }
}