/* application_form.css */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    color: #333;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z" fill="rgba(255,255,255,0.1)"></path></svg>');
    background-size: cover;
    background-position: center;
}

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

.school-badge {
    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 20px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.school-badge i {
    font-size: 2rem;
    color: white;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 0.9;
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-item i {
    font-size: 1rem;
    color: #ffd700;
}

.feature-text {
    font-size: 0.9rem;
    font-weight: 500;
}

.application-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #ffd700;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element:nth-child(1) {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 30px;
    height: 30px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Container and Form Styles */
.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 40px 20px;
}

.application-form { 
    background: white; 
    border-radius: 20px; 
    padding: 40px; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 30px;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.form-section { 
    margin-bottom: 40px; 
    padding-bottom: 30px; 
    border-bottom: 2px solid #f1f3f4; 
}

.section-title { 
    color: #2c3e50; 
    font-size: 1.4rem; 
    margin-bottom: 25px; 
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i { 
    font-size: 1.3rem; 
    color: #667eea;
}

.form-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 25px; 
}

.form-full { grid-column: 1 / -1; }

.form-group { margin-bottom: 25px; position: relative; }

.form-group label { 
    display: block; 
    font-weight: 600; 
    margin-bottom: 10px; 
    color: #2c3e50;
    font-size: 14px;
}

.form-group input, .form-group select, .form-group textarea { 
    width: 100%; 
    padding: 14px 16px; 
    border: 2px solid #e9ecef; 
    border-radius: 10px; 
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #667eea;
    background: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

/* File Upload */
.file-upload {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.file-upload-btn {
    background: #667eea;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    transition: all 0.3s ease;
}

.file-upload-btn:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

.file-upload input[type="file"] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.file-requirements {
    margin-top: 8px;
    color: #6c757d;
    font-size: 12px;
}

/* Buttons */
.btn { 
    padding: 16px 40px; 
    border: none; 
    border-radius: 12px; 
    font-size: 16px; 
    font-weight: 600; 
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-primary { 
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

/* Alerts */
.alert { 
    padding: 20px; 
    border-radius: 12px; 
    margin-bottom: 30px; 
    font-size: 15px;
    border-left: 5px solid;
}

.alert-success { 
    background: #d4edda; 
    color: #155724; 
    border-left-color: #28a745; 
}

.alert-error { 
    background: #f8d7da; 
    color: #721c24; 
    border-left-color: #dc3545; 
}

.required::after { 
    content: " *"; 
    color: #e74c3c; 
    font-weight: bold;
}

.price-tag {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-left: 10px;
}

.form-note {
    background: #e3f2fd;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #2196F3;
    margin: 20px 0;
    font-size: 14px;
}

/* Progress Bar */
/* Enhanced Progress Bar */
.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.progress-bar::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    right: 0;
    height: 4px;
    background: #e9ecef;
    z-index: 1;
    border-radius: 2px;
}

.progress-fill {
    position: absolute;
    top: 15px;
    left: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    z-index: 2;
    border-radius: 2px;
    transition: width 0.5s ease;
    width: 0%;
}

.progress-step {
    position: relative;
    z-index: 3;
    text-align: center;
    flex: 1;
}

.step-number {
    width: 35px;
    height: 35px;
    background: #e9ecef;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: bold;
    color: #7f8c8d;
    transition: all 0.3s ease;
    border: 3px solid #e9ecef;
    position: relative;
}

.step-active .step-number {
    background: #667eea;
    color: white;
    transform: scale(1.1);
    border-color: #667eea;
}

.step-completed .step-number {
    background: #28a745 !important;
    color: white !important;
    border-color: #28a745 !important;
}

.step-completed .step-number::after {
    content: '✓';
    font-weight: bold;
    font-size: 14px;
}

.step-label {
    font-size: 12px;
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-active .step-label {
    color: #667eea;
    font-weight: 700;
}

.step-completed .step-label {
    color: #28a745;
}

/* Validation Messages */
.validation-message {
    font-size: 12px;
    margin-top: 5px;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.validation-error {
    color: #dc3545;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
}

.validation-success {
    color: #155724;
    background: #d4edda;
    border: 1px solid #c3e6cb;
}

input.validation-error, select.validation-error, textarea.validation-error {
    border-color: #dc3545 !important;
    background-color: #fdf2f2 !important;
}

input.validation-success, select.validation-success, textarea.validation-success {
    border-color: #28a745 !important;
    background-color: #f2f9f2 !important;
}

/* Auto-save Indicator */
.auto-save-indicator {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 14px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.auto-save-indicator.show {
    opacity: 1;
    transform: translateY(0);
}

/* Draft Recovery Notification */
.draft-recovery-notification {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff3cd;
    border-bottom: 2px solid #ffc107;
    padding: 15px 20px;
    z-index: 2000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.draft-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 15px;
}

.draft-content i {
    color: #856404;
    font-size: 18px;
}

.draft-actions {
    display: flex;
    gap: 10px;
    margin-left: auto;
}

.btn-small {
    padding: 8px 16px !important;
    font-size: 14px !important;
}

.btn-outline {
    background: transparent !important;
    border: 2px solid #667eea !important;
    color: #667eea !important;
}

/* Loading States */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    left: 50%;
    margin: -8px 0 0 -8px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: button-loading 1s linear infinite;
}

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

/* Enhanced File Upload */
.file-upload-preview {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.file-preview-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 8px 12px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.file-preview-item .file-name {
    font-size: 14px;
    color: #495057;
}

.file-preview-item .file-remove {
    color: #dc3545;
    cursor: pointer;
    padding: 4px;
    border-radius: 3px;
}

.file-preview-item .file-remove:hover {
    background: #f8d7da;
}

/* Accessibility Improvements */
.form-group:focus-within label {
    color: #667eea;
    font-weight: 600;
}

.btn:focus, input:focus, select:focus, textarea:focus {
    outline: 2px solid #667eea;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .hero-section, .progress-bar, .form-navigation, .btn {
        display: none !important;
    }
    
    .form-section {
        display: block !important;
        break-inside: avoid;
    }
    
    .application-form {
        box-shadow: none !important;
        padding: 0 !important;
    }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .progress-bar {
        margin-bottom: 30px;
    }
    
    .step-label {
        font-size: 10px;
    }
    
    .draft-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .draft-actions {
        margin-left: 0;
        width: 100%;
        justify-content: flex-end;
    }
    
    .auto-save-indicator {
        top: 10px;
        right: 10px;
        left: 10px;
        text-align: center;
    }
}

/* Form Sections */
.form-section {
    display: none;
}

.form-section.active {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

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

.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid #f1f3f4;
}

/* Error Styles */
.field-error {
    color: #e74c3c !important;
    font-size: 12px !important;
    margin-top: 5px !important;
    display: block;
}

.form-group input.error, .form-group select.error {
    border-color: #e74c3c;
    background-color: #fdf2f2;
}

/* Image Preview */
.image-preview {
    margin-top: 10px;
    text-align: center;
}

.image-preview img {
    max-width: 150px;
    max-height: 150px;
    border-radius: 8px;
    border: 2px solid #e9ecef;
}

/* Loading Animation */
.fa-spin {
    animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: 15px;
    }
    
    .feature-item {
        padding: 8px 15px;
    }
    
    .application-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .form-grid { 
        grid-template-columns: 1fr; 
    }
    
    .container { 
        padding: 20px 15px; 
    }
    
    .application-form { 
        padding: 25px; 
    }
    
    .btn {
        padding: 14px 25px;
    }
}


/* State and LGA specific styles */
.form-group select:disabled {
    background-color: #f8f9fa;
    opacity: 0.6;
    cursor: not-allowed;
}

/* Smooth transitions for showing/hiding fields */
.form-group {
    transition: all 0.3s ease;
}

/* Error states for select elements */
.form-group select.error {
    border-color: #e74c3c;
    background-color: #fdf2f2;
}


/* Review & Payment Section Styles */
.review-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

@media (max-width: 1024px) {
    .review-container {
        grid-template-columns: 1fr;
    }
}

/* Summary Card */
.summary-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    grid-row: span 2;
}

.summary-header {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
}

.summary-header i {
    font-size: 1.5rem;
    color: #ffd700;
}

.summary-header h4 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.summary-content {
    padding: 25px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.summary-item.total {
    border-top: 2px solid rgba(255, 255, 255, 0.3);
    margin-top: 10px;
    padding-top: 15px;
    font-size: 1.1rem;
    font-weight: 700;
}

.summary-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.summary-value {
    font-weight: 600;
    color: white;
}

.amount-large {
    font-size: 1.3em;
    font-weight: 700;
}

.summary-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 15px 0;
}

.payment-methods {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    min-width: 70px;
}

.payment-method i {
    font-size: 1.5rem;
    color: #ffd700;
}

.payment-method span {
    font-size: 0.8rem;
    text-align: center;
    opacity: 0.9;
}

/* Review Card */
.review-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.review-header {
    background: #f8f9fa;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e9ecef;
}

.review-header h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-header i {
    color: #667eea;
}

.btn-edit {
    background: #667eea;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

.btn-edit:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

.review-content {
    padding: 25px;
    max-height: 400px;
    overflow-y: auto;
}

.review-section {
    margin-bottom: 25px;
}

.review-section:last-child {
    margin-bottom: 0;
}

.review-section h5 {
    color: #2c3e50;
    margin: 0 0 15px 0;
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f1f3f4;
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.review-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-item-label {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.review-item-value {
    font-size: 0.95rem;
    color: #2c3e50;
    font-weight: 500;
    word-break: break-word;
}

/* Terms Card */
.terms-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
}

.terms-header {
    background: #f8f9fa;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e9ecef;
}

.terms-header i {
    color: #28a745;
    font-size: 1.3rem;
}

.terms-header h4 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: 600;
}

.terms-content {
    padding: 25px;
}

.terms-list {
    margin-bottom: 25px;
}

.term-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f3f4;
}

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

.term-item i {
    color: #28a745;
    margin-top: 2px;
    flex-shrink: 0;
}

.term-item span {
    color: #495057;
    line-height: 1.5;
}

.agreement-box {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.agreement-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
    margin: 0;
}

.agreement-label input {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    border: 2px solid #6c757d;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkmark i {
    color: white;
    font-size: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.agreement-label input:checked + .checkmark {
    background: #28a745;
    border-color: #28a745;
}

.agreement-label input:checked + .checkmark i {
    opacity: 1;
}

.agreement-text {
    color: #2c3e50;
    line-height: 1.6;
    font-weight: 500;
}

/* Payment Button */
.btn-payment {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 18px 30px !important;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%) !important;
    border: none !important;
    position: relative;
    overflow: hidden;
    width: auto !important;
    max-width: none !important;
    margin: 0 !important;
    flex: 0 0 auto !important;
}

.btn-payment::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn-payment:hover::before {
    left: 100%;
}

.btn-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-amount {
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
}

/* Scrollbar for review content */
.review-content::-webkit-scrollbar {
    width: 6px;
}

.review-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.review-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.review-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .review-container {
        gap: 20px;
    }
    
    .summary-content,
    .review-content,
    .terms-content {
        padding: 20px;
    }
    
    .review-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .payment-methods {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .btn-payment {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .agreement-label {
        align-items: flex-start;
    }
}