.program-hero {
    min-height: 80vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #4a90e2 100%);
    display: flex;
    align-items: center;
    color: var(--white);
    padding: 8rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.program-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 185, 66, 0.2) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.program-hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.program-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.program-badge i {
    color: var(--secondary-color);
}

.program-title {
    font-family: 'Merriweather', serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.program-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    line-height: 1.6;
}

.program-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 950px;
    margin: 0 auto;
}

.stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.stat h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.stat p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.program-overview {
    padding: 6rem 0;
    background: var(--white);
}

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

.overview-text h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 1.5rem;
}

.connection-diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.diagram-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    background: var(--light-blue);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.diagram-item i {
    font-size: 3rem;
    color: var(--primary-color);
}

.diagram-item span {
    font-weight: 600;
    color: var(--primary-color);
}

.connection-line {
    display: flex;
    align-items: center;
    position: relative;
}

.connection-line::before {
    content: '';
    width: 60px;
    height: 2px;
    background: var(--secondary-color);
    position: absolute;
    z-index: 0;
}

.connection-line i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    background: var(--white);
    padding: 0.5rem;
    border-radius: 50%;
    z-index: 1;
    position: relative;
}

.program-meaning {
    padding: 6rem 0;
    background: var(--light-gray);
}

.meaning-content h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

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

.meaning-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.meaning-card:hover {
    transform: translateY(-10px);
}

.meaning-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.meaning-icon i {
    font-size: 2rem;
    color: var(--white);
}

.meaning-card h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.meaning-card p {
    color: var(--light-text);
    line-height: 1.6;
}

.program-steps {
    padding: 6rem 0;
    background: var(--white);
}

.program-steps h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 4rem;
}

.steps-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--secondary-color);
    transform: translateX(-50%);
}

.step-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 4rem;
    position: relative;
}

.step-item:nth-child(odd) {
    flex-direction: row;
}

.step-item:nth-child(even) {
    flex-direction: row-reverse;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: var(--shadow);
}

.step-content {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(44, 90, 160, 0.22);
    border: 1px solid rgba(44, 90, 160, 0.1);
    max-width: 45%;
    margin-left: 55%;
}

.step-item:nth-child(even) .step-content {
    margin-left: 0;
    margin-right: 55%;
}

.step-item:first-child {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.step-item:first-child .step-content {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.step-item:nth-child(2) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.step-item:nth-child(2) .step-content {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.step-item:nth-child(3) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    flex-direction: row-reverse;
}

.step-item:nth-child(3) .step-content {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    order: 1;
}

.step-item:nth-child(3) .step-documents {
    order: 2;
}

.step-item:nth-child(4) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.step-item:nth-child(4) .step-content {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    order: 2;
}

.step-item:nth-child(5) {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.step-item:nth-child(5) .step-content {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    order: 2;
}

.step-payment {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.payment-container {
    background: var(--white);
    padding: 2rem;
    padding-left: 4rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.15);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: visible;
    max-width: 390px;
    min-height: 320px;
}

.payment-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #007e3a, #f4b942, #007e3a);
    border-radius: 23px;
    z-index: -1;
    animation: borderRotate 4s linear infinite;
}

.payment-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.payment-header i {
    font-size: 1.5rem;
    color: #007e3a;
}

.payment-info {
    margin-bottom: 1.5rem;
}

.account-details {
    background: #f8f9ff;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.3rem 0;
    border-bottom: 1px solid rgba(44, 90, 160, 0.1);
    font-size: 0.9rem;
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row strong {
    color: var(--primary-color);
    font-weight: 600;
    min-width: 80px;
}

.transfer-note {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
}

.transfer-note h4 {
    color: #856404;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.note-format {
    background: var(--white);
    padding: 0.5rem;
    border-radius: 5px;
    font-family: monospace;
    font-size: 0.85rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.note-example {
    font-size: 0.85rem;
    color: #856404;
}

.note-example strong {
    color: #721c24;
}

.qr-payment-overlay {
    position: absolute;
    left: -100px;
    top: 45%;
    transform: translateY(-50%);
    z-index: 10;
    text-align: center;
}

.qr-payment-overlay img {
    width: 140px;
    height: 140px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 3px solid var(--white);
}

.qr-payment-overlay:hover img {
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.qr-overlay-text {
    background: var(--primary-color);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
    position: relative;
}

.qr-overlay-text::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--primary-color);
}

.step-documents {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.documents-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.15);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    max-width: 380px;
}

.documents-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--secondary-color), var(--primary-color), var(--secondary-color));
    border-radius: 23px;
    z-index: -1;
    animation: borderRotate 5s linear infinite;
}

