/* Quick CV Section Styles */
.quick-cv-section {
    background: linear-gradient(135deg, #059669 0%, #10B981 50%, #F59E0B 100%);
    padding: 60px 0;
    margin: 40px 0;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.quick-cv-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 20px 20px;
    transform: rotate(30deg);
    pointer-events: none;
}

.quick-cv-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
}

.quick-cv-info {
    flex: 1;
}

.quick-cv-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.quick-cv-title i {
    margin-right: 15px;
    color: #ffd700;
}

.quick-cv-description {
    color: white;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.quick-cv-features {
    margin-bottom: 30px;
}

.features-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-col p {
    color: white;
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-col p i {
    color: #F59E0B;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.quick-cv-price {
    background: rgba(255,255,255,0.2);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    display: inline-block;
}

.quick-cv-price h3 {
    color: white;
    font-size: 1.8rem;
    margin: 0;
}

.price-highlight {
    color: #ffd700;
    font-weight: 800;
}

.price-subtitle {
    color: rgba(255,255,255,0.9);
    margin: 5px 0 0 0;
    font-size: 1rem;
}

.quick-cv-action {
    text-align: center;
}

.btn-light {
    background: white;
    color: #059669;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-light i {
    font-size: 1.2rem;
    color: #F59E0B;
}

.btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background: #f0fdf4;
    border-color: white;
}

.action-note {
    color: white;
    margin-top: 15px;
    font-size: 0.95rem;
}

/* CV Builder Page Styles */
.builder-container {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 120px 0 40px;
}

@media (max-width: 768px) {
    .builder-container {
        padding-top: 100px;
    }
}

.form-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.doc-type-insight {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.insight-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 15px 18px;
}

.insight-card h5 {
    margin: 0 0 8px;
    font-size: 1rem;
    color: #2d3748;
}

.insight-card ul {
    margin: 0;
    padding-left: 18px;
    color: #4a5568;
    font-size: 0.9rem;
    line-height: 1.5;
}

.insight-card.accent {
    border-color: #c6f6d5;
    background: #f0fff4;
}

.preview-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: sticky;
    top: 20px;
}

.section-title {
    color: #4a5568;
    border-bottom: 3px solid #10B981;
    padding-bottom: 10px;
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 700;
}

.form-section h4 {
    color: #2d3748;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 600;
}

.form-section h4 i {
    color: #10B981;
    margin-right: 10px;
}

