/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    background-attachment: fixed;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.nav-brand i {
    margin-right: 8px;
    font-size: 26px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
}

.nav-menu a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea, #764ba2);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.nav-menu a:hover::after {
    width: 80%;
}

.mobile-menu-toggle {
    display: none;
    font-size: 20px;
    cursor: pointer;
    color: #2563eb;
    padding: 8px;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 16px;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
    border-radius: 8px;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::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 1000 1000"><defs><pattern id="grid" width="60" height="60" patternUnits="userSpaceOnUse"><path d="M 60 0 L 0 0 0 60" fill="none" stroke="%23ffffff" stroke-width="1" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.6;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 32px;
    line-height: 1.1;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3), 0 2px 4px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-content p {
    font-size: 22px;
    margin-bottom: 40px;
    color: #ffffff;
    line-height: 1.7;
    max-width: 520px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.5);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.resume-preview {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 30px;
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.2);
    transform: rotate(3deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.resume-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.resume-preview:hover {
    transform: rotate(0deg) scale(1.08);
    box-shadow: 
        0 45px 90px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.resume-preview i {
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Features Section */
.features {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.features h2 {
    text-align: center;
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.features .subtitle {
    text-align: center;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 80px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.feature-card i {
    font-size: 36px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    display: block;
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing h2 {
    text-align: center;
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #ffffff;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.pricing .subtitle {
    text-align: center;
    font-size: 22px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    padding: 40px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border-color: #2563eb;
    transform: scale(1.05);
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.25);
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.pricing-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #111827;
}

.price {
    font-size: 48px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 32px;
    line-height: 1;
}

.price span {
    font-size: 16px;
    color: #6b7280;
    font-weight: 500;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

.pricing-card li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: #374151;
}

.pricing-card li i.fa-check {
    color: #10b981;
    font-weight: 600;
}

.pricing-card li i.fa-times {
    color: #ef4444;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    backdrop-filter: blur(8px);
}

.modal-content {
    background: #ffffff;
    margin: 2% auto;
    padding: 0;
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    color: #1f2937;
}

.modal-content.large {
    max-width: 1000px;
}

.modal-header {
    padding: 32px 32px 24px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    color: #111827;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.close {
    font-size: 24px;
    cursor: pointer;
    color: #9ca3af;
    transition: color 0.2s ease;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close:hover {
    color: #ef4444;
    background: #fef2f2;
}

.modal-body {
    padding: 32px;
}

/* Form Steps */
.form-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 32px;
    padding: 0 16px;
    position: relative;
}

.form-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e5e7eb;
    z-index: 1;
}

.step {
    padding: 12px 20px;
    border-radius: 25px;
    background: white;
    color: #9ca3af;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
    position: relative;
    z-index: 2;
}

.step.active {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.3);
}

/* Form Styles */
.form-step {
    display: none;
}

.form-step.active {
    display: block;
    animation: slideInForm 0.4s ease-out;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 12px;
    font-weight: 600;
    color: #1f2937;
    font-size: 16px;
    letter-spacing: -0.01em;
    position: relative;
}

.form-group label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 1px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    position: relative;
    color: #1f2937;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
    font-style: italic;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1), 0 4px 14px 0 rgba(37, 99, 235, 0.15);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: #cbd5e1;
    box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.08);
}

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

.form-actions {
    margin-top: 30px;
    text-align: center;
}

.experience-item {
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 20px;
    border: 2px solid #f1f5f9;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.04);
}

#experienceContainer {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

#experienceContainer::-webkit-scrollbar {
    width: 6px;
}

#experienceContainer::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

#experienceContainer::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

#experienceContainer::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.experience-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.experience-item:hover {
    border-color: #e2e8f0;
    box-shadow: 0 8px 25px 0 rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.experience-item:hover::before {
    opacity: 1;
}

/* Form Section Headers */
.form-step h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.form-step .section-subtitle {
    color: #64748b;
    font-size: 16px;
    margin-bottom: 32px;
    line-height: 1.5;
}

/* Enhanced Input Groups */
.input-group {
    position: relative;
}

