/* FRONTEND PAGE-SPECIFIC STYLES */

/* HOME PAGE STYLES */
.hero-section {
    position: relative;
    background: url('https://placehold.co/1920x600?text=IJARIIE+Journal+Banner') no-repeat center center/cover;
    color: white;
    padding: 6rem 2rem;
    text-align: center;
    margin-bottom: 4rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(31, 41, 55, 0.85);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0.95;
}

.hero-btn-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-hero {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-primary {
    background: #ff8c42;
    color: white;
    border: 2px solid #ff8c42;
}

.btn-hero-primary:hover {
    background: #e67e22;
    border-color: #e67e22;
    transform: translateY(-3px);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    background: white;
    color: #1e3a8a;
    transform: translateY(-3px);
}

.stats-container {
    margin-top: -3rem;
    position: relative;
    z-index: 3;
    margin-bottom: 4rem;
    padding: 0 1rem;
}

.stats-grid {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    color: #1e3a8a;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #6b7280;
    font-weight: 600;
    font-size: 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.25rem;
    color: #1f2937;
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header .divider {
    width: 60px;
    height: 4px;
    background: #ff8c42;
    margin: 0 auto;
    border-radius: 2px;
}

.about-section {
    margin-bottom: 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    min-width: 300px;
}

.about-content h2 {
    font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-content p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    text-align: justify;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-section {
    padding: 2rem 0 5rem;
    background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.03), transparent),
        radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.03), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    perspective: 1000px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(229, 231, 235, 0.5);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: background 0.3s;
}

.feature-card:hover {
    transform: translateY(-12px) rotateX(2deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    background: white;
}

.feature-card.f-1:hover::after {
    background: #3b82f6;
}

.feature-card.f-2:hover::after {
    background: #f97316;
}

.feature-card.f-3:hover::after {
    background: #8b5cf6;
}

.feature-card.f-4:hover::after {
    background: #10b981;
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
    transition: all 0.4s;
    z-index: 1;
}

.feature-card.f-1 .feature-icon-wrapper {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #3b82f6;
}

.feature-card.f-2 .feature-icon-wrapper {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    color: #f97316;
}

.feature-card.f-3 .feature-icon-wrapper {
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 100%);
    color: #8b5cf6;
}

.feature-card.f-4 .feature-icon-wrapper {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    color: #10b981;
}

.feature-card:hover .feature-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.feature-card.f-1:hover .feature-icon-wrapper {
    background: #3b82f6;
    color: white;
    box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}