.add-btn {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    margin: 10px 0;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.add-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.remove-btn {
    background: #e53e3e;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 20px;
    margin-left: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.remove-btn:hover {
    background: #c53030;
}

.cv-template {
    border: 2px dashed #cbd5e0;
    border-radius: 10px;
    padding: 20px;
    margin: 10px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cv-template:hover {
    border-color: #10B981;
    background: #f0fdf4;
}

.cv-template.selected {
    border-color: #10B981;
    background: #d1fae5;
    border-style: solid;
}

.cv-template h6 {
    color: #2d3748;
    font-weight: 600;
    margin-bottom: 5px;
}

.cv-template small {
    color: #718096;
}

.color-option {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-block;
    margin: 5px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.color-option:hover {
    transform: scale(1.1);
}

.color-option.selected {
    border-color: #2d3748;
    box-shadow: 0 0 0 2px white, 0 0 0 4px #2d3748;
}

.preview-area {
    min-height: 400px;
    border: 2px dashed #cbd5e0;
    border-radius: 10px;
    padding: 20px;
    background: #fafafa;
}

.experience-item,
.education-item,
.certification-item {
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
    position: relative;
}

.generate-section {
    background: linear-gradient(135deg, #059669 0%, #10B981 50%, #F59E0B 100%);
    padding: 40px;
    border-radius: 15px;
    color: white;
}

.price-display h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
}

.generate-section .btn-success {
    background: #48bb78;
    color: white;
    border: none;
    padding: 18px 50px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.generate-section .btn-success:hover {
    background: #38a169;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Form Controls */
.form-label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    display: block;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-check-input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-check-label {
    cursor: pointer;
    user-select: none;
}

/* Career CTA Section */
.career-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    text-align: center;
}

.career-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.career-cta h2 {
    color: #065f46;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.career-cta p {
    color: #047857;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.career-cta .btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.career-cta .btn-primary {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.career-cta .btn-primary:hover {
    background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
}

.career-cta .btn-secondary {
    background: white;
    color: #059669;
    border: 2px solid #10B981;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.2);
}

.career-cta .btn-secondary:hover {
    background: #f0fdf4;
    border-color: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

/* Responsive Design */
@media (max-width: 992px) {
    .quick-cv-content {
        flex-direction: column;
        text-align: center;
    }
    
    .features-row {
        grid-template-columns: 1fr;
    }
    
    .quick-cv-title {
        font-size: 2rem;
    }
    
    .preview-section {
        position: static;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .quick-cv-section {
        padding: 3rem 0;
    }
    
    .quick-cv-content {
        padding: 0 1rem;
    }
    
    .quick-cv-title {
        font-size: 1.6rem;
    }
    
    .quick-cv-title i {
        font-size: 1.5rem;
    }
    
    .quick-cv-description {
        font-size: 1rem;
    }
    
    .feature-col p {
        font-size: 0.95rem;
    }
    
    .btn-light {
        font-size: 1.1rem;
        padding: 0.9rem 2rem;
    }
    
    .form-section {
        padding: 20px;
    }
    
    /* CTA Responsive */
    .career-cta {
        padding: 3rem 1rem;
    }
    
    .career-cta h2 {
        font-size: 1.8rem;
    }
    
    .career-cta p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .career-cta .btn-large {
        width: 100%;
        max-width: 300px;
    }
}


/* Zigzag Timeline Process Section */
.academic-process {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
    position: relative;
}

.academic-process .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.academic-process .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #059669 0%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.academic-process .section-subtitle {
    font-size: 1.2rem;
    color: #6b7280;
}

.process-timeline-zigzag {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Vertical line in the center */
.process-timeline-zigzag::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #10B981 0%, #F59E0B 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

/* Right side items */
.timeline-item.right {
    justify-content: flex-start;
    padding-left: calc(50% + 60px);
}

/* Left side items */
.timeline-item.left {
    justify-content: flex-end;
    padding-right: calc(50% + 60px);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.1);
    max-width: 400px;
    position: relative;
    border-left: 4px solid #F59E0B;
}

.timeline-item.left .timeline-content {
    border-left: none;
    border-right: 4px solid #F59E0B;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #065f46;
    margin-bottom: 0.8rem;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10B981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
    z-index: 2;
}

/* Responsive - Tablet */
@media (max-width: 991px) {
    .process-timeline-zigzag::before {
        left: 30px;
    }
    
    .timeline-item.right,
    .timeline-item.left {
        justify-content: flex-start;
        padding-left: 90px;
        padding-right: 0;
    }
    
    .timeline-dot {
        left: 30px;
        transform: none;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .timeline-content {
        max-width: 100%;
    }
    
    .timeline-item.left .timeline-content {
        border-right: none;
        border-left: 4px solid #F59E0B;
    }
}

/* Responsive - Mobile */
@media (max-width: 767px) {
    .academic-process {
        padding: 3rem 0;
    }
    
    .academic-process .section-title {
        font-size: 2rem;
    }
    
    .academic-process .section-subtitle {
        font-size: 1rem;
    }
    
    .process-timeline-zigzag {
        padding: 1rem 0;
    }
    
    .process-timeline-zigzag::before {
        left: 20px;
    }
    
    .timeline-item {
        margin-bottom: 2rem;
    }
    
    .timeline-item.right,
    .timeline-item.left {
        padding-left: 70px;
    }
    
    .timeline-dot {
        left: 20px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
    }
}