.documents-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.documents-header i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.documents-checklist {
    display: flex;
    flex-direction: column;
    /* gap: 1rem; */
    gap: 0.7rem;
    margin-bottom: 1.5rem;
}

.checklist-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    /* gap: 1rem; */
    /* padding: 0.8rem 1rem; */
    /* background: var(--light-blue); */
    border-radius: 10px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s ease forwards;
}

.checklist-item:nth-child(1) { animation-delay: 0.1s; }
.checklist-item:nth-child(2) { animation-delay: 0.2s; }
.checklist-item:nth-child(3) { animation-delay: 0.3s; }
.checklist-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* .checklist-item:hover {
    background: var(--white);
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.1);
    transform: translateX(5px);
} */

.checklist-item i {
    font-size: 1.2rem;
    color: #28a745;
    flex-shrink: 0;
}

.checklist-item span {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 0.95rem;
}

.documents-link {
    margin-top: 1.5rem;
    text-align: center;
}

.view-sample-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.3);
}

.view-sample-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.4);
    text-decoration: none;
    color: var(--white);
}

.view-sample-btn i {
    font-size: 1rem;
}

.documents-note {
    background: #e8f5e8;
    padding: 0.8rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-left: 4px solid #28a745;
}

.documents-note i {
    color: #28a745;
    font-size: 1rem;
}

.documents-note span {
    color: #155724;
    font-size: 0.85rem;
    font-weight: 500;
}

.step-notice {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
}

.notice-container {
    background: var(--white);
    padding: 2rem;
    /* margin-top: 7rem; */
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.15);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    /* width: 400px; */
    max-width: 400px;
}

.notice-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #dc3545, var(--secondary-color), #dc3545);
    border-radius: 23px;
    z-index: -1;
    animation: borderRotate 6s linear infinite;
}

.notice-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: #dc3545;
    font-weight: 600;
    font-size: 1rem;
}

.notice-header i {
    font-size: 1.5rem;
    color: #dc3545;
}

.notice-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.notice-main {
    background: #fff5f5;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #dc3545;
}

.notice-main h4 {
    color: #721c24;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.notice-main p {
    color: #721c24;
    margin: 0;
    line-height: 1.6;
    font-size: 0.9rem;
}

.notice-main strong {
    font-weight: 700;
}

.notice-detail {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.detail-point {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    /* padding: 0.5rem;
    background: #f8f9ff;
    border-radius: 8px; */
}

.detail-point i {
    color: var(--primary-color);
    font-size: 1rem;
    margin-top: 0.1rem;
}

.detail-point span {
    color: var(--dark-text);
    font-size: 0.85rem;
    line-height: 1.4;
}

.notice-highlight {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-align: center;
    justify-content: center;
}

.notice-highlight i {
    font-size: 1.2rem;
}

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

.step-reports {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    position: relative;
    order: 2;
}

.reports-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.15);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    max-width: 380px;
}

.reports-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--primary-color), #28a745, var(--primary-color));
    border-radius: 23px;
    z-index: -1;
    animation: borderRotate 7s linear infinite;
}

.reports-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
}