.feature-card.f-2:hover .feature-icon-wrapper {
    background: #f97316;
    color: white;
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

.feature-card.f-3:hover .feature-icon-wrapper {
    background: #8b5cf6;
    color: white;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

.feature-card.f-4:hover .feature-icon-wrapper {
    background: #10b981;
    color: white;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 1.25rem;
    transition: color 0.3s;
}

.feature-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.why-bg {
    background: #f8fafc;
    padding: 4rem 2rem;
    border-radius: 1rem;
    margin-bottom: 5rem;
}

.why-container {
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap-reverse;
}

.why-image {
    flex: 1;
    min-width: 300px;
}

.why-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.why-content {
    flex: 1;
    min-width: 300px;
}

.why-content h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.why-check-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.check-icon {
    color: white;
    background: #10b981;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.check-text {
    color: #4b5563;
    font-size: 1rem;
}

.bottom-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.impact-card {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.news-wrapper h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

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

.news-block {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    background: #f9fafb;
    transition: background 0.2s;
}

.news-block:hover {
    background: #eff6ff;
}

.news-date {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.5rem;
    text-align: center;
    min-width: 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.nd-day {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
    line-height: 1;
}

.nd-month {
    font-size: 0.8rem;
    color: #6b7280;
    text-transform: uppercase;
}

.news-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.news-info p {
    font-size: 0.9rem;
    color: #6b7280;
}

.cta-final {
    background: url('https://placehold.co/1920x400?text=Join+IJARIIE') no-repeat center center/cover;
    border-radius: 1rem;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(30, 58, 138, 0.9) 0%, rgba(59, 130, 246, 0.8) 100%);
}

.cta-content-inner {
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }

    .hero-section {
        padding: 4rem 1rem;
        border-radius: 0 0 1rem 1rem;
    }

    .bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 1rem;
        margin-bottom: 2rem;
        border-radius: 0 0 1rem 1rem;
    }

    .hero-title {
        font-size: 1.75rem !important;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem;
    }

    .btn-hero {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    .stats-container {
        margin-top: -2rem;
        margin-bottom: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }

    .stat-item h3 {
        font-size: 1.75rem !important;
    }

    .stat-item p {
        font-size: 0.8rem !important;
    }

    .section-title {
        font-size: 1.5rem !important;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.9rem !important;
        margin-bottom: 2rem;
    }

    .about-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-text h2,
    .why-text h2 {
        font-size: 1.4rem !important;
    }

    .about-text p,
    .why-text p {
        font-size: 0.9rem !important;
    }

    .check-list li {
        font-size: 0.85rem !important;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .feature-card h3 {
        font-size: 1.1rem !important;
    }

    .feature-card p {
        font-size: 0.85rem !important;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-card h3 {
        font-size: 1rem !important;
    }

    .news-card p {
        font-size: 0.85rem !important;
    }

    .impact-card h3 {
        font-size: 1.75rem !important;
    }

    .impact-card p {
        font-size: 0.85rem !important;
    }

    .cta-section h2 {
        font-size: 1.75rem !important;
    }

    .cta-section p {
        font-size: 0.95rem !important;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.4rem !important;
    }

    .hero-subtitle {
        font-size: 0.85rem !important;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 1.3rem !important;
    }

    .btn-hero {
        padding: 0.65rem 1.25rem;
        font-size: 0.85rem;
    }
}

/* ABOUT PAGE STYLES */
.page-hero {
    position: relative;
    background: linear-gradient(rgba(30, 58, 138, 0.85), rgba(30, 58, 138, 0.85)), url('https://placehold.co/1920x400?text=About+IJARIIE') no-repeat center center/cover;
    color: white;
    padding: 6rem 1rem;
    text-align: center;
    border-radius: 0 0 2rem 2rem;
    margin-bottom: 4rem;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.who-we-are {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.who-img,
.who-text {
    flex: 1;
    min-width: 300px;
}

.who-img img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.who-text h2 {
    font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.who-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.approval-box {
    background: #fff7ed;
    border-left: 4px solid #f97316;
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin-top: 2rem;
}

.approval-box h4 {
    color: #9a3412;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.mv-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.75rem;
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mv-card p {
    color: #6b7280;
    line-height: 1.7;
}

.reasons-section {
    background: #f8fafc;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.reason-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: 1px solid rgba(229, 231, 235, 0.5);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
}

.reason-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #f97316;
    font-size: 2.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 6px -1px rgba(249, 115, 22, 0.1);
}

.reason-card:hover .reason-icon-wrapper {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

.reason-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.reason-card:hover .reason-title {
    color: #ea580c;
}

.reason-desc {
    color: #6b7280;
    line-height: 1.7;
    font-size: 1rem;
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    padding: 6rem 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 20%),
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.03) 50%, rgba(255, 255, 255, 0.03) 75%, transparent 75%, transparent);
    background-size: 100% 100%, 100% 100%, 40px 40px;
    pointer-events: none;
}

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

.cta-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    color: white;
    text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-text {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: #ea580c;
    padding: 1.25rem 4rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.25rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    background: #fff;
    color: #c2410c;
}

.section-header-center {
    text-align: center !important;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-header-center h2,
.section-header-center p {
    text-align: center !important;
}

.cta-btn span {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.cta-btn:hover span {
    transform: translateX(5px);
}

/* HOME PAGE EXTRA CLASSES */
.font-size-24 {
    font-size: 1.5rem;
}

.impact-value {
    font-size: 4rem;
    font-weight: 800;
    margin: 1rem 0;
}

.impact-desc {
    font-size: 1.1rem;
    opacity: 0.9;
}

.iso-info {
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    padding-top: 1rem;
    font-size: 0.9rem;
}

.cta-title-large {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.login-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    margin-left: 20px;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.05rem;
    backdrop-filter: blur(5px);
}

.login-link:hover {
    background: white;
    color: #1e3a8a;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.no-style {
    list-style: none;
}

.no-padding {
    padding: 0;
}

/* SHARED UTILITIES */
.text-orange {
    color: #ff8c42;
}

.text-blue {
    color: #3b82f6;
}

.font-bold {
    font-weight: bold;
}

.uppercase {
    text-transform: uppercase;
}

.letter-spacing-1 {
    letter-spacing: 1px;
}

.mb-0 {
    margin-bottom: 0px;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mt-4 {
    margin-top: 1rem;
}

.font-size-15 {
    font-size: 0.95rem;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.no-decoration {
    text-decoration: none;
}

/* THANK YOU PAGE STYLES */
.thank-you-wrapper {
    padding-bottom: 5rem;
    padding-top: 3rem;
    background: #f8fafc;
}

.success-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.success-card-header {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    padding: 3rem 2rem;
    text-align: center;
    color: white;
}

.success-pulse {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: pulse-white 2s infinite;
}

@keyframes pulse-white {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.success-card-body {
    padding: 3rem;
}

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

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
    font-weight: 600;
}

.info-value {
    font-size: 1.125rem;
    color: #1e293b;
    font-weight: 700;
}

.manuscript-title-box {
    grid-column: span 2;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px dashed #cbd5e1;
}

.status-badge-large {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #dcfce7;
    color: #15803d;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 0.875rem;
}

.action-flex {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    border-top: 1px solid #f1f5f9;
    padding-top: 2.5rem;
}

.btn-thankyou {
    min-width: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .transaction-info-grid {
        grid-template-columns: 1fr;
    }

    .manuscript-title-box {
        grid-column: span 1;
    }

    .action-flex {
        flex-direction: column;
    }

    .btn-thankyou {
        width: 100%;
    }
}

/* THANK YOU EXTRA CLASSES */
.overlay-dark {
    background: rgba(31, 41, 55, 0.9);
}

.font-800 {
    font-weight: 800;
}

.font-size-2rem {
    font-size: 2rem;
}

.opacity-0-9 {
    opacity: 0.9;
}

.font-size-1-1rem {
    font-size: 1.1rem;
}

.mt-0-5 {
    margin-top: 0.5rem;
}

.font-size-1rem {
    font-size: 1rem;
}

.line-height-1-5 {
    line-height: 1.5;
}

.offline-notice {
    background: #fffbeb;
    border: 1px solid #fcd34d;
    padding: 1.25rem;
    border-radius: 0.75rem;
    margin-bottom: 2.5rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.offline-icon {
    font-size: 1.5rem;
}

.text-amber {
    color: #92400e;
}

.text-muted-amber {
    color: #b45309;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #15803d;
    border-radius: 50%;
}

.footer-text {
    text-align: center;
    margin-top: 3rem;
    color: #64748b;
    font-size: 0.875rem;
}

/* PAYMENT PAGE STYLES */
.payment-container {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.payment-header {
    text-align: center;
    margin-bottom: 2rem;
}

.payment-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 0.5rem;
}

.payment-header p {
    color: #6b7280;
}

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

.form-label-payment {
    display: block;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-label-payment.required::after {
    content: ' *';
    color: #ef4444;
}

.form-input-payment {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input-payment:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.btn-pay {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(59 130 246 / 0.3);
}

.notice-box-payment {
    margin-top: 2rem;
    padding: 1rem;
    background: #fdf2f2;
    border-radius: 0.5rem;
    border-left: 4px solid #ef4444;
    font-size: 0.9rem;
    color: #991b1b;
}

/* PAYMENT EXTRA CLASSES */
.text-red {
    color: #ef4444;
}

.font-size-0-85rem {
    font-size: 0.85rem;
}

.mt-0-25 {
    margin-top: 0.25rem;
}

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

@media (max-width: 480px) {
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* CHECKOUT PAGE STYLES */
.checkout-container {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.checkout-header {
    margin-bottom: 2rem;
}

.checkout-header h1 {
    color: #1e3a8a;
    font-size: 1.75rem;
}

.payment-details {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 0.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.detail-label {
    font-weight: 600;
    color: #374151;
}

.detail-value {
    color: #1f2937;
}

.total-row {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid #1e3a8a;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a8a;
}

.btn-pay-now {
    background: #27ae60;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.btn-pay-now:hover {
    background: #219150;
    transform: translateY(-2px);
}

/* PAYMENT INFORMATION STYLES */
.payment-process-card {
    flex-direction: column;
    gap: 1rem;
}

.payment-step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.payment-step-title {
    margin: 0;
    color: var(--primary-color, #1e3a8a);
}

.payment-intro-text {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.payment-step-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-step-number {
    background-color: var(--primary-color, #1e3a8a);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.payment-step-heading {
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.payment-step-desc {
    margin: 0;
    color: #475569;
    line-height: 1.6;
}

.payment-alert-warning {
    margin-top: 2rem;
    padding: 1rem 1.5rem;
    background-color: #fffbeb;
    border-left: 4px solid #f59e0b;
    border-radius: 4px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.payment-alert-icon {
    color: #f59e0b;
    font-size: 1.5rem;
}

.payment-alert-text {
    margin: 0;
    color: #92400e;
    font-size: 1rem;
}