.input-group-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94aa3b8;
    font-size: 16px;
    z-index: 1;
}

.input-group input {
    padding-left: 48px;
}

/* Professional Select Styling */
.form-group select {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="%236b7280"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7" /></svg>');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    appearance: none;
    cursor: pointer;
}

/* Professional Textarea */
.form-group textarea {
    resize: vertical;
    min-height: 120px;
    line-height: 1.6;
}

/* Required Field Indicator */
.form-group.required label::before {
    content: '*';
    color: #ef4444;
    margin-right: 4px;
    font-weight: 700;
}

/* Step Indicator Enhancement */
.form-step-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    padding: 24px;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid #f1f5f9;
}

.step-info {
    text-align: center;
}

.step-number {
    font-size: 14px;
    font-weight: 600;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.step-title {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.step-description {
    font-size: 14px;
    color: #64748b;
}

/* Template Selection */
.template-selection h3 {
    text-align: center;
    margin-bottom: 32px;
    color: #111827;
    font-size: 24px;
    font-weight: 700;
}

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

.template-card {
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    background: white;
}

.template-card:hover {
    border-color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.template-card.selected {
    border-color: #2563eb;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.15);
}

.template-preview {
    height: 160px;
    background: #f8fafc;
    border-radius: 12px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

.template-card h4 {
    margin-bottom: 8px;
    color: #111827;
    font-weight: 700;
    font-size: 16px;
}

.template-card p {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 8px;
}

.template-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #10b981;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.template-tag.premium {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

/* Generation Options */
.generate-options h3 {
    text-align: center;
    margin-bottom: 32px;
    color: #111827;
    font-size: 24px;
    font-weight: 700;
}

.option-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.single-option {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.single-option .option-card {
    max-width: 400px;
    text-align: center;
    padding: 2rem;
}

.option-card {
    background: white;
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.option-card:hover {
    border-color: #2563eb;
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.option-card i {
    font-size: 40px;
    color: #2563eb;
    margin-bottom: 20px;
}

.option-card h4 {
    margin-bottom: 8px;
    color: #111827;
    font-weight: 700;
    font-size: 18px;
}

.option-card p {
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.5;
}

.option-price {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin: 16px 0;
}

.option-card .btn-primary {
    margin-top: 16px;
    width: 100%;
}

.price-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #2563eb;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.option-card.premium .price-tag {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.option-card.pro .price-tag {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    backdrop-filter: blur(8px);
}

.loading-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top: 4px solid #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

.loading-content p {
    font-size: 18px;
    font-weight: 500;
}

/* Resume Content Styles */
/* Resume Preview Styles */
.resume-container {
    background: white;
    padding: 40px;
    margin: 20px auto;
    max-width: 800px;
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
    color: #333;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.resume-section {
    margin-bottom: 25px;
    page-break-inside: avoid;
}

.resume-section h2 {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #3498db;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-section h2 {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #3498db;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.resume-header, .ai-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid #3498db;
}

.resume-header h1, .ai-header h1 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.subtitle, .ai-subtitle {
    font-size: 20px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 15px;
}

.contact-info, .ai-contact {
    font-size: 14px;
    color: #7f8c8d;
    line-height: 1.4;
}

.contact-info span, .ai-contact span {
    margin: 0 15px;
    display: inline-block;
}

.ai-enhanced-template {
    background: white;
    padding: 40px;
    margin: 20px auto;
    max-width: 800px;
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
    color: #333;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.ai-enhanced-template .experience-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.ai-enhanced-template .experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.ai-enhanced-template .experience-header h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: #2c3e50;
}

.ai-enhanced-template .company-date {
    text-align: right;
    font-size: 14px;
}

.ai-enhanced-template .company {
    font-weight: 600;
    color: #3498db;
    display: block;
}

.ai-enhanced-template .date {
    color: #7f8c8d;
    font-style: italic;
}

.ai-enhanced-template .experience-description p {
    margin: 5px 0;
    color: #555;
}

.ai-enhanced-template .skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.ai-enhanced-template .skill-tag {
    background: #3498db;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
}

.modern-template {
    background: white;
    padding: 40px;
    margin: 20px auto;
    max-width: 800px;
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
    color: #333;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.modern-template .experience-item {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.modern-template .experience-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.modern-template .experience-header h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    color: #2c3e50;
}

.modern-template .company-date {
    text-align: right;
    font-size: 14px;
}

.modern-template .company {
    font-weight: 600;
    color: #3498db;
    display: block;
}

.modern-template .date {
    color: #7f8c8d;
    font-style: italic;
}

.modern-template .skills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.modern-template .skill-tag {
    background: #e3f2fd;
    color: #1976d2;
    border: 1px solid #bbdefb;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 14px;
    font-weight: 500;
}

.experience-item, .ai-experience {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ecf0f1;
}

.experience-header {
    margin-bottom: 12px;
}

.experience-header h3 {
    font-size: 18px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 5px;
}

.company {
    font-size: 16px;
    color: #3498db;
    font-weight: 600;
    margin-bottom: 5px;
}

.dates {
    font-size: 14px;
    color: #7f8c8d;
    font-style: italic;
}

.bullet-point {
    margin-bottom: 8px;
    padding-left: 15px;
    line-height: 1.6;
    font-size: 14px;
}

.description p, .experience-details p {
    margin-bottom: 8px;
    padding-left: 15px;
    line-height: 1.6;
    font-size: 14px;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
}

.skill-tag {
    background: #3498db;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.ai-summary {
    font-size: 16px;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-left: 4px solid #3498db;
    font-style: italic;
}

/* File upload area */
.file-upload-area {
    border: 2px dashed #e2e8f0;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.file-upload-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.file-upload-area:hover::before {
    opacity: 1;
}

.file-upload-area:hover {
    border-color: #4f46e5;
    background: #f8fafc;
}

.file-upload-area.dragover {
    border-color: #4f46e5;
    background: #eef2ff;
}

.upload-placeholder i {
    font-size: 2rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

.upload-placeholder p {
    margin: 0.5rem 0;
    font-weight: 500;
    color: #475569;
}

.upload-placeholder small {
    color: #94a3b8;
}

.uploaded-file {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #f0fdf4;
    border-radius: 6px;
    border: 1px solid #22c55e;
}

.uploaded-file i {
    color: #22c55e;
    font-size: 1.2rem;
}

.uploaded-file span {
    font-weight: 500;
    color: #166534;
}

.btn-remove {
    background: none;
    border: none;
    color: #dc2626;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background 0.2s;
}

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

/* Analysis results */
.job-analysis {
    margin-top: 1rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #4f46e5;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px 24px;
        border-top: 1px solid #f3f4f6;
        box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
        max-width: none;
    }

    .features h2,
    .pricing h2 {
        font-size: 36px;
    }

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

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

    .pricing-card.featured {
        transform: none;
    }

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

    .option-cards {
        grid-template-columns: 1fr;
    }

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

    .form-actions {
        flex-direction: column;
    }

    .form-actions button {
        width: 100%;
    }

    .modal-content {
        margin: 5% auto;
        width: 95%;
    }

    .modal-body,
    .modal-header {
        padding: 24px 20px;
    }

    .navbar {
        padding: 16px 20px;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .features,
    .pricing {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .features h2,
    .pricing h2 {
        font-size: 28px;
    }

    .form-steps {
        flex-wrap: wrap;
        gap: 8px;
    }

    .step {
        font-size: 12px;
        padding: 8px 16px;
    }

    .btn-large {
        padding: 14px 24px;
        font-size: 15px;
    }
}

/* Smooth Animations */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }

    .feature-card,
    .pricing-card,
    .template-card,
    .option-card {
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* Focus States for Accessibility */
.btn-primary:focus,
.btn-secondary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.3);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Privacy Policy Styles */
.privacy-policy {
    padding: 120px 0 80px;
    background: #ffffff;
    min-height: 100vh;
    color: #1f2937;
}

.privacy-policy h1 {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.025em;
}

.last-updated {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 48px;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.privacy-content h2 {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin: 48px 0 20px 0;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 8px;
}

.privacy-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #374151;
    margin: 32px 0 16px 0;
}

.privacy-content p {
    color: #4b5563;
    margin-bottom: 16px;
    font-size: 16px;
}

.privacy-content ul {
    margin: 16px 0 24px 0;
    padding-left: 20px;
}

.privacy-content li {
    color: #4b5563;
    margin-bottom: 8px;
    font-size: 16px;
}

.privacy-content li strong {
    color: #374151;
    font-weight: 600;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat strong {
    display: block;
    font-size: 1.5rem;
    color: #2563eb;
    font-weight: 700;
}

.stat span {
    font-size: 0.9rem;
    color: #6b7280;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 0;
    background: #f8fafc;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
}

.step-number {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    text-align: center;
    padding: 1.5rem;
}

.benefit-item i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.benefit-item h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.stars {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: #4b5563;
}

.author {
    font-weight: 600;
    color: #2563eb;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.faq-item h4 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.faq-item p {
    color: #4b5563;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.guarantee {
    margin-top: 1rem !important;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .steps-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    background: #f8faff;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
    margin: 24px 0;
}

.contact-info p {
    margin-bottom: 8px;
    font-size: 16px;
}

.privacy-summary {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
    padding: 32px;
    border-radius: 16px;
    margin: 48px 0;
}

.privacy-summary h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 16px;
}

.privacy-summary p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Footer */
.footer {
    background: #111827;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 700;
}

.footer-brand i {
    color: #2563eb;
    font-size: 24px;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
}

@media (max-width: 768px) {
    .privacy-policy {
        padding: 100px 0 60px;
    }

    .privacy-policy h1 {
        font-size: 32px;
    }

    .privacy-content h2 {
        font-size: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* CSS styles for generate button */
.add-btn:hover {
    background: #27ae60;
    transform: translateY(-1px);
}

.form-actions {
    margin-top: 30px;
    text-align: center;
}

.generate-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

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

.modern-template .experience-item {
    margin-bottom: 25px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #4f46e5;
    page-break-inside: avoid;
}

.modern-template .experience-header {
    margin-bottom: 12px;
}

.modern-template .position-company h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    line-height: 1.3;
}

.modern-template .position-company h4 {
    font-size: 16px;
    font-weight: 600;
    color: #4f46e5;
    margin-bottom: 2px;
}

.modern-template .dates {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    font-style: italic;
}

.modern-template .description {
    margin-top: 12px;
}

.modern-template .description p {
    margin-bottom: 8px;
    line-height: 1.6;
    font-size: 14px;
    color: #475569;
}

.modern-template .description p:last-child {
    margin-bottom: 0;
}

/* Modern Template Styles */
.modern-template {
    background: white;
    font-family: 'Inter', Arial, sans-serif;
    max-width: 800px;
    margin: 0 auto;
}

.modern-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.modern-header h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.modern-header .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.modern-header .contact-info {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.modern-body {
    display: flex;
    gap: 2rem;
    padding: 2rem;
}

.main-content {
    flex: 2;
}

.sidebar {
    flex: 1;
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 8px;
}

.modern-experience {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e2e8f0;
}

.modern-experience:last-child {
    border-bottom: none;
}

.experience-header {
    margin-bottom: 0.75rem;
}

.experience-header h3 {
    color: #1e293b;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.experience-header h4 {
    color: #667eea;
    font-size: 1rem;
    font-weight: 500;
}

.dates {
    color: #64748b;
    font-size: 0.9rem;
    font-style: italic;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: #667eea;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Executive Template Styles */
.executive-template {
    background: white;
    font-family: 'Times New Roman', serif;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.executive-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 3px solid #2c3e50;
}

.executive-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: bold;
    margin: 0;
}

.executive-title {
    font-size: 1.3rem;
    color: #34495e;
    font-style: italic;
    margin-top: 0.5rem;
}

.executive-contact {
    text-align: right;
    font-size: 0.95rem;
    color: #2c3e50;
}

.executive-summary {
    padding: 1.5rem 2rem;
    background: #ecf0f1;
}

.executive-summary h2 {
    color: #2c3e50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.executive-section {
    padding: 2rem;
}

.executive-experience {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #bdc3c7;
}

.executive-experience .experience-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.executive-experience h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    font-weight: bold;
}

.executive-experience h4 {
    color: #34495e;
    font-size: 1rem;
    font-style: italic;
}

.competencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
    margin-top: 1rem;
}

.competencies-grid span {
    padding: 0.5rem;
    background: #3498db;
    color: white;
    border-radius: 4px;
    text-align: center;
    font-size: 0.9rem;
}

/* Creative Template Styles */
.creative-template {
    display: flex;
    background: white;
    font-family: 'Arial', sans-serif;
    max-width: 800px;
    margin: 0 auto;
    min-height: 100vh;
}

.creative-sidebar {
    width: 300px;
    background: linear-gradient(180deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 2rem;
}

.profile-section {
    text-align: center;
    margin-bottom: 2rem;
}

.profile-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    font-weight: bold;
}

.profile-section h1 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.profile-section .title {
    font-size: 1rem;
    opacity: 0.9;
}

.contact-section h3,
.skills-section h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.skill-item {
    margin-bottom: 1rem;
}

.skill-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    margin-top: 0.5rem;
}

.skill-progress {
    height: 100%;
    background: white;
    border-radius: 4px;
    transition: width 1s ease;
}

.creative-main {
    flex: 1;
    padding: 2rem;
}

.creative-experience {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-dot {
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: #e74c3c;
    border-radius: 50%;
}```text
.timeline-dot::before {
        content: '';
    position: absolute;
    left: 5px;
    top: 12px;
    width: 2px;
    height: 100px;
    background: #e74c3c;
    opacity: 0.3;
}

.creative-experience h3 {
    color: #2c3e50;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.creative-experience h4 {
    color: #7f8c8d;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

/* Classic Template Styles */
.classic-template {
    background: white;
    font-family: 'Times New Roman', serif;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

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

.classic-header h1 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.classic-divider {
    border: none;
    height: 2px;
    background: #2c3e50;
    margin: 1rem 0;
}

.contact-line {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 1rem;
}

.objective {
    font-size: 1.1rem;
    color: #2c3e50;
}

.classic-section h2 {
    font-size: 1.3rem;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid #2c3e50;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.classic-experience {
    margin-bottom: 1.5rem;
}

.classic-experience .experience-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.classic-description {
    margin-left: 1rem;
}

/* Minimalist Template Styles */
.minimalist-template {
    background: white;
    font-family: 'Helvetica', Arial, sans-serif;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    line-height: 1.5;
}

.minimalist-header {
    border-bottom: 1px solid #ddd;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.minimalist-header h1 {
    font-size: 2rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 0.5rem;
}

.minimalist-contact {
    color: #666;
    font-size: 0.9rem;
}

.minimalist-section {
    margin-bottom: 2rem;
}

.minimalist-section h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.minimalist-item {
    margin-bottom: 1.5rem;
}

.item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.position {
    color: #333;
}

.company {
    color: #666;
}

.dates {
    color: #999;
    font-size: 0.9rem;
}

/* Tech Template Styles */
.tech-template {
    background: #1e1e1e;
    color: #d4d4d4;
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
}

.tech-header {
    background: #2d2d30;
    padding: 2rem;
    border-bottom: 1px solid #3e3e42;
}

.tech-profile h1 {
    color: #569cd6;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.tech-title {
    color: #608b4e;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.tech-contact span {
    margin-right: 1.5rem;
    color: #9cdcfe;
}

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

.code-block {
    background: #1e1e1e;
    border: 1px solid #3e3e42;
    border-radius: 4px;
}

.code-header {
    background: #2d2d30;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #3e3e42;
}

.code-tab {
    color: #cccccc;
    font-size: 0.9rem;
}

.code-content {
    padding: 1rem;
}

.code-line {
    display: flex;
    align-items: center;
    margin-bottom: 0.25rem;
}

.line-number {
    color: #858585;
    margin-right: 1rem;
    width: 2rem;
    text-align: right;
}

.indent {
    margin-left: 2rem;
}

.keyword {
    color: #569cd6;
}

.variable {
    color: #9cdcfe;
}

.string {
    color: #ce9178;
}

.tech-sidebar {
    background: #252526;
    padding: 1.5rem;
    border-radius: 4px;
}

.tech-skills h3 {
    color: #608b4e;
    margin-bottom: 1rem;
}

.tech-skill {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: #cccccc;
}

.tech-template .tech-sidebar .tech-certifications .cert-item {
            font-size: 13px;
            color: #64748b;
        }

        /* AI Enhanced Template Styles */
        .ai-enhanced-template {
            background: white;
            color: #333;
            padding: 0;
            margin: 0;
            max-width: 800px;
            margin: 0 auto;
            font-family: 'Inter', Arial, sans-serif;
            line-height: 1.6;
        }

        .ai-enhanced-template .ai-header {
            background: #f8fafc;
            padding: 40px 30px;
            text-align: center;
            border-bottom: 3px solid #2563eb;
            position: relative;
            margin-bottom: 0;
        }

        .ai-enhanced-template .ai-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #2563eb, #1d4ed8);
        }

        .ai-enhanced-template .ai-header h1 {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 10px;
            color: #1e293b;
            letter-spacing: -0.5px;
            text-transform: uppercase;
        }

        .ai-enhanced-template .ai-subtitle {
            font-size: 20px;
            color: #2563eb;
            font-weight: 600;
            margin-bottom: 20px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .ai-enhanced-template .ai-contact {
            display: flex;
            justify-content: center;
            gap: 30px;
            flex-wrap: wrap;
            font-size: 15px;
            color: #475569;
        }

        .ai-enhanced-template .ai-contact span {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 500;
        }

        .ai-enhanced-template .ai-contact i {
            color: #2563eb;
            width: 18px;
            font-size: 14px;
        }

        .ai-enhanced-template .ai-section {
            background: white;
            margin: 0;
            padding: 30px;
            position: relative;
            border-bottom: 1px solid #e2e8f0;
        }

        .ai-enhanced-template .ai-section:last-child {
            border-bottom: none;
        }

        .ai-enhanced-template .ai-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #2563eb, #1d4ed8);
        }

        .ai-enhanced-template .ai-section h2 {
            color: #1e293b;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            border-bottom: 2px solid #2563eb;
            padding-bottom: 8px;
        }

        .ai-enhanced-template .ai-section h2 i {
            color: #2563eb;
            font-size: 20px;
        }

        .ai-enhanced-template .ai-summary {
            font-size: 17px;
            line-height: 1.7;
            color: #374151;
            font-style: italic;
            border-left: 4px solid #2563eb;
            padding: 20px;
            background: #f8fafc;
            border-radius: 8px;
            margin: 0;
        }

        .ai-enhanced-template .ai-experience {
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 1px solid #e5e7eb;
            page-break-inside: avoid;
        }

        .ai-enhanced-template .ai-experience:last-child {
            border-bottom: none;
            margin-bottom: 0;
        }

        .ai-enhanced-template .ai-experience .experience-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 10px;
        }

        .ai-enhanced-template .ai-experience .position-company h3 {
            font-size: 20px;
            font-weight: 700;
            color: #1e293b;
            margin-bottom: 5px;
            line-height: 1.3;
        }

        .ai-enhanced-template .ai-experience .position-company h4 {
            font-size: 18px;
            color: #2563eb;
            font-weight: 600;
            margin-bottom: 0;
        }

        .ai-enhanced-template .ai-experience .dates {
            font-size: 15px;
            color: #64748b;
            font-weight: 500;
            font-style: italic;
            text-align: right;
            white-space: nowrap;
        }

        .ai-enhanced-template .ai-experience .experience-details ul {
            margin: 0;
            padding-left: 0;
            list-style: none;
        }

        .ai-enhanced-template .ai-experience .experience-details li {
            color: #374151;
            line-height: 1.7;
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
            font-size: 15px;
        }

        .ai-enhanced-template .ai-experience .experience-details li::before {
            content: '▪';
            color: #2563eb;
            font-weight: bold;
            position: absolute;
            left: 0;
            top: 0;
        }

        .ai-enhanced-template .skills-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .ai-enhanced-template .skill-tag {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 500;
            border: none;
            text-transform: capitalize;
        }

        .ai-enhanced-template .ai-footer {
            background: white;
            margin: 20px;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .ai-enhanced-template .ats-score {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, #48bb78, #38a169);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
        }

        /* ATS Bold Template Styles */
        .ats-bold-template {
            background: white;
            font-family: 'Calibri', 'Arial', sans-serif;
            padding: 15mm 20mm;
            max-width: 210mm;
            margin: 0 auto;
            font-size: 11pt;
            line-height: 1.3;
            color: #2d3748;
        }

        .ats-bold-template .ats-header {
            text-align: center;
            border-bottom: 2pt solid #2d3748;
            padding-bottom: 10pt;
            margin-bottom: 15pt;
        }

        .ats-bold-template .ats-header h1 {
            font-size: 18pt;
            font-weight: bold;
            margin-bottom: 4pt;
            color: #2d3748;
            letter-spacing: 0.5pt;
        }

        .ats-bold-template .ats-subtitle {
            font-size: 12pt;
            color: #4a5568;
            font-weight: 600;
            margin-bottom: 8pt;
            text-transform: uppercase;
            letter-spacing: 0.5pt;
        }

        .ats-bold-template .ats-contact {
            font-size: 10pt;
            color: #4a5568;
            line-height: 1.2;
        }

        .ats-bold-template .ats-contact span {
            margin: 0 8pt;
            display: inline-block;
        }

        .ats-bold-template .ats-section {
            margin-bottom: 12pt;
        }

        .ats-bold-template .ats-section h2 {
            font-size: 12pt;
            color: #2d3748;
            font-weight: bold;
            text-transform: uppercase;
            border-bottom: 1pt solid #4a5568;
            padding-bottom: 2pt;
            margin-bottom: 8pt;
            letter-spacing: 0.5pt;
        }

        .ats-bold-template .ats-experience {
            margin-bottom: 10pt;
            page-break-inside: avoid;
        }

        .ats-bold-template .ats-experience .experience-header {
            margin-bottom: 4pt;
            display: flex;
            justify-content: space-between;
            align-items: baseline;
        }

        .ats-bold-template .ats-experience h3 {
            font-size: 11pt;
            font-weight: bold;
            color: #2d3748;
            margin-bottom: 1pt;
        }

        .ats-bold-template .ats-experience .company {
            font-size: 10pt;
            color: #4a5568;
            font-weight: 600;
            margin-bottom: 1pt;
        }

        .ats-bold-template .ats-experience .dates {
            font-size: 9pt;
            color: #718096;
            font-style: italic;
            white-space: nowrap;
        }

        .ats-bold-template .ats-experience .experience-details p {
            font-size: 10pt;
            margin-bottom: 2pt;
            line-height: 1.2;
            text-align: justify;
            color: #4a5568;
        }

        .ats-bold-template .skills-list {
            font-size: 10pt;
            line-height: 1.3;
            color: #4a5568;
            text-align: justify;
        }

        @media print { 
            body { 
                margin: 0; 
                padding: 0; 
                font-size: 11pt;
            }
            .resume-container {
                padding: 10mm 15mm;
                margin: 0;
                max-width: none;
            }
            .skill-tag { 
                border: 1pt solid #cbd5e0; 
                color: #2d3748; 
                background: white;
            }
            .ai-enhanced-template .skill-tag {
                background: white;
                border: 1pt solid #cbd5e0;
                color: #2d3748;
            }
        }

.toast.toast-success {
    background-color: #4CAF50;
}

.toast.toast-error {
    background-color: #f44336;
}

.toast.toast-info {
    background-color: #2196F3;
}

/* Download Pass Styles */
.download-pass-modal {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.download-pass-modal .modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.download-pass-modal .modal-header {
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.download-pass-features {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
}

.download-pass-timer {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(76, 175, 80, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: bold;
}

#downloadPassStatus {
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}