.reports-header i {
    font-size: 1.5rem;
    color: #28a745;
}

.report-timeline {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.report-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: var(--light-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid #28a745;
}

.report-item:hover {
    background: var(--light-blue);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.15);
}

.report-month {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    min-width: 50px;
    text-align: center;
}

.report-content {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.report-content i {
    font-size: 1.1rem;
    color: var(--primary-color);
}

.report-content span {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 0.9rem;
}

.transparency-badge {
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 1rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
}

.transparency-badge i {
    font-size: 2rem;
    opacity: 0.9;
}

.transparency-badge h4 {
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.transparency-badge p {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

.step-qr {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.qr-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.15);
    border: 3px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.qr-container::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--primary-color));
    border-radius: 23px;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.qr-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
}

.qr-header i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.qr-image {
    margin-bottom: 1.5rem;
    position: relative;
}

.qr-image img {
    width: 200px;
    height: 200px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.qr-image:hover img {
    transform: scale(1.05);
}

.qr-footer strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

.qr-footer p {
    color: var(--light-text);
    font-size: 0.9rem;
    margin: 0;
}

.qr-container::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 220px;
    height: 220px;
    border: 2px dashed var(--secondary-color);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.1;
    }
}

.step-content h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.step-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.detail-item > i {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-top: 0.16rem;
    min-width: 20px;
}

.detail-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.detail-item p {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

.important-note {
    background: #fff3cd;
    border: 2px solid #f4b942;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: var(--shadow);
}

.note-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.note-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.note-content h4 {
    color: #856404;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.note-content p {
    color: #856404;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.note-content strong {
    font-weight: 700;
}

.prayer-system {
    padding: 6rem 0;
    background: var(--light-blue);
}

.prayer-system h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.prayer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.prayer-text h3,
.prayer-benefits h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.prayer-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.prayer-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.prayer-feature i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.5rem;
}

.prayer-feature h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.prayer-feature p {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.benefit-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.benefit-item span {
    color: var(--dark-text);
    font-weight: 500;
}

.sponsor-package {
    padding: 6rem 0;
    background: var(--white);
}

.sponsor-package h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.package-item {
    background: var(--light-blue);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid rgba(44, 90, 160, 0.1);
}

.package-item:hover {
    transform: translateY(-5px);
}

.package-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.package-icon i {
    font-size: 2rem;
    color: var(--white);
}

.package-item h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.package-item p {
    color: var(--light-text);
    line-height: 1.6;
}

.timeline-section {
    padding: 6rem 0;
    background: var(--light-gray);
}

.timeline-section h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--secondary-color);
    z-index: 0;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow);
}

.timeline-icon i {
    font-size: 2rem;
    color: var(--white);
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--light-text);
    font-size: 0.9rem;
    line-height: 1.4;
}

.registration {
    padding: 6rem 0;
    background: var(--white);
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.registration-info h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.registration-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 2rem;
}

.registration-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.benefit i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.benefit span {
    color: var(--dark-text);
    font-weight: 500;
}

.sponsor-form {
    background: var(--light-blue);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.sponsor-form h3 {
    font-family: 'Merriweather', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--dark-text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(44, 90, 160, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group small {
    display: block;
    margin-top: 0.3rem;
    font-size: 0.85rem;
    color: var(--light-text);
    font-style: italic;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 0.95rem;
}

.form-submit {
    width: 100%;
    font-size: 1.1rem;
    padding: 16px;
    margin-top: 1rem;
}

.form-submit i {
    margin-right: 0.5rem;
}

.launch-info {
    padding: 6rem 0;
    background: var(--light-gray);
    margin-top: 16rem;
    height: 27rem;
}

.launch-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.launch-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.launch-icon i {
    font-size: 3rem;
    color: var(--white);
}

.launch-content h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.launch-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-text);
    margin-bottom: 3rem;
}

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

.launch-stat {
    display: flex;
    /* align-items: center; */
    gap: 1rem;
}

.launch-stat i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.8rem;
}

