/*
Theme Name: A2Z Supporter Custom Theme
Theme URI: https://a2z-supporter.com/
Author: A2Z Supporter Team
Description: Custom premium theme for A2Z Supporter built from static custom designs, optimizing navigation between Main Info and Payment sections.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: a2z-supporter-theme
*/

@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Google Sans Italic */
@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}

/* Google Sans Medium */
@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* Google Sans Medium Italic */
@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
}

/* Google Sans SemiBold */
@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

/* Google Sans SemiBold Italic */
@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-SemiBoldItalic.ttf') format('truetype');
    font-weight: 600;
    font-style: italic;
}

/* Google Sans Bold */
@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

/* Google Sans Bold Italic */
@font-face {
    font-family: 'Google Sans';
    src: url('fonts/GoogleSans-BoldItalic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
}

:root {
--themeC: #108575;
--headC: #08102b;
--bodyC: #08102b;
--bodyCa: #989b9f;
--bodyB: #f4f7f6;
--linkC: #108575;
--linkB: #108575;
--waveB: #79c0b6;
--iconC: #08102b;
--headerB: #ffffff;
--contentB: #fffdfc;
--contentL: #e6e6e6;
--buttonR: 8px;
--sidebarWidth: 280px;
}
body {
font-family: 'Google Sans', sans-serif;
color: var(--bodyC);
background: var(--bodyB);
margin: 0;
padding: 0;
overflow-x: hidden;
}

* {
font-family: 'Google Sans', sans-serif;
}
h1, h2, h3, h4, h5, h6 {
font-weight: 700;
color: var(--headC);
}
a {
color: var(--linkC);
text-decoration: none;
transition: all .2s ease;
}
a:hover {
opacity: .8;
text-decoration: none;
}
.app-container {
min-height: 100vh;
position: relative;
}
aside.app-sidebar {
width: 100%;
background: #08102b;
color: #ffffff;
display: flex;
flex-direction: column;
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
z-index: 1000;
overflow: hidden;
}
main.app-content {
flex: 1;
width: 100%;
display: flex;
flex-direction: column;
}
header.top-navbar {
height: 70px;
background: var(--headerB);
border-bottom: 1px solid #eef2f5;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 30px;
position: sticky;
top: 0;
z-index: 999;
box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
@media (min-width: 992px) {
.app-container {
flex-direction: row;
}
aside.app-sidebar {
width: var(--sidebarWidth);
position: fixed;
top: 0;
bottom: 0;
left: 0;
height: 100vh;
box-shadow: 4px 0 15px rgba(0,0,0,0.1);
display: flex;
flex-direction: column;
overflow: hidden;
}
main.app-content {
margin-left: var(--sidebarWidth);
width: calc(100% - var(--sidebarWidth));
}
}
@media (max-width: 991px) {
.sidebar-brand {
padding: 15px 20px;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
border-bottom: 1px solid rgba(255,255,255,0.08);
}
.expert-status {
margin-top: 0 !important;
}
.sidebar-menu {
padding: 12px !important;
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 8px;
justify-content: center;
}
.sidebar-menu-title {
display: none !important;
}
.sidebar-link {
padding: 8px 14px !important;
border-radius: 20px !important;
background: rgba(255,255,255,0.05);
border-left: none !important;
font-size: 13px !important;
}
.sidebar-link i {
margin-right: 6px !important;
}
.sidebar-link:hover, .sidebar-link.active {
background: var(--themeC) !important;
color: #fff !important;
}
.sidebar-custom-box {
display: none !important;
}
.sidebar-footer-action {
display: none !important;
}
}
.sidebar-brand {
padding: 25px 20px;
border-bottom: 1px solid rgba(255,255,255,0.08);
text-align: center;
flex-shrink: 0;
}
.logo-text {
font-size: 22px;
font-weight: 900;
color: #ffffff;
letter-spacing: 1px;
}
.logo-text span {
color: #f96d3a;
}
.expert-status {
display: inline-flex;
align-items: center;
background: rgba(16, 133, 117, 0.2);
border: 1px solid var(--themeC);
padding: 4px 12px;
border-radius: 20px;
font-size: 12px;
margin-top: 10px;
color: #79c0b6;
}
.status-dot {
width: 8px;
height: 8px;
background-color: #2ec4b6;
border-radius: 50%;
margin-right: 8px;
animation: pulse 1.8s infinite;
}
@keyframes pulse {
0% { transform: scale(0.9); opacity: 0.6; }
50% { transform: scale(1.2); opacity: 1; }
100% { transform: scale(0.9); opacity: 0.6; }
}
.sidebar-menu {
flex: 1;
padding: 20px 0;
overflow-y: auto;
min-height: 0;
}
.sidebar-menu::-webkit-scrollbar {
width: 4px;
}
.sidebar-menu::-webkit-scrollbar-track {
background: transparent;
}
.sidebar-menu::-webkit-scrollbar-thumb {
background: rgba(255,255,255,0.15);
border-radius: 4px;
}
.sidebar-menu::-webkit-scrollbar-thumb:hover {
background: rgba(255,255,255,0.3);
}
.sidebar-menu-title {
font-size: 11px;
text-transform: uppercase;
color: #5c6b84;
font-weight: 700;
padding: 0 25px;
margin-bottom: 15px;
letter-spacing: 1.5px;
}
.sidebar-link {
display: flex;
align-items: center;
padding: 12px 25px;
color: #a0aec0;
font-weight: 500;
font-size: 15px;
border-left: 4px solid transparent;
transition: all 0.2s ease;
}
.sidebar-link i {
width: 25px;
font-size: 16px;
margin-right: 12px;
}
.sidebar-link:hover, .sidebar-link.active {
color: #ffffff;
background: rgba(255, 255, 255, 0.03);
border-left-color: var(--themeC);
}
.sidebar-custom-box {
padding: 20px;
background: rgba(255, 255, 255, 0.03);
border-radius: 12px;
margin: 15px;
border: 1px dashed rgba(255, 255, 255, 0.1);
}
.sidebar-custom-box h5 {
color: #ffa95b;
font-size: 14px;
margin-bottom: 8px;
font-weight: bold;
}
.sidebar-custom-box p {
font-size: 12px;
color: #a0aec0;
line-height: 1.5;
margin-bottom: 0;
}
.sidebar-footer-action {
padding: 20px;
border-top: 1px solid rgba(255,255,255,0.08);
flex-shrink: 0;
}
.btn-sidebar-contact {
display: flex;
align-items: center;
justify-content: center;
background: var(--themeC);
color: #ffffff !important;
font-weight: 700;
padding: 12px;
border-radius: var(--buttonR);
width: 100%;
font-size: 14px;
box-shadow: 0 4px 12px rgba(16, 133, 117, 0.2);
}
.btn-sidebar-contact:hover {
background: #149c89;
transform: translateY(-2px);
}
.btn-sidebar-email {
display: flex;
align-items: center;
justify-content: center;
background: #e2ab63;
color: #08102b !important;
font-weight: 700;
padding: 12px;
border-radius: var(--buttonR);
width: 100%;
font-size: 14px;
border: none;
margin-top: 10px;
transition: all 0.2s ease;
box-shadow: 0 4px 12px rgba(226, 171, 99, 0.15);
}
.btn-sidebar-email:hover {
background: #ebbc7c;
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(226, 171, 99, 0.3);
}
.container-main {
width: 100%;
max-width: 95%;
margin: 0 auto;
padding: 40px 20px;
}
.reason {
background-color: #ffffff;
padding: 40px;
border-radius: 20px;
margin-bottom: 40px;
box-shadow: 0 4px 25px rgba(0,0,0,0.03);
}
.reason h2 {
color: var(--themeC);
font-size: 32px;
margin-bottom: 20px;
}
.reason-bullets {
padding-left: 0;
margin-top: 20px;
}
.package {
background: linear-gradient(135deg, #108575 0%, #085046 100%);
padding: 50px 30px;
border-radius: 20px;
color: #fff;
margin-bottom: 40px;
}
.package h2 {
color: #fff;
font-size: 32px;
text-align: center;
margin-bottom: 15px;
}
.package-sub {
text-align: center;
color: #e6fffa;
font-size: 16px;
max-width: 800px;
margin: 0 auto 40px;
line-height: 1.6;
}
.card-pack {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.2);
border-radius: 12px;
padding: 25px;
height: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
transition: transform 0.3s, box-shadow 0.3s;
position: relative;
}
.card-pack:hover {
transform: translateY(-5px);
background: rgba(255, 255, 255, 0.15);
box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.card-pack.recommended {
border: 2px solid #ffa95b;
}
.badge-rec {
position: absolute;
top: -15px;
right: 20px;
background: #ffa95b;
color: #000;
font-size: 12px;
font-weight: bold;
padding: 4px 12px;
border-radius: 20px;
text-transform: uppercase;
}
.card-pack h3 {
color: #fff;
font-size: 22px;
margin-bottom: 15px;
border-bottom: 1px solid rgba(255,255,255,0.2);
padding-bottom: 10px;
}
.card-pack ul {
padding-left: 0;
list-style: none;
margin-bottom: 25px;
}
.card-pack ul li {
font-size: 15px;
margin-bottom: 8px;
display: flex;
align-items: center;
}
.card-pack ul li i {
color: #ffa95b;
margin-right: 10px;
}
.pack-price {
background: rgba(0,0,0,0.2);
padding: 15px;
border-radius: 8px;
text-align: center;
}
.price-tag {
font-size: 28px;
font-weight: 800;
color: #ffa95b;
}
.deposit-tag {
font-size: 14px;
opacity: 0.9;
margin-top: 5px;
}
.time-tag {
font-size: 13px;
opacity: 0.8;
margin-top: 5px;
}
.table-deliv-sec {
background: #fff;
padding: 40px;
border-radius: 20px;
box-shadow: 0 4px 25px rgba(0,0,0,0.03);
margin-bottom: 40px;
}
.table-deliv-sec h3 {
color: var(--themeC);
font-size: 24px;
margin-bottom: 25px;
text-align: center;
font-weight: 700;
}
.grid-datasets {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 25px;
margin-top: 25px;
}
.dataset-card {
background: #fff;
border: 1px solid #ffd8a8;
border-radius: 16px;
padding: 25px;
box-shadow: 0 4px 15px rgba(0,0,0,0.02);
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
transition: all 0.3s ease;
cursor: pointer;
position: relative;
}
.dataset-card:hover {
transform: translateY(-4px);
box-shadow: 0 10px 25px rgba(183, 85, 1, 0.08);
border-color: #ffa95b;
}
.btn-view-model {
background: #fff3e0;
color: #b75501;
border: 1px solid #ffd8a8;
border-radius: 20px;
padding: 4px 12px;
font-size: 12px;
font-weight: 700;
cursor: pointer;
display: inline-flex;
align-items: center;
gap: 6px;
transition: all 0.2s ease;
}
.btn-view-model:hover {
background: #ffa95b;
color: #ffffff;
border-color: #ffa95b;
transform: translateY(-1px);
}
.model-lightbox {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(8, 16, 43, 0.92);
z-index: 11000;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.3s ease;
padding: 20px;
}
.model-lightbox.active {
display: flex;
opacity: 1;
}
.lightbox-content-wrapper {
background: #ffffff;
border-radius: 20px;
padding: 25px;
max-width: 800px;
width: 100%;
box-shadow: 0 25px 60px rgba(0,0,0,0.4);
position: relative;
text-align: center;
transform: scale(0.9);
transition: transform 0.3s ease;
}
.model-lightbox.active .lightbox-content-wrapper {
transform: scale(1);
}
.lightbox-content-wrapper h4 {
color: var(--themeC);
font-size: 20px;
margin-bottom: 15px;
font-weight: 700;
}
.lightbox-content-wrapper img {
width: 100%;
height: auto;
border-radius: 12px;
border: 1px solid #eee;
max-height: 65vh;
object-fit: contain;
}
.lightbox-close {
position: absolute;
top: 15px;
right: 20px;
color: #888;
font-size: 30px;
font-weight: bold;
cursor: pointer;
transition: color 0.2s;
}
.lightbox-close:hover {
color: #e53e3e;
}
.lightbox-tip {
font-size: 13px;
color: #718096;
margin-top: 15px;
margin-bottom: 0;
}
@media (max-width: 768px) {
.container-main {
max-width: 100%;
padding: 20px 10px;
}
.reason {
padding: 25px 15px;
}
.package {
padding: 40px 15px;
}
}
.portfolio-img-wrapper {
position: relative;
overflow: hidden;
border-radius: 15px;
box-shadow: 0 8px 30px rgba(0,0,0,0.1);
border: 4px solid var(--themeC);
transition: transform 0.3s ease;
}
.portfolio-img-wrapper:hover {
transform: scale(1.02);
}
.portfolio-img {
width: 100%;
height: auto;
display: block;
}
.table-responsive {
border-radius: 12px;
overflow: hidden;
}
.table-deliv {
table-layout: fixed;
width: 100%;
}
.table-deliv th, .table-deliv td {
word-wrap: break-word;
white-space: normal;
padding: 15px 10px;
}
.table-deliv th:first-child, .table-deliv td:first-child {
width: 36%;
text-align: left;
}
.table-deliv th:not(:first-child), .table-deliv td:not(:first-child) {
width: 16%;
}
.table-deliv th {
background-color: #108575;
color: #fff;
font-weight: 600;
text-align: center;
border: 1px solid #149c89 !important;
}
.table-deliv td {
text-align: center;
vertical-align: middle;
border: 1px solid #e9ecef;
}
.check-green {
color: #108575;
font-weight: bold;
}
.cell-text {
font-weight: 600;
color: #555;
}
.payment-section-card {
background-color: #ffffff;
padding: 45px;
border-radius: 24px;
margin-bottom: 40px;
box-shadow: 0 4px 25px rgba(0,0,0,0.03);
}
.payment-section-card h2 {
color: var(--themeC);
font-size: 32px;
margin-bottom: 12px;
font-weight: 800;
}
.step-card {
background: #f8fafc;
border-left: 5px solid var(--themeC);
border-radius: 12px;
padding: 24px;
margin-bottom: 20px;
box-shadow: 0 2px 8px rgba(0,0,0,0.01);
display: flex;
align-items: flex-start;
gap: 20px;
transition: all 0.2s ease;
}
.step-card:hover {
transform: translateX(4px);
box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}
.step-badge {
background: var(--themeC);
color: #fff;
font-weight: 800;
font-size: 16px;
border-radius: 50%;
min-width: 38px;
height: 38px;
display: flex;
align-items: center;
justify-content: center;
}
.step-details h4 {
font-size: 18px;
font-weight: 700;
color: #08102b;
margin-bottom: 8px;
}
.step-details p {
font-size: 15px;
color: #4a5568;
margin-bottom: 0;
line-height: 1.6;
}
.banking-info-box {
background: linear-gradient(135deg, #f0fdf4 0%, #e6fffa 100%);
border: 1px solid #bdf8d4;
border-radius: 16px;
padding: 25px;
margin-top: 15px;
}
.banking-row {
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 1px dashed rgba(16, 133, 117, 0.15);
padding: 10px 0;
}
.banking-row:last-child {
border-bottom: none;
}
.banking-label {
font-weight: 700;
font-size: 14px;
color: #4a5568;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.banking-value-container {
display: flex;
align-items: center;
gap: 10px;
}
.banking-val {
font-family: monospace;
font-size: 16px;
font-weight: bold;
color: var(--themeC);
}
.btn-copy {
background: #ffffff;
border: 1px solid #108575;
border-radius: 6px;
padding: 4px 10px;
font-size: 12px;
color: var(--themeC);
font-weight: bold;
cursor: pointer;
transition: all 0.2s;
}
.btn-copy:hover {
background: var(--themeC);
color: #fff;
}
.wu-cta-btn {
background: linear-gradient(135deg, #ffd43f 0%, #ffc107 100%);
color: #08102b !important;
font-weight: 800;
font-size: 16px;
padding: 16px 30px;
border-radius: 50px;
display: inline-flex;
align-items: center;
gap: 10px;
box-shadow: 0 4px 15px rgba(255, 193, 7, 0.25);
transition: all 0.2s;
border: none;
margin-top: 15px;
}
.wu-cta-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
}
.req-form-sec {
background: #ffffff;
padding: 50px 40px;
border-radius: 24px;
box-shadow: 0 10px 30px rgba(16, 133, 117, 0.05);
border: 1px solid rgba(16, 133, 117, 0.08);
margin-bottom: 40px;
}
.req-form-sec h3 {
color: var(--themeC);
text-align: center;
font-size: 28px;
margin-bottom: 10px;
}
.req-form-sec .desc {
text-align: center;
color: #666;
margin-bottom: 40px;
font-size: 16px;
}
.form-block-card {
background: #fcfdfe;
border: 1px solid #eef2f5;
border-radius: 16px;
padding: 30px;
margin-bottom: 30px;
box-shadow: 0 4px 15px rgba(0,0,0,0.011);
}
.form-block-title {
font-size: 17px;
font-weight: 700;
color: var(--themeC);
margin-bottom: 22px;
border-left: 4px solid var(--themeC);
padding-left: 12px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.form-group label {
font-weight: 600;
color: #374151;
font-size: 14px;
margin-bottom: 8px;
}
.form-control {
border-radius: 10px;
border: 1px solid #d1d5db;
padding: 12px 16px;
height: auto;
font-size: 15px;
transition: all 0.3s;
}
.form-control:focus {
border-color: var(--themeC);
box-shadow: 0 0 0 3px rgba(16, 133, 117, 0.15);
}
.help-text {
font-size: 12px;
color: #6b7280;
margin-top: 5px;
}
.btn-premium-submit {
background: linear-gradient(135deg, #108575 0%, #0a5a4f 100%);
color: #ffffff !important;
font-weight: 700;
font-size: 16px;
letter-spacing: 0.5px;
padding: 16px 45px;
border: none;
border-radius: 50px;
cursor: pointer;
box-shadow: 0 8px 20px rgba(16, 133, 117, 0.3);
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 12px;
}
.btn-premium-submit:hover {
transform: translateY(-3px);
box-shadow: 0 12px 28px rgba(16, 133, 117, 0.45);
background: linear-gradient(135deg, #149c89 0%, #0d695c 100%);
}
.dataset-sec {
background: #fff2dc;
border-left: 5px solid #ffa95b;
padding: 30px;
border-radius: 12px;
margin-bottom: 40px;
}
.dataset-sec h3 {
color: #b75501;
font-size: 24px;
margin-bottom: 15px;
}
.dataset-sec p {
font-size: 15px;
line-height: 1.6;
}
.dataset-price-container {
background: #fff3e0;
border-radius: 8px;
padding: 10px 14px;
margin-top: auto;
display: flex;
align-items: center;
justify-content: space-between;
border: 1px solid #ffe0b2;
}
.dataset-price-label {
font-size: 12px;
font-weight: 700;
color: #e65100;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.dataset-price-val {
font-size: 21px;
font-weight: 800;
color: #d84315;
}
.info-contact {
padding: 40px;
background: #e8f6f2;
border-radius: 20px;
margin-bottom: 40px;
}
.info-contact h2 {
color: var(--themeC);
text-align: center;
margin-bottom: 30px;
}
.contact-card {
background: #fff;
border-radius: 12px;
padding: 25px;
text-align: center;
box-shadow: 0 4px 12px rgba(0,0,0,0.03);
height: 100%;
}
.contact-card i {
font-size: 32px;
color: var(--themeC);
margin-bottom: 15px;
}
.contact-card h4 {
font-size: 18px;
margin-bottom: 10px;
}
.contact-card p, .contact-card a {
font-size: 16px;
font-weight: bold;
}
.faq-sec {
background: #fff;
padding: 40px;
border-radius: 20px;
box-shadow: 0 4px 20px rgba(0,0,0,0.05);
margin-bottom: 40px;
}
.faq-sec h2 {
color: var(--themeC);
text-align: center;
margin-bottom: 35px;
}
details.ac {
background: #f0fdf4;
border: 1px solid #bdf8d4;
border-radius: 8px;
margin-bottom: 15px;
padding: 15px;
transition: all 0.3s;
}
details.ac summary {
font-size: 18px;
font-weight: bold;
cursor: pointer;
color: #108575;
}
details.ac .aC {
margin-top: 10px;
font-size: 16px;
color: #4a5568;
line-height: 1.6;
}
#customToast {
display: none;
position: fixed;
top: 90px;
right: 20px;
z-index: 10000;
color: #fff;
padding: 20px 26px;
border-radius: 12px;
box-shadow: 0 6px 18px rgba(0,0,0,0.18);
max-width: 450px;
transition: background-color 0.3s, border-left 0.3s;
}
footer {
background: linear-gradient(135deg, #094a41 0%, #052c26 100%);
color: #e6fffa;
padding: 60px 20px 30px;
border-top: 5px solid #ffa95b;
}
footer a {
color: #a3e2d9;
transition: color 0.2s;
}
footer a:hover {
color: #ffa95b;
text-decoration: none;
}
footer .logo-f {
font-size: 26px;
font-weight: 900;
color: #fff;
margin-bottom: 15px;
letter-spacing: 1px;
}
footer .logo-f span {
color: #f96d3a;
}
.footer-col-title {
color: #ffa95b;
font-size: 18px;
font-weight: bold;
margin-bottom: 20px;
border-bottom: 2px solid rgba(255, 255, 255, 0.1);
padding-bottom: 8px;
}
.footer-qr-card {
background: #fff;
padding: 10px;
border-radius: 12px;
display: inline-block;
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
margin-top: 10px;
}
.footer-qr-img {
width: 110px;
height: 110px;
display: block;
}
.payment-card {
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 12px;
padding: 20px;
font-size: 14px;
}
.payment-card .item {
margin-bottom: 10px;
}
.payment-card .item:last-child {
margin-bottom: 0;
}
.payment-card .label {
color: #a3e2d9;
font-size: 12px;
text-transform: uppercase;
font-weight: bold;
margin-bottom: 2px;
}
.payment-card .val {
color: #ffffff;
font-weight: 500;
}
input, select, textarea, button, .form-control, .btn {
font-family: 'Google Sans', sans-serif !important;
}
.section-title {
    font-weight: 900 !important;
    line-height: 1.2;
    margin-bottom: 25px;
}
/* ==================== CSS CHUNG CHO TOÀN BỘ SITE ==================== */

/* Shadow chung - Không ép background trắng cho tất cả */
.reason,
.table-deliv-sec,
.req-form-sec,
.info-contact,
.faq-sec,
.payment-section-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07) !important;
    border: 1px solid rgba(16, 133, 117, 0.08);
    border-radius: 20px;
}

/* Giữ nguyên background đặc biệt cho 2 section có màu */
.package {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border: none;
}

.dataset-sec {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
}

/* Shadow cho các card nhỏ */
.dataset-card,
.card-pack {
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.07) !important;
}

/* Hover effect */
.step-card,
.dataset-card,
.card-pack {
    transition: all 0.3s ease;
}

.step-card:hover,
.dataset-card:hover,
.card-pack:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10) !important;
    transform: translateY(-3px);
}

/* CSS RIÊNG CHO CRONBACH */
/* Thiết kế tinh chỉnh mới cho Header Card - Nền sáng,chỉ nổi bật cụm từ tiêu đề */
/* Thiết kế tinh chỉnh mới cho Header Card - Nền sáng,chỉ nổi bật cụm từ tiêu đề */
.cronbach-page-header-card {
  background:#fff;
  border:1px solid rgba(16,133,117,0.12);
  box-shadow:0 10px 30px rgba(16,133,117,0.04) !important;
  padding:28px 40px;   
  margin-bottom: 25px;            /* Giảm margin-bottom */
}

.cronbach-page-header-card h1 {
  color:var(--headC) !important;
  font-size:32px;
  font-weight:900;
  margin-bottom: 30px;
  letter-spacing:-0.5px;
  line-height:1.4;
}

.cronbach-page-header-card p {
  color:#4a5568;
  font-size:16px;
  max-width:950px;
  margin-bottom:0;
  opacity:1;
  line-height:1.8;
}
/* Khối Highlight Xanh Ngọc thời thượng bọc riêng cho cụm chữ tiêu đề */
        .cronbach-page-header-card h1 .title-highlight {
  background:linear-gradient(120deg,#e8f6f2 0%,#f0fdf4 100%);
  color:var(--themeC);
  padding:10px 24px;
  border-radius:16px;
  display:inline-block;
  border-left:6px solid var(--themeC);
  box-shadow:0 4px 15px rgba(16,133,117,0.08);
}
.cronbach-page-header-card p {
  color:#4a5568;
  /* Màu xám đậm sang trọng và dễ đọc */
            font-size:16px;
  max-width:950px;
  margin-bottom:0;
  opacity:1;
  line-height:1.8;
}
/* Section titles đồng bộ theo tông màu xanh ngọc (themeC) rực rỡ và chuyên nghiệp */
        .cronbach-article .sec-title {
  display:flex;
  align-items:center;
  gap:15px;
  color:var(--themeC);
  /* Đổi sang màu xanh ngọc theo yêu cầu */
            font-size:24px;
  font-weight:800;
  margin:5px 0 25px 0;
  padding-bottom:12px;
  border-bottom:2px solid #eef2f5;
}
.cronbach-article .sec-title .num-tag {
  background:var(--themeC);
  color:#ffffff;
  width:38px;
  height:38px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  font-weight:bold;
  box-shadow:0 4px 10px rgba(16,133,117,0.2);
  flex-shrink:0;
}
.cronbach-article p {
  font-size:15.5px;
  line-height:1.8;
  color:#4a5568;
  margin-bottom:20px;
}
/* Hộp thông tin (Insight & Note & Tip Boxes) nâng cấp cực kỳ đẹp mắt */
        .cronbach-article .insight-box {
  background:#e8f6f2;
  border-left:5px solid var(--themeC);
  border-radius:14px;
  padding:22px 28px;
  margin:25px 0;
  color:#0a5a4f;
  font-size:15.5px;
  line-height:1.7;
  display:flex;
  align-items:flex-start;
  gap:15px;
}
.cronbach-article .insight-box i {
  color:var(--themeC);
  font-size:20px;
  margin-top:3px;
}
.cronbach-article .note-box {
  background:#fff8ec;
  border-left:5px solid var(--accentC);
  border-radius:14px;
  padding:22px 28px;
  margin:25px 0;
  color:#7c4a03;
  font-size:15px;
  line-height:1.7;
  display:flex;
  align-items:flex-start;
  gap:15px;
}
.cronbach-article .note-box i {
  color:var(--accentOrange);
  font-size:20px;
  margin-top:3px;
}
.cronbach-article .tip-box {
  background:#fffcf6;
  border:1.5px dashed var(--accentC);
  border-radius:14px;
  padding:20px 25px;
  margin-top:25px;
  color:#7c4a03;
  font-size:15px;
  line-height:1.7;
  display:flex;
  align-items:flex-start;
  gap:12px;
}
.cronbach-article .tip-box i {
  color:var(--accentOrange);
  font-size:18px;
  margin-top:3px;
}
/* Thiết kế Chip Likert bo góc hiện đại */
        .cronbach-article .likert-row {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:25px 0;
}
.cronbach-article .likert-chip {
  flex:1;
  min-width:130px;
  text-align:center;
  padding:12px 10px;
  border-radius:12px;
  color:#ffffff;
  font-size:13.5px;
  font-weight:700;
  box-shadow:0 4px 10px rgba(0,0,0,0.04);
  transition:var(--transition);
}
.cronbach-article .likert-chip:hover {
  transform:translateY(-2px);
  box-shadow:0 6px 15px rgba(0,0,0,0.08);
}
/* Giao diện Bảng biểu mô phỏng SPSS đẳng cấp */
        .cronbach-table-container {
  border-radius:16px;
  overflow:hidden;
  border:1px solid #e2e8f0;
  margin:25px 0;
  box-shadow:0 4px 15px rgba(0,0,0,0.02);
}
.cronbach-article table.spss-table {
  width:100%;
  border-collapse:collapse;
  margin:0;
  background:#ffffff;
}
.cronbach-article table.spss-table th {
  background:var(--themeC);
  color:#ffffff;
  padding:16px 14px;
  font-size:13.5px;
  font-weight:700;
  text-align:center;
  border:1px solid #0d6e60;
  letter-spacing:0.5px;
}
.cronbach-article table.spss-table td {
  padding:14px 12px;
  font-size:14.5px;
  text-align:center;
  border:1px solid #edf2f7;
  color:#2d3748;
}
.cronbach-article table.spss-table tr:nth-child(even) {
  background-color:#f7fafc;
}
.cronbach-article table.spss-table td.lefttd {
  text-align:left;
  font-weight:500;
}
.cronbach-article .pass-cell {
  background:#e8f6f2 !important;
  color:#0a5a4f;
  font-weight:700;
}
/* Điều chỉnh Container chứa các Tiêu chí:Chuyển từ Grid sang Flex dọc (Sequence) */
        .cronbach-article .criteria-sequence {
  display:flex;
  flex-direction:column;
  gap:25px;
  /* Giảm gap giữa hai tiêu chí bự */
            margin-bottom:25px;
  position:relative;
}
/* 1. Khối Tiêu chí:Nền chuẩn dataset-sec (#fff2dc),viền cam vàng (#ffa95b) */
.cronbach-article .criteria-card {
  background:#fff2dc;
  /* Màu nền vàng chuẩn dataset-sec */
    border:1.5px solid #ffe0b2;
  /* Viền vàng cam nhẹ */
    border-left:6px solid #ffa95b;
  /* Gờ trái cam vàng đặc trưng */
    border-radius:18px;
  padding:30px;
  box-shadow:0 4px 15px rgba(183,85,1,0.05) !important;
  transition:var(--transition);
}
.cronbach-article .criteria-card:hover {
  box-shadow:0 8px 20px rgba(183,85,1,0.1) !important;
  border-color:#ffa95b;
}
.cronbach-article .criteria-card h4 {
  color:#b75501;
  /* Màu tiêu đề chuẩn */
    font-size:19px;
  font-weight:800;
  margin-bottom:15px;
  display:flex;
  align-items:center;
  gap:12px;
}
.cronbach-article .criteria-card h4 i {
  color:#b75501 !important;
  /* Icon cùng màu nâu cam với chữ */
}
/* 2. Bảng Alpha:Nền trắng,viền vàng cam nhẹ "gờ" lên như PEN1 Dataset */
.cronbach-article .tier-table {
  width:100%;
  border-collapse:separate;
  border-spacing:0 10px;
  margin-top:15px;
}
.cronbach-article .tier-table tr {
  background:#fffcf8;
  border-radius:8px;
  box-shadow:0 2px 4px rgba(0,0,0,0.03);
}
.cronbach-article .tier-table td {
  padding:14px 16px;
  font-size:14px;
  border:1px solid #ffe0b2;
  /* Viền vàng cam mảnh */
    border-left:none;
  border-right:none;
}
/* Bo góc các đầu dòng để giống style thẻ card */
.cronbach-article .tier-table tr td:first-child {
  border-left:1px solid #ffe0b2;
  border-top-left-radius:8px;
  border-bottom-left-radius:8px;
}
.cronbach-article .tier-table tr td:last-child {
  border-right:1px solid #ffe0b2;
  border-top-right-radius:8px;
  border-bottom-right-radius:8px;
}
/* Thiết kế biểu đồ nằm ngang tông màu ấm nhẹ */
        .cronbach-article .criteria-horizontal-badge {
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:linear-gradient(135deg,#fffcf6 0%,#ffffff 100%);
  border-radius:16px;
  padding:20px 30px;
  border:1px solid #ffd8a8;
  /* Viền cam sữa mượt mà */
            margin-top:20px;
  flex-wrap:wrap;
  gap:15px;
}
.cronbach-article .tier-pill {
  display:inline-block;
  padding:6px 14px;
  border-radius:30px;
  font-size:11.5px;
  font-weight:700;
  color:#ffffff;
  text-transform:uppercase;
  letter-spacing:0.5px;
}
/* Điểm nhấn hiển thị kết quả (SPSS Output Highlight Box) */
        .cronbach-article .result-highlight {
  display:flex;
  align-items:center;
  background:linear-gradient(135deg,#f8fafc 0%,#edf2f7 100%);
  border:1px solid #e2e8f0;
  border-radius:18px;
  padding:30px 40px;
  margin-bottom:30px;
  flex-wrap:wrap;
  gap:20px;
}
.cronbach-article .result-num {
  font-size:54px;
  font-weight:900;
  color:var(--themeC);
  line-height:1;
  letter-spacing:-1px;
}
.cronbach-article .pass-pill {
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--themeC);
  color:#ffffff;
  font-weight:700;
  font-size:13px;
  padding:8px 18px;
  border-radius:30px;
  box-shadow:0 4px 10px rgba(16,133,117,0.2);
}
/* Các bước thực hiện timeline (Step card timeline) */
        .cronbach-article .timeline-container {
  margin-top:30px;
}
.cronbach-article .cronbach-step-card {
  background:#f8fafc;
  border-left:5px solid var(--themeC);
  border-radius:16px;
  padding:24px 30px;
  margin-bottom:20px;
  box-shadow:0 2px 10px rgba(0,0,0,0.01) !important;
  display:flex;
  align-items:flex-start;
  gap:20px;
  transition:var(--transition);
}
.cronbach-article .cronbach-step-card:hover {
  transform:translateX(6px);
  background:#ffffff;
  box-shadow:0 10px 25px rgba(0,0,0,0.04) !important;
}
.cronbach-article .cronbach-step-badge {
  background:var(--themeC);
  color:#ffffff;
  font-weight:800;
  font-size:16px;
  border-radius:50%;
  min-width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 8px rgba(16,133,117,0.25);
}
.cronbach-article .cronbach-step-details h4 {
  font-size:17.5px;
  font-weight:700;
  color:var(--headC);
  margin-top:4px;
  margin-bottom:8px;
}
.cronbach-article .cronbach-step-details p {
  font-size:14.5px;
  color:#4a5568;
  margin-bottom:0;
  line-height:1.6;
}
/* ====================== ALERT CARD - MÀU ĐỎ CẢNH BÁO ====================== */
/* Hộp cảnh báo quan trọng - Đồng bộ với class thực tế trong HTML */
.cronbach-article .step-card.alert-card {
    border-left: 6px solid #e53e3e !important;
    background: #fff5f5 !important;
    border: 1px solid #fecaca;
    margin-bottom: 25px;
}

.cronbach-article .step-card.alert-card .step-badge {
    background: #e53e3e !important;
    box-shadow: 0 4px 12px rgba(229, 62, 62, 0.4);
}

.cronbach-article .step-card.alert-card h4 {
    color: #c53030 !important;
    font-weight: 800;
}

.cronbach-article .step-card.alert-card p {
    color: #742a2a;
    font-weight: 500;
    line-height: 1.65;
}

.cronbach-article .step-card.alert-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(229, 62, 62, 0.18) !important;
}
/* Container của Sơ đồ SVG hỗ trợ cuộn trên mobile */
        .cronbach-diagram-container {
  overflow-x:auto;
  background:#fdfdfd;
  border-radius:20px;
  padding:30px;
  border:1px solid #eef2f5;
  box-shadow:inset 0 2px 10px rgba(0,0,0,0.01);
  text-align:center;
  margin-top:25px;
}
.cronbach-diagram-container::-webkit-scrollbar {
  height:6px;
}
.cronbach-diagram-container::-webkit-scrollbar-track {
  background:#f1f1f1;
  border-radius:10px;
}
.cronbach-diagram-container::-webkit-scrollbar-thumb {
  background:#cbd5e0;
  border-radius:10px;
}
/* Responsive thiết kế */
        @media (max-width:768px) {
  .cronbach-page-header-card h1 {
  font-size:26px;
}
.cronbach-article .result-highlight {
  padding:20px;
  flex-direction:column;
  align-items:flex-start;
}
.cronbach-article .result-highlight div[style*="height:50px"] {
  display:none;
}
.cronbach-article table.spss-table th,.cronbach-article table.spss-table td {
  padding:10px 8px;
  font-size:13px;
}
.cronbach-article .criteria-horizontal-badge {
  flex-direction:column;
  align-items:center;
  text-align:center;
}
}/* SVG ForeignObject style để đồng bộ phông chữ */
        .cronbach-nbox {
  display:flex;
  align-items:center;
  justify-content:center;
  height:100%;
  padding:10px;
  box-sizing:border-box;
  text-align:center;
}
.cronbach-ntext {
  font-family:'Google Sans',sans-serif !important;
  line-height:1.4;
}
/* Mã hóa GSA - Đã fix độ ưu tiên */
.cronbach-code-cell,.cronbach-code-cell strong {
  color:var(--themeC) !important;
  font-weight:800 !important;
  font-size:15px !important;
}
/* Ô tròn Likert */
.cronbach-likert-circle {
  display:flex;
  justify-content:center;
  align-items:center;
  width:24px;
  height:24px;
  margin:auto;
  border:2px solid #cbd5e0;
  border-radius:50%;
  color:#cbd5e0;
  font-size:12px;
  transition:all .2s ease;
}
/* Đồng bộ màu xanh ngọc cho các ô kết quả đạt chuẩn */
.cronbach-article table.spss-table td.pass-cell {
  color:var(--themeC) !important;
  font-weight:700;
}
/* Đồng bộ màu cho Icon FontAwesome trong các ô đạt chuẩn */
.cronbach-article table.spss-table td.pass-cell i {
  color:var(--themeC) !important;
}
/* Card hiển thị kết quả thành công - Đã fix gờ bên trái */
.cronbach-article .cronbach-step-card.cronbach-success-card {
  border:1px solid #d1fae5;
  /* Viền các cạnh còn lại nhạt hơn */
    border-left:5px solid #108575 !important;
  /* Gờ bên trái dày và đậm */
    background-color:#f0fdf9;
  /* Nền xanh nhạt */
}
.cronbach-article .cronbach-step-card.cronbach-success-card .cronbach-step-badge {
  background-color:#108575;
  /* Màu badge xanh ngọc */
    color:#ffffff;
}
.cronbach-article .cronbach-step-card.cronbach-success-card h4 {
  color:#108575;
  /* Màu tiêu đề xanh ngọc */
}
.cronbach-diagram-text {
  font-size:13.5px;
  color:#2d3748;
  font-weight:500;
}
.cronbach-diagram-text-left {
  font-size:13px;
  color:#7c4a03;
  text-align:left;
}
.cronbach-orange-mark {
  color:#f96d3a;
  font-weight:700;
  margin-right:5px;
}
.cronbach-arrow-mark {
  color:#b75501;
  font-weight:700;
  margin-right:5px;
}

/* ====================================================================
   Cronbach flowchart — extra helper classes (Card 6 decision diagram)
   These replace the inline styles that used to sit on every box/label
   so the diagram inherits the same design tokens as the rest of the
   article and is easier to re-skin later.
   ==================================================================== */

/* Teal counterpart to .cronbach-orange-mark, for "?" marks on the
   teal-toned decision boxes */
.cronbach-teal-mark {
  color: var(--themeC);
  font-weight: 700;
  margin-right: 5px;
}

/* Compact left-aligned decision text (e.g. the item-total correlation
   check in Case B), neutral grey tone */
.cronbach-diagram-text-left-sm {
  font-size: 12px;
  color: #2d3748;
  text-align: left;
  font-weight: 500;
}

/* Bold 12px left-aligned verdict text — color set via the .is-success /
   .is-danger modifiers below */
.cronbach-result-text {
  font-size: 12px;
  font-weight: 400;
  text-align: left;
}
.cronbach-result-text.is-success {
  color: #0a5a4f;
}
.cronbach-result-text.is-danger {
  color: #c53030;
}

/* Softer, medium-weight verdict text for "provisionally acceptable" */
.cronbach-result-muted {
  font-size: 12px;
  color: #7c4a03;
  text-align: left;
  font-weight: 400;
}

/* Neutral inline icon mark — inherits the parent's text color instead
   of forcing its own */
.cronbach-icon-mark {
  font-weight: 700;
  margin-right: 5px;
}

/* Arrow / connector text labels with no background plate, so they
   never overlap the line or arrowhead they describe */
.cronbach-flow-label {
  font-family: 'Google Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
}

/* Box background presets applied directly on SVG <rect> nodes via
   class, replacing one-off fill/stroke attributes */
.cronbach-box-neutral {
  fill: #ffffff;
  stroke: #cbd5e0;
}
.cronbach-box-action {
  fill: #fff8ec;
  stroke: #ffa95b;
}
.cronbach-box-info {
  fill: #fff3e0;
  stroke: #ffa95b;
}
.cronbach-box-success {
  fill: #e8f6f2;
  stroke: #108575;
}
.cronbach-box-danger {
  fill: #fff5f5;
  stroke: #e53e3e;
}

/* Vibrant-green "rule" card — mirrors .step-card.success-card 1:1,
   just with a fresh green ridge instead of the theme teal */
.cronbach-article .step-card.rule-card {
  border-left: 6px solid #22c55e !important;
  background: #f1fdf6 !important;
  border: 1px solid #bbf7d0;
}
.cronbach-article .step-card.rule-card .step-badge {
  background: #22c55e !important;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
}
.cronbach-article .step-card.rule-card h4 {
  color: #15803d !important;
  font-weight: 800;
}
.cronbach-article .step-card.rule-card p {
  color: #166534;
  font-weight: 500;
  line-height: 1.65;
}
.cronbach-article .step-card.rule-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.18) !important;
}
.diagram-container{
    background:#f6f8fa;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:24px;
    overflow-x:auto;
    margin-top:25px;
}
.success-card{
    background:#e8f6f2 !important;
    border-left:5px solid #108575;
}
.success-card .step-details h4{
    color:#108575;
}
/* ÉP FONT KATEX CÓ CHÂN (Serif) */
    .katex {
        font-family: "Cambria Math", Cambria, "Times New Roman", serif !important;
        font-size: 1.02em !important;
    }
    
    .katex .base,
    .katex .mathnormal,
    .katex .mathrm,
    .katex .mord,
    .katex .mrel,
    .katex .mpunct,
    .katex .mbin,
    .katex .mi,
    .katex .mo {
        font-family: "Cambria Math", Cambria, "Times New Roman", serif !important;
    }