.logo { display: flex; align-items: center; padding: 6px 0; } .required { color: #d9534f; } .btn-outline:hover { background: var(--color-light-sage); } .hero { padding: 5.5rem 0 4rem; text-align: center; } .eyebrow { margin: 0 0 0.5rem; color: var(--color-sage); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; } h1 { color: var(--color-navy); font-size: 2.2rem; font-weight: 800; line-height: 1.25; letter-spacing: normal; margin-bottom: 1.25rem; } @media (min-width: 768px) { h1 { font-size: 3rem; } } .hero-text { max-width: 650px; margin: 0 auto 2rem; font-size: 1.15rem; opacity: 0.85; } .section { padding: 4rem 0; } .section-alt { background-color: rgba(232, 237, 225, 0.3); } .section-header { text-align: center; margin-bottom: 3rem; } .section-title { font-size: 2rem; font-weight: 700; color: var(--color-navy); margin-bottom: 0.75rem; } .section-desc { font-size: 1.1rem; color: var(--color-text); opacity: 0.85; max-width: 700px; margin: 0 auto; } .cards-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; } @media (min-width: 768px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } } @media (min-width: 1024px) { .cards-grid { grid-template-columns: repeat(3, 1fr); } } .service-card { background: var(--color-white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: var(--transition); } .service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-sage); } .service-title { font-size: 1.3rem; font-weight: 700; color: var(--color-navy); margin-bottom: 0.25rem; line-height: 1.3; } .service-title--reserve-2-lines { min-height: 2.6em; } .service-card-img { width: 100%; height: 160px; object-fit: cover; border-radius: 10px; margin-bottom: 1rem; display: block; } .service-subtitle { font-size: 0.9rem; font-weight: 600; color: var(--color-sage); margin-bottom: 1rem; min-height: 1.2em; } .service-details { font-size: 0.85rem; color: var(--color-text); opacity: 0.8; font-weight: 600; margin-bottom: 0.75rem; display: inline-block; background: var(--color-light-sage); padding: 0.25rem 0.75rem; border-radius: 20px;} .service-desc { font-size: 0.95rem; color: var(--color-text); opacity: 0.85; margin-bottom: 2rem; flex-grow: 1; } .course-more-btn { width: 100%; margin-bottom: 0.75rem; } .course-modal { position: fixed; inset: 0; z-index: 2000; display: grid; place-items: center; padding: 1rem; background: rgba(24, 54, 76, 0.68); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity 0.25s ease, visibility 0.25s ease; } .course-modal.is-open { opacity: 1; visibility: visible; pointer-events: auto; } body.course-modal-open { overflow: hidden; } .course-modal-dialog { position: relative; width: min(680px, 100%); max-height: calc(100vh - 2rem); overflow-y: auto; background: var(--color-white); border-radius: var(--radius-lg); box-shadow: 0 18px 48px rgba(24, 54, 76, 0.3); } .course-modal-image { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; border-radius: var(--radius-lg) var(--radius-lg) 0 0; } .course-modal-close { position: absolute; top: 0.75rem; right: 0.75rem; z-index: 1; width: 42px; height: 42px; border: 1px solid var(--color-border); border-radius: 50%; background: var(--color-white); color: var(--color-navy); box-shadow: var(--shadow-md); cursor: pointer; font: 400 2rem/1 var(--font-main); } .course-modal-close:hover { background: var(--color-light-sage); } .course-modal-body { padding: 1.75rem; } .course-modal-title { margin: 0 0 0.75rem; color: var(--color-navy); font-size: 1.65rem; line-height: 1.25; } .course-modal-description { margin: 0; color: var(--color-text); white-space: pre-line; } .course-modal-select-btn { width: 100%; margin-top: 1.5rem; } @media (max-width: 540px) { .course-modal { padding: 0.75rem; } .course-modal-dialog { max-height: calc(100vh - 1.5rem); } .course-modal-body { padding: 1.25rem; } .course-modal-title { font-size: 1.4rem; } } .steps-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; } @media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(4, 1fr); } } .step-card { background: var(--color-white); border-radius: var(--radius-lg); padding: 2rem 1.5rem; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); } .step-number { font-size: 1.25rem; font-weight: 800; color: var(--color-sage); margin-bottom: 0.5rem; } .step-title { font-size: 1.15rem; font-weight: 700; color: var(--color-navy); margin-bottom: 0.5rem; } .step-desc { font-size: 0.95rem; color: var(--color-text); opacity: 0.85; } .format-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 800px; margin: 0 auto; } @media (min-width: 768px) { .format-grid { grid-template-columns: repeat(2, 1fr); } } .format-card { background: var(--color-white); border-radius: var(--radius-lg); padding: 2rem; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); text-align: center; transition: var(--transition); } .format-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--color-sage); } .format-icon { width: 56px; height: 56px; border-radius: 50%; background-color: var(--color-light-sage); color: var(--color-sage); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.85rem; } .format-icon svg { width: 28px; height: 28px; } .format-title { font-size: 1.2rem; font-weight: 700; color: var(--color-navy); margin-bottom: 0.5rem; } .format-desc { font-size: 0.95rem; color: var(--color-text); opacity: 0.85; } .format-note { text-align: center; max-width: 700px; margin: 2rem auto 0; } .format-note p { font-size: 1rem; color: var(--color-text); } .format-note p:first-child { font-weight: 700; color: var(--color-navy); margin-bottom: 0.35rem; } .format-note p:last-child { opacity: 0.85; } .form-wrapper { max-width: 850px; margin: 0 auto; } .form-section { background: var(--color-white); border-radius: var(--radius-lg); padding: 2.5rem; border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); margin-bottom: 2rem; } .form-section-title { font-size: 1.4rem; font-weight: 700; color: var(--color-navy); margin-bottom: 0.5rem; } .form-section-desc { font-size: 0.95rem; color: var(--color-text); opacity: 0.85; margin-bottom: 1.5rem; } .form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 1.25rem; } @media (min-width: 600px) { .form-row-2 { grid-template-columns: repeat(2, 1fr); } } .form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.25rem; } .form-label { font-weight: 600; font-size: 0.9rem; color: var(--color-navy); } .form-label span.optional { font-weight: 400; color: var(--color-text-alt); font-size: 0.8rem; margin-left: 4px; } .form-control { width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--color-border); border-radius: var(--radius); font-family: var(--font-main); font-size: 0.95rem; background-color: var(--color-cream); color: var(--color-text); transition: var(--transition); } .form-control:focus { outline: none; border-color: var(--color-sage); background-color: var(--color-white); box-shadow: 0 0 0 3px rgba(139, 158, 120, 0.15); } textarea.form-control { min-height: 120px; resize: vertical; } .form-row .form-group { margin-bottom: 0; height: 100%; } .form-row .form-control { margin-top: auto; } .checkbox-grid { display: grid; grid-template-columns: 1fr; gap: 0.75rem; } @media (min-width: 600px) { .checkbox-grid { grid-template-columns: repeat(2, 1fr); } } .checkbox-label { display: flex; align-items: flex-start; gap: 0.75rem; cursor: pointer; font-size: 0.95rem; color: var(--color-text); user-select: none; } .checkbox-option-icon { display: inline-flex; align-items: center; justify-content: center; width: 18px; height: 18px; color: var(--color-sage); flex-shrink: 0; vertical-align: -4px; margin-right: 0.3rem; } .checkbox-option-icon svg { width: 100%; height: 100%; } .text-icon { display: inline-flex; align-items: center; justify-content: center; width: 1em; height: 1em; vertical-align: -0.15em; margin-right: 0.35em; } .text-icon svg { width: 100%; height: 100%; } .text-icon--sage { color: var(--color-sage); } .checkbox-input { appearance: none; width: 22px; height: 22px; border: 1.5px solid var(--color-border); border-radius: 6px; flex-shrink: 0; position: relative; cursor: pointer; transition: 0.2s; background: var(--color-white); margin-top: 2px; } .checkbox-input:checked { background: var(--color-sage); border-color: var(--color-sage); } .checkbox-input:checked::after { content: ""; position: absolute; inset: 0; margin: auto; width: 14px; height: 14px; pointer-events: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M3 7 L6 10 L11 4' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat; } .checkbox-label:hover .checkbox-input { border-color: var(--color-sage); } .selected-service-box { background: rgba(139, 158, 120, 0.1); border: 1px solid var(--color-sage); border-radius: var(--radius); padding: 1rem 1.25rem; margin-bottom: 2rem; display: none; justify-content: space-between; align-items: center; } .selected-service-box.active { display: flex; } .selected-service-name { font-weight: 700; color: var(--color-navy); } .alt-contact-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; max-width: 900px; margin: 0 auto; } @media (min-width: 768px) { .alt-contact-grid { grid-template-columns: repeat(3, 1fr); } } .alt-card { background: var(--color-white); border-radius: var(--radius); padding: 1.5rem; text-align: center; border: 1px solid var(--color-border); transition: var(--transition); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; } .alt-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: var(--color-sage); } .alt-card-title { font-weight: 700; color: var(--color-navy); font-size: 1.05rem; } .alt-card-value { color: var(--color-sage); font-weight: 600; font-size: 0.95rem; } .faq-grid { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; } .faq-box { background-color: var(--color-white); border: 1px solid var(--color-border); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; transition: var(--transition); } .faq-box[open] { box-shadow: var(--shadow-md); border-color: var(--color-sage); } .faq-summary { font-weight: 700; font-size: 1.05rem; color: var(--color-navy); padding: 1.25rem 1.5rem; cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; user-select: none; transition: var(--transition); } .faq-summary::-webkit-details-marker { display: none; } .faq-summary:hover { background-color: rgba(232, 237, 225, 0.3); color: var(--color-sage); } .faq-arrow { width: 12px; height: 12px; border-right: 2px solid var(--color-navy); border-bottom: 2px solid var(--color-navy); transform: rotate(45deg); transition: transform 0.3s ease; margin-left: 1rem; flex-shrink: 0; } .faq-box[open] .faq-arrow { transform: rotate(-135deg); border-color: var(--color-sage); } .faq-content { padding: 0 1.5rem 1.25rem 1.5rem; font-size: 0.95rem; color: var(--color-text); opacity: 0.9; line-height: 1.6; border-top: 1px solid rgba(35, 68, 92, 0.05); margin-top: -0.25rem; padding-top: 1rem; } footer { background: #172e3f; color: #fff; padding: 2rem 0; text-align: center; font-size: 0.85rem; opacity: 0.9; } .success-message { display: none; background: var(--color-white); border: 2px solid var(--color-sage); border-radius: var(--radius-lg); padding: 3rem 2rem; text-align: center; box-shadow: var(--shadow-md); margin-bottom: 2rem; } .success-message.active { display: block; } .success-title { font-size: 1.5rem; font-weight: 700; color: var(--color-navy); margin-bottom: 0.5rem; } .success-text { font-size: 1.05rem; color: var(--color-text); } @media(max-width: 1024px){ .nav ul { gap: 1rem; } .nav a { font-size: 0.85rem; } .nav .social, .header-inner > .lang-switch { display: none; } } @media(max-width: 1400px){ .logo img { height: 62px; } .nav { display: none; } .menu-btn { display: flex; } } @media(max-width: 850px){ .hero { padding: 4rem 0 2rem; } .form-section { padding: 1.5rem; } } .service-card { position: relative; overflow: hidden; } .ribbon { position: absolute; top: 1.5rem; right: -2.5rem; width: 150px; background: #7E926A; color: #FFFFFF; padding: 0.3rem 0; font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; transform: rotate(45deg); box-shadow: 0 2px 8px rgba(35, 68, 92, 0.12); z-index: 10; text-align: center; font-family: var(--font-main); } .side-nav { position: fixed; right: 20px; top: 50%; transform: translateY(-50%) translateX(40px); background: #fff; backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--color-border); box-shadow: 0 10px 40px rgba(35, 68, 92, 0.18); border-radius: 20px; padding: 0.9rem 0.75rem; z-index: 1000; display: flex; flex-direction: column; align-items: center; gap: 0.55rem; opacity: 0; pointer-events: none; visibility: hidden; transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease; max-height: 80vh; overflow-y: auto; } .side-nav-logo { display: flex; align-items: center; justify-content: center; padding: 4px 0; } .side-nav-logo img { height: 76px; width: auto; object-fit: contain; display: block; } .side-nav-divider { width: 80%; height: 1px; background-color: var(--color-border); margin: 0.25rem 0; } .side-nav-list { display: flex; flex-direction: column; align-items: center; gap: 0.45rem; width: 100%; } .side-nav-link { font-size: 0.825rem; font-weight: 600; color: var(--color-navy); padding: 0.3rem 0.75rem; border-radius: 24px; white-space: nowrap; width: 100%; text-align: center; } .side-nav-link:hover { background-color: var(--color-light-sage); color: var(--color-navy); } .side-nav-btn { padding: 0.55rem 0.9rem; font-size: 0.825rem; border-radius: 10px; white-space: nowrap; width: 100%; min-height: auto; } @media (min-width: 851px) { body.is-scrolled .side-nav { opacity: 1; pointer-events: auto; visibility: visible; transform: translateY(-50%) translateX(0); } } @media (min-width: 851px) and (max-width: 1500px) { main .container { transition: padding-right 0.35s ease; } body.is-scrolled main .container { padding-right: 210px; } } .mobile-floating-btn { display: none; } @media (max-width: 850px) { .mobile-floating-btn { position: fixed; right: 16px; bottom: 75px; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border: 1px solid var(--color-border); border-radius: 50%; width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-lg); z-index: 999; cursor: pointer; opacity: 0; pointer-events: none; transform: scale(0.8); transition: opacity 0.3s ease, transform 0.3s ease; padding: 8px; } .mobile-floating-btn img { width: 100%; height: 100%; object-fit: contain; display: block; } body.is-scrolled .mobile-floating-btn { opacity: 1; pointer-events: auto; transform: scale(1); } } .success-message:focus { outline: 3px solid var(--color-sage); outline-offset: 5px; } .success-icon { display:flex; align-items:center; justify-content:center; width:64px; height:64px; margin:0 auto 1rem; border-radius:50%; background:var(--color-light-sage); color:var(--color-sage); } .success-icon svg { width:36px; height:36px; } .success-next { margin:0.75rem 0 1.25rem; } .success-message .btn { white-space:normal; max-width:100%; } @media(max-width:540px) { .success-message { padding:1.5rem 1rem; } }