.launch-stat h4 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.launch-stat p {
    color: var(--light-text);
    font-size: 0.9rem;
}

.testimonials {
    padding: 6rem 0;
    background: var(--primary-color);
    color: var(--white);
}

.testimonials h2 {
    font-family: 'Merriweather', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.quote-icon {
    text-align: center;
    margin-bottom: 1.5rem;
}

.quote-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.testimonial-card blockquote {
    font-family: 'Merriweather', serif;
    font-size: 1.2rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    text-align: right;
    color: var(--secondary-color);
}

@media (max-width: 1024px) {
    .program-stats,
    .meaning-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .overview-content,
    .registration-content,
    .prayer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .connection-diagram {
        flex-direction: column;
        gap: 1rem;
    }
    
    .connection-line::before {
        width: 2px;
        height: 40px;
        transform: rotate(90deg);
    }
    
    .package-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .launch-stats {
        grid-template-columns: 1fr;
        text-align: left;
    }
}

@media (max-width: 768px) {
    .program-title {
        font-size: 3rem;
    }
    
    .program-subtitle {
        font-size: 1.1rem;
    }
    
    .steps-timeline::before {
        left: 30px;
    }
    
    .step-number {
        left: 30px;
        transform: none;
    }

    .step-item {
        align-items: start!important;
        margin-left: -2rem!important;
    }
    
    .step-content {
        max-width: none;
        margin-left: 80px;
        margin-right: 0;
    }
    
    .step-item:nth-child(even) .step-content {
        margin-left: 80px;
        margin-right: 0;
    }
    
    .step-item:first-child {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-item:first-child .step-content {
        margin-left: 80px;
    }
    
    .step-item:nth-child(2) {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-item:nth-child(2) .step-content {
        margin-left: 80px;
        order: 1;
    }
    
    .step-item:nth-child(2) .step-payment {
        order: 2;
    }
    
    .step-item:nth-child(3) {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-item:nth-child(3) .step-content {
        margin-left: 80px;
        order: 1;
    }
    
    .step-item:nth-child(3) .step-documents {
        order: 2;
    }
    
    .documents-container {
        max-width: 320px;
        padding: 1.5rem;
    }
    
    .checklist-item {
        padding: 0.7rem;
        gap: 0.8rem;
    }
    
    .checklist-item span {
        font-size: 0.9rem;
    }
    
    .view-sample-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .step-item:nth-child(4) {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-item:nth-child(4) .step-content {
        margin-left: 80px;
        order: 1;
    }
    
    .step-item:nth-child(4) .step-notice {
        order: 2;
    }
    
    .notice-container {
        max-width: 320px;
        padding: 1.5rem;
        margin-top: 0;
    }
    
    .detail-point {
        padding: 0.4rem;
        gap: 0.6rem;
    }
    
    .detail-point span {
        font-size: 0.8rem;
    }
    
    .notice-highlight {
        padding: 0.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .notice-highlight span {
        font-size: 0.85rem;
    }
    
    .step-item:nth-child(5) {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .step-item:nth-child(5) .step-content {
        margin-left: 80px;
        order: 1;
    }
    
    .step-item:nth-child(5) .step-reports {
        order: 2;
    }
    
    .reports-container {
        max-width: 320px;
        padding: 1.5rem;
    }
    
    .report-item {
        padding: 0.7rem;
        gap: 0.8rem;
    }
    
    .report-month {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
        min-width: 45px;
    }
    
    .report-content span {
        font-size: 0.85rem;
    }
    
    .transparency-badge {
        padding: 0.8rem;
        gap: 0.8rem;
    }
    
    .transparency-badge i {
        font-size: 1.5rem;
    }
    
    .transparency-badge h4 {
        font-size: 0.95rem;
    }
    
    .transparency-badge p {
        font-size: 0.8rem;
    }
    
    .payment-container {
        max-width: 280px;
        padding: 1.5rem;
        padding-left: 3rem;
        min-height: 280px;
    }
    
    .qr-payment-overlay {
        left: -60px;
    }
    
    .qr-payment-overlay img {
        width: 110px;
        height: 110px;
    }
    
    .account-details {
        padding: 0.8rem;
    }
    
    .detail-row {
        font-size: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }
    
    .detail-row strong {
        min-width: auto;
    }
    
    .qr-container {
        padding: 1.5rem;
    }
    
    .qr-image img {
        width: 150px;
        height: 150px;
    }
    
    .qr-container::after {
        width: 170px;
        height: 170px;
    }
    
    .timeline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .timeline::before {
        left: 40px;
        transform: none;
    }
    
    .timeline-item {
        align-items: flex-start;
        margin-left: 100px;
    }
    
    .timeline-icon {
        position: absolute;
        left: -90px;
        margin-bottom: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .stat {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .important-note {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .program-title {
        font-size: 2.5rem;
    }
    
    .sponsor-form {
        padding: 2rem;
    }
    
    .meaning-card,
    .package-item,
    .prayer-feature {
        padding: 2rem;
    }
    
    .launch-card {
        padding: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-card blockquote {
        font-size: 1.1rem;
    }
    
    .payment-container {
        max-width: 250px;
        padding: 1.2rem;
        padding-left: 2.5rem;
        min-height: 250px;
    }
    
    .qr-payment-overlay {
        left: -50px;
    }
    
    .qr-payment-overlay img {
        width: 90px;
        height: 90px;
    }
    
    .qr-overlay-text {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .transfer-note {
        padding: 0.8rem;
    }
    
    .note-format {
        font-size: 0.75rem;
    }
    
    .documents-container {
        max-width: 280px;
        padding: 1.2rem;
    }
    
    .checklist-item {
        padding: 0.6rem;
        gap: 0.7rem;
    }
    
    .checklist-item span {
        font-size: 0.85rem;
    }
    
    .view-sample-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
    
    .documents-note {
        padding: 0.7rem;
    }
    
    .documents-note span {
        font-size: 0.75rem;
    }
    
    .notice-container {
        max-width: 280px;
        padding: 1.2rem;
    }
    
    .notice-main {
        padding: 0.8rem;
    }
    
    .notice-main h4 {
        font-size: 0.95rem;
    }
    
    .notice-main p {
        font-size: 0.85rem;
    }
    
    .detail-point {
        padding: 0.3rem;
        gap: 0.5rem;
    }
    
    .detail-point span {
        font-size: 0.75rem;
    }
    
    .notice-highlight {
        padding: 0.7rem;
        flex-direction: column;
    }
    
    .notice-highlight span {
        font-size: 0.8rem;
    }
    
    .reports-container {
        max-width: 280px;
        padding: 1.2rem;
    }
    
    .report-item {
        padding: 0.6rem;
        gap: 0.6rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .report-month {
        padding: 0.3rem 0.5rem;
        font-size: 0.75rem;
        min-width: 40px;
    }
    
    .report-content {
        gap: 0.6rem;
    }
    
    .report-content span {
        font-size: 0.8rem;
    }
    
    .transparency-badge {
        padding: 0.7rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .transparency-badge i {
        font-size: 1.3rem;
    }
    
    .transparency-badge h4 {
        font-size: 0.9rem;
    }
    
    .transparency-badge p {
        font-size: 0.75rem;
    }
}

.animate-in {
    animation: slideInUp 0.8s ease forwards;
}

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

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: ripple-animation 1s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(2);
        opacity: 0;
    }
}

.highlight {
    animation: highlight-pulse 2s ease-in-out;
}

@keyframes highlight-pulse {
    0%, 100% { background-color: inherit; }
    50% { background-color: rgba(244, 185, 66, 0.1); }
}